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