Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
What is the equivalent of VB's "InStr" function in C#? ;)
use the IndexOf method on your string object. int instr = myString.IndexOf("moo", 0); There are 5 other overloads that you can use as well, 3 to find a string, 3 to find a char. James Sonork ID: 100.11138 - Hasaki
int instr = myString.IndexOf("moo", 0);