Hi,
Is there a function in C# that's like "Instring"??? (returns the position in the string of a given character)
Thanks
Printable View
Hi,
Is there a function in C# that's like "Instring"??? (returns the position in the string of a given character)
Thanks
"somestring".IndexOf("some");
Thanks Man