Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MemberFilter.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 74e73a69ce3040fbfcd73d7796d935632bdae185 (plain)
1
2
3
4
5
6
7
using System;
using System.Reflection;

namespace System.Reflection {
	public delegate bool MemberFilter( MemberInfo m, object filterCriteria);

}