Newer
Older
DNA / corlib / System / RuntimeMethodHandle.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 226 bytes First commit
#if !LOCALTEST

namespace System {
	public struct RuntimeMethodHandle {

		IntPtr value;

		internal RuntimeMethodHandle(IntPtr v) {
			value = v;
		}

		public IntPtr Value {
			get {
				return value;
			}
		}

	}
}

#endif