This is very basic question but I am not able to find the position of a particular character. For example:
string a = \"ABCDE\";
I want th
Use IndexOf
var pos = a.IndexOf('E');