(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / I18N / CJK / Big5Convert.cs
blob5db8d5300c69b2ac71e1d2ee7f343d3a16fe8d80
1 //
2 // I18N.CJK.Big5Convert
3 //
4 // Author:
5 // Alan Tam Siu Lung (Tam@SiuLung.com)
6 //
8 using System;
10 namespace I18N.CJK
12 internal sealed class Big5Convert : DbcsConvert
14 // Dummy constructor, no one is aupposed to call it
15 private Big5Convert() : base("big5.table") {}
17 // The one and only Big5 conversion object in the system.
18 private static DbcsConvert convert;
20 // Get the primary Big5 conversion object.
21 public static DbcsConvert Convert
23 get {
24 if (convert == null) convert = new DbcsConvert("big5.table");
25 return convert;