各位前輩, 想請問
class1(string name, string type, string comt)
Dictionary<string(module), Dictionary<string(name), class1>>
的問題
我需要從檔案中讀取資料, 想存在如上的資料結構裡, 以方便做search
由於檔案的內容長度不一定, 所以想利用dictionary的特性.
當我抓到第一組資料時, ex:
module1: name0, type0, comt0
name1, type1, comt1
name2, type2, comt2
....
nameN, typeN, comtN
module2: name0, type0, comt0
name1, type1, comt1
....
nameM, typeM, comtM
.......
moduleK: name0, type0, comt0
name1, type1, comt1
....
nameL, typeL, comtL
由於幾個module是不一定, 每個module裡有幾組name/type/comt也不一定.
我想要做成一個方便資料搜索的dictionary
當我想搜尋module2時, 會去找module2裡的dictionary,
然後去找nameX, 然後資料會找到nameX, typeX, comtX
我現在碰到的問題是:
由於不同模組下的name, 有可能會相同, 但type和comt可能會不同,
且我不知道會有幾個module, 所以我要怎麼動態去產生 不同module下的dictionary.
請教各位前輩高手了. 謝謝