using System;
using System.Collections;
using System.Collections.Specialized;
public class CreateCaseInsensitiveDemo
{
public static void Main()
{
Hashtable ht = CollectionsUtil.CreateCaseInsensitiveHashtable();
ht["HELLO"] = "Aptech";
ht["hello"] = "Arena";
Console.WriteLine(ht.Count);
SortedList st = CollectionsUtil.CreateCaseInsensitiveSortedList();
st["HI"] = "Aptech";
st["hi"] = "Arena";
Console.WriteLine(st.Count);
Console.Read();
}
}
Wednesday, 4 April 2012
CreateCaseInsensitive
Subscribe to:
Post Comments (Atom)
CRUD operations using AngularJS in Asp.Net MVC
In this article I will show you how to perform CRUD operations in Asp.Net MVC5 using AngularJS. Add AngularJS using the Manage Nuget Pack...
-
To implement this concept you need to follow the below steps : Step1 : First you need to design a table in Sql Database to inser...
-
Here in this example i used the 3 Tier Architecture for Inserting and Retrieving Data from database and viewed in the Gridview. 3 tier a...
-
To implement the AutoComplete Textbox in Windows form C#.net you need to follow the below steps : Step1 : First you need to des...
No comments:
Post a Comment