using System; using System.Runtime.Serialization; namespace UAS_Web.tool { class FormatterConverter : IFormatterConverter { public object Convert(object value, TypeCode typeCode) { return value; } public object Convert(object value, Type type) { throw new NotImplementedException(); } public bool ToBoolean(object value) { throw new NotImplementedException(); } public byte ToByte(object value) { throw new NotImplementedException(); } public char ToChar(object value) { throw new NotImplementedException(); } public DateTime ToDateTime(object value) { throw new NotImplementedException(); } public decimal ToDecimal(object value) { throw new NotImplementedException(); } public double ToDouble(object value) { throw new NotImplementedException(); } public short ToInt16(object value) { throw new NotImplementedException(); } public int ToInt32(object value) { throw new NotImplementedException(); } public long ToInt64(object value) { throw new NotImplementedException(); } public sbyte ToSByte(object value) { throw new NotImplementedException(); } public float ToSingle(object value) { throw new NotImplementedException(); } public string ToString(object value) { throw new NotImplementedException(); } public ushort ToUInt16(object value) { throw new NotImplementedException(); } public uint ToUInt32(object value) { throw new NotImplementedException(); } public ulong ToUInt64(object value) { throw new NotImplementedException(); } } }