很抱歉的頭銜,我會把這裏的什麼我要完成一個例子:獲取多維分類的索引
namespace mdclass
{
class pClass
{
static void Main()
{
tiles<int> tl = new tiles<int>();
tl[0].X = 0;
}
}
class tiles<T> : List<T>
{
public int X
{
//get/set the X-coordonate
}
public int Y
{
//get/set the Y-coordonate
}
}
}
我怎樣才能從tl[0]
在public int X
轉移[0]
,並與它的工作?
所以,你已經有了一個'磚',它是 - 一個'列表'。所以你需要兩個索引來標識一個'int',一個索引到'List'中,另一個索引到一個包含的'int []'中。那麼你究竟想要獲得或設置什麼,比如說'X'要做什麼?會不會像'tl [0] [0]'做你想要的東西? –
2011-03-26 11:04:30
@Gareth McCaughan對不起,沒有任何幫助。我修復了這個問題中的錯誤(並且我在@James Walford中提出了一個解釋。回答# – Sp3ct3R 2011-03-26 11:18:55