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

namespace System {
	public struct RuntimeFieldHandle {

		private IntPtr value;

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

		public IntPtr Value {
			get {
				return value;
			}
		}
	}
}

#endif