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

RuntimeHelpers.cs « System.Runtime.CompilerServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c87eb39d915ace882ee523c84bd4e512e8c144cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 ();
			}
		}
	}
}