Microsoft.CSharp.RuntimeBinder.Semantics.TypeArray.TypeArray C# (CSharp) Méthode

TypeArray() public méthode

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