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/StructLayoutAttribute.cs')
-rwxr-xr-xmcs/class/corlib/System.Runtime.InteropServices/StructLayoutAttribute.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/mcs/class/corlib/System.Runtime.InteropServices/StructLayoutAttribute.cs b/mcs/class/corlib/System.Runtime.InteropServices/StructLayoutAttribute.cs
deleted file mode 100755
index 420e70efa0c..00000000000
--- a/mcs/class/corlib/System.Runtime.InteropServices/StructLayoutAttribute.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using System;
-
-namespace System.Runtime.InteropServices {
-
- [AttributeUsage (AttributeTargets.Class | AttributeTargets.Struct)]
- public sealed class StructLayoutAttribute : Attribute {
- public CharSet CharSet = CharSet.Auto;
- public int Pack = 8;
- public int Size = 0;
- private LayoutKind lkind;
-
- public StructLayoutAttribute( short layoutKind) {
- lkind = (LayoutKind)layoutKind;
- }
- public StructLayoutAttribute( LayoutKind layoutKind) {
- lkind = layoutKind;
- }
- public LayoutKind Value {
- get {return lkind;}
- }
-
- }
-}