DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
string string1= "This is a substring function";
string search= "sub";
int charFirst= string1.IndexOf(search);
MessageBox.Show("String at : " + charFirst);