Newer
Older
DNA / corlib / System / Decimal.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 360 bytes Fixed build issues
#if !LOCALTEST

namespace System {
	public struct Decimal {

		// internal representation of decimal
#pragma warning disable 0169, 0649
        private uint flags;
		private uint hi;
		private uint lo;
		private uint mid;
#pragma warning restore 0169, 0649

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

	}
}

#endif