-3
我需要存儲多個字符串並分別檢索每個字符串。C#將多個字符串存儲在自定義列表中
例如。
string one = "String One";
string one = "String Two";
string one = "String Three";
string one = "String Four";
我目前使用的自定義列表(http://pastebin.com/AW5jqfM0)來執行這一點,但是,我很難找到存儲所有這些變量和返回不同的字符串格式化的最有效方式。
例如。
if(stringInput = "")
{
list<>.add(customMethod(one, two, three, ""));
}
else
{
list<>.add(customMethos(one, two, three, four));
}
我不知道這是否是完成此任務的最佳方法。爲我創建每種返回類型的列表類型會更有效率嗎?
我希望我已經清楚!
不,你沒有。 – InBetween
我建議你使用一個字符串的列表/容器,你不需要一個自定義的字符串。 – meJustAndrew