System.Security.Permissions.ResourcePermissionBase.CreateHashtable C# (CSharp) Method

CreateHashtable() private static method

private static CreateHashtable ( ) : Hashtable
return Hashtable
        private static Hashtable CreateHashtable()
        {
#pragma warning disable 618
            // Most subclasses should be using an OSCasing string comparer,
            // and this is our best current match.
            // We're using the obsolete classes so we can deserialize on v1.1. 
            return new Hashtable(StringComparer.OrdinalIgnoreCase);
#pragma warning restore 618
        }