Which are the equivalent of the following operators from VB.Net to C#?
One more addition to this could be IndexOf() function to Find String within string
An example below...
string MainString = "String Manipulation";
string SearchString = "pul";
int FirstChr = MainString.IndexOf(SearchString);
//SHOWS START POSITION OF STRING
MessageBox.Show("Found at : " + FirstChr );