新しい勉強指向辞典の構築 2006.1

Posted by & filed under Dictionary.

1、Club StartKit の構築
2006.1.18Personal StartKitに移植する(Skinのサポート)
2、RapTierの導入
3,漢字の判断:
C#:

protected bool IsKanji(string strInput)
{
UnicodeEncoding utf16 = new UnicodeEncoding();
byte[] bytes;
bytes = utf16.GetBytes(strInput);
if (bytes.Length < 2)
{
return false;
}
double intNum;
intNum = bytes[1] * (Math.Pow(2, 8) ) +