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