1
Answer

how to generate sorted question paper in c# using windows form?

Ranjit chavan

Ranjit chavan

12y
2.1k
1
how to generate sorted question paper in c# using windows form?
Answers (1)
0
Sukesh Marla

Sukesh Marla

239 8.1k 1.6m 12y
You can make use of SortedList collection in .net 
SortedList<string, string> openWith = new SortedList<string, string>();


openWith.Add("SomeKey", "SomeValue");
openWith.Add("SomeKey", "SomeValue");


Represents a collection of key/value pairs that are sorted by key

Check this is correct answer if it helped.