string str ="бело-красный";
if(str.Contains("-")) {
int index = str.IndexOf("-");
Console.WriteLine(index);
}
string str ="бело-красный";
if(str.Contains("-")) {
int index = str.IndexOf("-");
Console.WriteLine(index);
}