Hi All,
I use Contains method of String object to determine if a string variable
has another string, like that.
*************** ************
ipAddress.Conta ins("127.0.0")
*************** *************
supposing that, there is a string array like
string[] aryIPAddress = {"127.0.0.", "192.168.1.","6 6.249.71."};
Is it possible to determine if any string in this array occurs in a String
Object without using foreach or for patterns ?
Thanks in advance..
I use Contains method of String object to determine if a string variable
has another string, like that.
*************** ************
ipAddress.Conta ins("127.0.0")
*************** *************
supposing that, there is a string array like
string[] aryIPAddress = {"127.0.0.", "192.168.1.","6 6.249.71."};
Is it possible to determine if any string in this array occurs in a String
Object without using foreach or for patterns ?
Thanks in advance..
Comment