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

namespace System {
	public struct Decimal {

		// internal representation of decimal
		private uint flags;
		private uint hi;
		private uint lo;
		private uint mid;

		public static int[] GetBits(Decimal d) {
			return new int[] { 0, 0, 0, 0 };
		}

	}
}

#endif