Dim reader = New StringReader code example
Example: How to search for a string from readline in c#
string s = "abc";//string to be searched
//'line' is the storing the line which is read
if(line.Contains(s))
{
//action to be performed
}
string s = "abc";//string to be searched
//'line' is the storing the line which is read
if(line.Contains(s))
{
//action to be performed
}