コード例 #1
0
 internal Language(ushort numericId, string textId, LanguageFirstModel model, Dictionary <uint, string> translations, string name0, string name1)
 {
     Index = numericId; TextId = textId; Name0 = name0; Name1 = name1; Model = model; _Translations = translations;
 }
コード例 #2
0
 internal Language(ushort numericId, string textId, LanguageFirstModel model, string name0, string name1)
     : this(numericId, textId, model, new Dictionary <uint, string>(), name0, name1)
 {
 }