New test.
[mono.git] / mcs / class / corlib / System.Reflection / MemberFilter.cs
index 2678b199840296e973b40a59e15bff8ba63e1ff4..f8c569d0d831e674bc8bee7af6f195f4a59f75a9 100644 (file)
 //
 using System;
 using System.Reflection;
+using System.Runtime.InteropServices;
 
 namespace System.Reflection {
+#if NET_2_0
+       [ComVisible (true)]
+#endif
        public delegate bool MemberFilter( MemberInfo m, object filterCriteria);
 
 }