Server.TypeTable.TypeTable C# (CSharp) Méthode

TypeTable() public méthode

public TypeTable ( int capacity ) : System
capacity int
Résultat System
		public TypeTable( int capacity )
		{
			m_Sensitive = new Dictionary<string, Type>( capacity );
			m_Insensitive = new Dictionary<string, Type>( capacity, StringComparer.OrdinalIgnoreCase );
		}
	}