Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

c# check if element is last in list

foreach (var x in things)
	{
        //Do stuff
    	if (x == things.Last()) // Do Stuff only for the last item 
 	}
 
PREVIOUS NEXT
Tagged: #check #element #list
ADD COMMENT
Topic
Name
4+4 =