Posted on: 10/20/2014 1:42:02 PM | Views : 345

Friends,
I am converting Dictionary to List and it produces the result in [Name, Value] Format, Is it possible to Apply Custom format like <<"Name" = "Value">> or something like this (Custom format) , Displaying the result in Grid / List Box
Here is my code, Guide me how to achieve this with the custom formatting or something similar
Dictionary<string, string> dicNameValueList; public bool isAscendingKey = true; public Form1() { InitializeComponent(); dicNameValueList = new Dictionary<string, string>(); } private void btnAdd_Click(object sender, EventArgs e) { string strNameValue = txtAdd.Text; string[] strNameValuePair; if (strNameValue != string.Empty) { strNameValuePair = strNameValue.Split('='); if (strNameValuePair.Length ...

Go to the complete details ...