bthumber wrote: The next question is how do you compare those two strings? Read about the String.Compare[^] method.
string s = "Nick";
string t = "Parker";
if(string.Compare(s, t) == 0)
Console.WriteLine("Equal");
else
Console.WriteLine("Not equal");
- Nick Parker
My Blog | My Articles