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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Runtime.InteropServices/MarshalAsAttribute.cs')
-rwxr-xr-xmcs/class/corlib/System.Runtime.InteropServices/MarshalAsAttribute.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/MarshalAsAttribute.cs b/mcs/class/corlib/System.Runtime.InteropServices/MarshalAsAttribute.cs
deleted file mode 100755
index 48e9f523d07..00000000000
--- a/mcs/class/corlib/System.Runtime.InteropServices/MarshalAsAttribute.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using System;
-
-namespace System.Runtime.InteropServices {
-
- [AttributeUsage (AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
- public sealed class MarshalAsAttribute : Attribute {
- private UnmanagedType utype;
- public UnmanagedType ArraySubType;
- public string MarshalCookie;
- public string MarshalType;
- public Type MarshalTypeRef;
- public VarEnum SafeArraySubType;
- public int SizeConst;
- public short SizeParamIndex;
-
- public MarshalAsAttribute (short unmanagedType) {
- utype = (UnmanagedType)unmanagedType;
- }
- public MarshalAsAttribute( UnmanagedType unmanagedType) {
- utype = unmanagedType;
- }
- public UnmanagedType Value {
- get {return utype;}
- }
-
- }
-}