Dict 詞典物件

程式作品

C 語言

Java

C#

JavaScript

常用函數

文字處理

遊戲程式

衛星定位

系統程式

資料結構

網路程式

自然語言

人工智慧

機率統計

資訊安全

等待完成

訊息

相關網站

參考文獻

最新修改

簡體版

English

using System;
using System.Collections.Generic;
using System.Text;

namespace OpenCL
{
    class Dict : Dictionary<String, String>
    {
        public static void Main(String[] args)
        {
            Dict dict = new Dict();
        }

        public Dict() : this(@"dictionary/繁簡字差異對照版.txt") {}

        public Dict(String fileName) {
            TextFile file = new TextFile(fileName);
            foreach (String line in file.lines())
            {
                if (line.StartsWith("#")) continue;
                String key = STR.head(line, "=");
                String value = STR.tail(line, "=");
                if (!this.ContainsKey(key))
                    this.Add(key, value);
            }
        }
    }
}

Facebook

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 License