2
Answers

not able to compare the string

Photo of Pinku

Pinku

6y
560
1
List<string> lst=new List<string>
{
"java",".net","Fullstack","Devloper","Devops","Sqlserver"
};
 
string str = "Fullstack .net Devloper ";
 
how can i check str  value with lst  value
I need to check all the values of str with lst 

Answers (2)