Users Pricing

blog

Home Blogs SortedList in C# – MindStick

SortedList in C#

Uttam Misra 4100 01 Nov 2010 Updated 18 Sep 2014
SortedList sl = new SortedList();
//creating sorted list. private voidbtnAdd_Click(object sender, EventArgs e) { if(txtValue.Text != "" &&txtKey.Text != "")       {             sl.Add(txtKey.Text, txtValue.Text);
//adding key and value to sortedlist.             txtKey.Text= "";            txtValue.Text = "";       }       else             MessageBox.Show("Text Box Empty"); }

Uttam Misra

Information Technology

More than 18 years of working experience in IT sector. We are here to serve you best.


Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md