Click here to Skip to main content
15,892,517 members

Comments by Sandeepkumar potu (Top 8 by date)

Sandeepkumar potu 8-Apr-13 13:59pm View    
i want to display like below in drop down heading is support service and sub heading is computer service

SUPPORT SERVICES
Computing Service
Library or Data
Engineering
Civil Engineering
Electrical Engineering
Sandeepkumar potu 8-Apr-13 13:41pm View    
i want to display like below in drop down heading is support service and sub heading is computer service

SUPPORT SERVICES
Computing Service
Library or Data
Engineering
Civil Engineering
Electrical Engineering
Sandeepkumar potu 13-Feb-13 1:14am View    
ok can i skip objitemslist.item2 while adding to List
Sandeepkumar potu 13-Feb-13 0:49am View    
i just want to remove objitemslist.item2 in List<itemslist>
Sandeepkumar potu 13-Feb-13 0:26am View    
Deleted
public class itemslist
{
public string item1 { get; set; }
public string item2 { get; set; }
public string item3 { get; set; }
}

private void button4_Click(object sender, EventArgs e)
{
//MessageBox.Show(StringEnum.GetStringValue(CarType.Estate));
List<itemslist> obLstjitemslist=new List<itemslist>();
itemslist objitemslist=new itemslist();
objitemslist.item1="item1";
objitemslist.item2="item2";
objitemslist.item3="item3";
obLstjitemslist.Add(objitemslist);
objitemslist.item1="item11";
objitemslist.item2="item12";
objitemslist.item3="item13";
obLstjitemslist.Add(objitemslist);

Just i want to remove item2 in List