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