Merge pull request #735 from wtfrank/bitblt
[mono.git] / mcs / class / corlib / System.Reflection / InterfaceMapping.cs
index 4133d800008b4153272a8b3757b27527a0feb62c..89478d2695dc7fe53af79acb8cb3beb0f4b22058 100644 (file)
 using System.Runtime.InteropServices;
 
 namespace System.Reflection {
-#if NET_2_0
-               [ComVisible (true)]
-#endif
+       [ComVisible (true)]
        public struct InterfaceMapping {
 
-#if NET_2_0
                [ComVisible (true)]
-#endif
                public MethodInfo[] InterfaceMethods;
 
-#if NET_2_0
                [ComVisible (true)]
-#endif
                public Type InterfaceType;
 
-#if NET_2_0
                [ComVisible (true)]
-#endif
                public MethodInfo[] TargetMethods;
 
-#if NET_2_0
                [ComVisible (true)]
-#endif
                public Type TargetType;
        }
 }