| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- 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();
- }
- }
- }
|