0
C#隊列和每個位置都有一個整數和一個字符串的集合?我知道如何創建一個整數或字符串隊列,但是如何創建一個在每個隊列點都有多個數據類型的隊列?C#隊列 - 如何將結構添加到每個隊列點
struct ABC { int val1; int val2; }
static void Main(string[] args) {
System.Collections.Generic.Queue<ABC> queue = new System.Collections.Generic.Queue<ABC>();
queue.Enqueue(ABC);
// ...
}
創建一個符合您需求的對象,並使用泛型。 '隊列'https://msdn.microsoft.com/en-us/library/7977ey2c(v=vs.110).aspx –
ps2goat
這就是我的: – Unity
struct ABC { int val1; int val2; } 靜態無效的主要(字符串[]參數) { System.Collections.Generic.Queue隊列=新System.Collections.Generic.Queue (); queue.Enqueue(ABC); –
Unity