我对 VB NET 中的向量有疑问。
我用 C++ 写了一段代码
typedef struct
{
int process;
int burstTime;
int ArrivalTime;
int remaining;
int timeAddedToQ;
bool flag;
} process;
vector<process> proc;
如何在 VB NET 代码中表示此 C++ 代码?
我尝试搜索谷歌,但没有任何帮助。如果有人可以提供帮助,我会很感激
谢谢