I have problem with vector in VB NET.
I have written a code in C++
typedef struct
{
int process;
int burstTime;
int ArrivalTime;
int remaining;
int timeAddedToQ;
bool flag;
} process;
vector<process> proc;
How can I represent this C++ code in VB NET code?
I tried searching Google but nothing helped. Will really apreciate if anyone can help
Thanks