Merge pull request #505 from roji/shutdown_flow
[mono.git] / mcs / class / corlib / System.Security.Cryptography / MaskGenerationMethod.cs
index 5fb42372fd25e7e633877d1c4f333cc723e9b9fc..70cf715e2b4055660be328bb484c871e5761fccc 100644 (file)
@@ -31,15 +31,14 @@ using System.Runtime.InteropServices;
 
 namespace System.Security.Cryptography {
 
-#if NET_2_0
        [ComVisible (true)]
-#endif
        public abstract class MaskGenerationMethod {
 
                protected MaskGenerationMethod () 
                {
                }
 
+               [ComVisible (true)]
                public abstract byte[] GenerateMask (byte[] rgbSeed, int cbReturn);
        }
 }