Which one of these is the faster/better one?
This one:
List list = new List(); User u; foreach (string s in l) { u = new
The 2nd one is better. You are meaning to have a new user in each iteration.