implementation and fixes by Andreas Nahr.
[mono.git] / mcs / class / System / System.ComponentModel / UInt64Converter.cs
1 //
2 // System.ComponentModel.UInt64Converter
3 //
4 // Authors:
5 //  Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //
7 // (C) 2003 Andreas Nahr
8 //
9
10 namespace System.ComponentModel
11 {
12         public class UInt64Converter : BaseNumberConverter
13         {
14                 public UInt64Converter()
15                 {
16                         InnerType = typeof (UInt64);
17                 }
18         }
19 }