Microsoft.CSharp.RuntimeBinder.Semantics.TypeArray.TypeArray C# (CSharp) Method

TypeArray() public method

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