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.Reflection.Emit/PackingSize.cs')
-rw-r--r--mcs/class/corlib/System.Reflection.Emit/PackingSize.cs41
1 files changed, 0 insertions, 41 deletions
diff --git a/mcs/class/corlib/System.Reflection.Emit/PackingSize.cs b/mcs/class/corlib/System.Reflection.Emit/PackingSize.cs
deleted file mode 100644
index 82c74276386..00000000000
--- a/mcs/class/corlib/System.Reflection.Emit/PackingSize.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-// PackingSize.cs
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-
-
-namespace System.Reflection.Emit {
-
- /// <summary>
- /// Specifies the packing size (data alignment) of a type.
- /// </summary>
- public enum PackingSize {
-
- /// <summary>
- /// The packing size is unspecified.
- /// </summary>
- Unspecified = 0,
-
- /// <summary>
- /// </summary>
- Size1 = 1,
-
- /// <summary>
- /// </summary>
- Size2 = 2,
-
- /// <summary>
- /// </summary>
- Size4 = 4,
-
- /// <summary>
- /// </summary>
- Size8 = 8,
-
- /// <summary>
- /// </summary>
- Size16 = 16
- }
-
-}
-
-