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");