Microsoft.CSharp.RuntimeBinder.Semantics.TypeArray.TypeArray C# (CSharp) 메소드

TypeArray() 공개 메소드

public TypeArray ( CType types ) : System
types CType
리턴 System
        public TypeArray(CType[] types)
        {
            _items = types;
            if (_items == null)
            {
                _items = Array.Empty<CType>();
            }
        }