UnverifiableCodeAttribute.cs 279 B

1234567891011121314
  1. //
  2. // System.Security.UnverifiableCodeAttribute.cs
  3. //
  4. // Author:
  5. // Nick Drochak([email protected])
  6. //
  7. // (C) Nick Drochak
  8. //
  9. namespace System.Security {
  10. [AttributeUsage (AttributeTargets.Module)]
  11. public sealed class UnverifiableCodeAttribute : Attribute {}
  12. }