**** Merged from MCS ****
[mono-project.git] / mcs / class / I18N / CJK / KSConvert.cs
blob5b0198538d0f0fc351d49cd507bd07310d159046
1 //
2 // I18N.CJK.KSConvert
3 //
4 // Author:
5 // Hye-Shik Chang <perky@FreeBSD.org>
6 //
8 using System;
10 namespace I18N.CJK
12 internal sealed class KSConvert : DbcsConvert
14 // Dummy constructor, no one is aupposed to call it
15 private KSConvert() : base("ks.table") {}
17 // The one and only KS conversion object in the system.
18 private static DbcsConvert convert;
20 // Get the primary KS conversion object.
21 public static DbcsConvert Convert
23 get {
24 if (convert == null) convert = new DbcsConvert("ks.table");
25 return convert;
31 // ex: ts=8 sts=4 et