I have to convert some code from Java to C#, and I don't know what the equivalent is of Arraylist.get(index)
from Java in .NET C#.
I want to convert something like this:
for (int i=0;i<M+1;i++)
if(SF.get(i) == SC.get(i))
ok= true;
else ok=false;