我創建了一個對象列表...訪問列表從另一個asp.net頁面
private static List<int[]> arrayList = new List<int[]>();
public static void Add(int Id, int Quantity)
{
int[] buying = new int[] {Id, Quantity};
arrayList.Add(buying);
}
現在最好我想從另一個頁面訪問這些列表對象,但其我第一次真正使用的列表和數組,所以我不知道從哪裏開始?
任何指針?
感謝
這個「答案」應該是一個評論 – ilansch