M
Mark M
Hi all,
Is the follow construct thread safe to access via indexer?
public static readonly string [] GradeLookupTable = new string[]
{
"*","PK","K","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","HS","UG"
};
Usage:
string grade = GradeLookupTable[12];
Thanks for your help!
Is the follow construct thread safe to access via indexer?
public static readonly string [] GradeLookupTable = new string[]
{
"*","PK","K","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","HS","UG"
};
Usage:
string grade = GradeLookupTable[12];
Thanks for your help!