Click here to Skip to main content
15,905,558 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
XML
List<AList> objList = new List<AList>();
            objList.Add(new AList { ACode = "0", Description = "<-- Select -->" });
            objApproverlist = objApproverlist.Concat(objList).ToList();
Posted
Updated 27-Aug-15 2:05am
v3

1 solution

Try to use INSERT:
Example:
C#
List<AList> objList = new List<AList>();
objList.Insert(0, "<-- Select -->" });
//Do rest of your binding code here

Hope it helps :)
 
Share this answer
 
v3
Comments
Sathish km 27-Aug-15 8:35am    
I want to know how to implement in my code?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900