| 12345678910111213141516171819 |
- //
- // System.ComponentModel.Int64Converter
- //
- // Authors:
- // Andreas Nahr ([email protected])
- //
- // (C) 2003 Andreas Nahr
- //
- namespace System.ComponentModel
- {
- public class Int64Converter : BaseNumberConverter
- {
- public Int64Converter()
- {
- InnerType = typeof (Int64);
- }
- }
- }
|