Click here to Skip to main content
15,884,176 members

Comments by alrosan (Top 7 by date)

alrosan 27-Jul-11 16:00pm View    
from build menu click on clear solution or rebuild solution
alrosan 24-Jul-11 9:22am View    
you are welecome
alrosan 23-Jul-11 15:29pm View    
how seperate the text file into 3 files with 10 lines??
alrosan 20-Jul-11 6:04am View    
vb6 or vb.net??
alrosan 13-Jun-11 5:44am View    
thanks all
static bool IsSameLists(List<string> lst1,List<string> lst2)
{
if (lst1.Count() != lst2.Count())
return false;
for (int c = 0; c < lst1.Count(); c++)
{
if (!(lst1[c] == lst2[c]))
return false;
}
return true;
}