Server.TypeTable.TypeTable C# (CSharp) 메소드

TypeTable() 공개 메소드

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