I tried to check the given value is contained or not in particular field. Here the code what i wrote
bool _Contains = LabelDetails.Name.Contains("1");
Now want to check multiple value in cantains method.I tried like below but showing exception(“No overload for method ‘Contains’ takes 3 arguments“);
bool _Contains = LabelDetails.Name.Contains("1","2","3");
I assumed that you have one textbox with text values.Then you want check some list values are contained or not in your text box and get the result in bool(true or false). True means you want to do something.False means you want to do something