我很努力讓我的頭回到一個有多個元素的列表(PHP背景 - 我會在PHP中使用這個數組)。具有多個元素的返回列表
我有一個很大的字符串,我在WHILE循環中解析。我想用元素對返回一個List。我試過這樣的事情:
static public List<string> getdata(string bigfile)
{
var data = new List<string>[] { new List<string>(), new List<string>() }; // create list to hold data pairs
While (some stuff)
{
// add element pair to List<data>
data[0].Add(this); // add element to list - 'this' is declared and assigned (not shown)
data[1].Add(that); // add element to list - 'that' is declared and assigned (not shown)
}
return data???; // <<-- This is where I'm failing. I can, of course, return just one of the elements, like return data[0];, but I can't seem to get both elements (data[0] and data[1]) together.
} // end getdata
我已經回顧了一些答案,但我錯過了一些東西。我已經嘗試了幾種語法的返回值,但沒有運氣。任何幫助將不勝感激。我討厭提問,但我花了一些時間在這方面,我只是沒有找到我想要的。
+1用於顯示替代例子。 –