Right now, I have two char arrays, foo1[] and foo2[]. When I convert them to string and output to the console, they BOTH appear as
char
foo1[]
foo2[]
string s = new string(foo1); string t = new string(foo2); int c = string.Compare(s, t); if(c==0){ //its equal }