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.CompilerServices/RuntimeHelpers.cs')
-rw-r--r--mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs b/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs
deleted file mode 100644
index c87eb39d915..00000000000
--- a/mcs/class/corlib/System.Runtime.CompilerServices/RuntimeHelpers.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-// System.Runtime.CompilerServices.RuntimeHelpers
-//
-// Sean MacIsaac (macisaac@ximian.com)
-// Paolo Molaro (lupus@ximian.com)
-//
-// (C) Ximian, Inc. 2001
-
-namespace System.Runtime.CompilerServices
-{
- [Serializable]
- public sealed class RuntimeHelpers
- {
- private RuntimeHelpers () {}
-
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- public static extern void InitializeArray (Array array, RuntimeFieldHandle fldHandle);
-
- public static int OffsetToStringData {
- get {
- // FIXME: this requires the reimplementation of String
- // as of my mail a few months ago, dum de dum
- throw new NotImplementedException ();
- }
- }
- }
-}