// // System.Int64.cs // // Author: // Miguel de Icaza (miguel@ximian.com) // // (C) Ximian, Inc. http://www.ximian.com // using System.Globalization; namespace System { public struct Int64 : IComparable, IFormattable, IConvertible { public const long MaxValue = 0x7fffffffffffffff; public const long MinValue = -9223372036854775808; public long value; public int CompareTo (object v) { if (v == null) return 1; if (!(v is System.Int64)) throw new ArgumentException (Locale.GetText ("Value is not a System.Int64")); if (value == (long) v) return 0; if (value < (long) v) return -1; return 1; } public override bool Equals (object o) { if (!(o is System.Int64)) return false; return ((long) o) == value; } public override int GetHashCode () { return (int)(value & 0xffffffff) ^ (int)(value >> 32); } public static long Parse (string s) { long val = 0; int len; int i; int sign = 1; bool digits_seen = false; if (s == null) throw new ArgumentNullException (Locale.GetText ("s is null")); len = s.Length; char c; for (i = 0; i < len; i++){ c = s [i]; if (!Char.IsWhiteSpace (c)) break; } if (i == len) throw new FormatException (); c = s [i]; if (c == '+') i++; else if (c == '-'){ sign = -1; i++; } for (; i < len; i++){ c = s [i]; if (c >= '0' && c <= '9'){ val = checked (val * 10 + (c - '0') * sign); digits_seen = true; } else { if (Char.IsWhiteSpace (c)){ for (i++; i < len; i++){ if (!Char.IsWhiteSpace (s [i])) throw new FormatException (); } break; } else throw new FormatException (); } } if (!digits_seen) throw new FormatException (); return val; } public static long Parse (string s, IFormatProvider fp) { return Parse (s, NumberStyles.Integer, fp); } public static long Parse (string s, NumberStyles style) { return Parse (s, style, null); } [MonoTODO] public static long Parse (string s, NumberStyles style, IFormatProvider fp) { // TODO: Implement me // throw new NotImplementedException (); // good enough for now return Parse (s); } public override string ToString () { return ToString (null, null); } public string ToString (IFormatProvider fp) { return ToString (null, fp); } public string ToString (string format) { return ToString (format, null); } public string ToString (string format, IFormatProvider fp) { NumberFormatInfo nfi = NumberFormatInfo.GetInstance( fp ); if ( format == null ) format = "G"; return IntegerFormatter.NumberToString (format, nfi, value); } // =========== IConvertible Methods =========== // public TypeCode GetTypeCode () { return TypeCode.Int64; } public bool ToBoolean (IFormatProvider provider) { return System.Convert.ToBoolean (value); } public byte ToByte (IFormatProvider provider) { return System.Convert.ToByte (value); } public char ToChar (IFormatProvider provider) { return System.Convert.ToChar (value); } public DateTime ToDateTime (IFormatProvider provider) { return System.Convert.ToDateTime (value); } public decimal ToDecimal (IFormatProvider provider) { return System.Convert.ToDecimal (value); } public double ToDouble (IFormatProvider provider) { return System.Convert.ToDouble (value); } public short ToInt16 (IFormatProvider provider) { return System.Convert.ToInt16 (value); } public int ToInt32 (IFormatProvider provider) { return System.Convert.ToInt32 (value); } public long ToInt64 (IFormatProvider provider) { return System.Convert.ToInt64 (value); } [CLSCompliant (false)] public sbyte ToSByte (IFormatProvider provider) { return System.Convert.ToSByte (value); } public float ToSingle (IFormatProvider provider) { return System.Convert.ToSingle (value); } public object ToType (Type conversionType, IFormatProvider provider) { return System.Convert.ToType (value, conversionType, provider); } [CLSCompliant (false)] public ushort ToUInt16 (IFormatProvider provider) { return System.Convert.ToUInt16 (value); } [CLSCompliant (false)] public uint ToUInt32 (IFormatProvider provider) { return System.Convert.ToUInt32 (value); } [CLSCompliant (false)] public ulong ToUInt64 (IFormatProvider provider) { return System.Convert.ToUInt64 (value); } } }