how to find the index of a word in a string in c# code example
Example: c# find index of character in string
string str = "Now is the time.";
int index = str.IndexOf("h");
string str = "Now is the time.";
int index = str.IndexOf("h");