Lawo.EmberPlusSharp.Ember.EmberType.EmberType C# (CSharp) Method

EmberType() public method

Initializes a new instance of the EmberType class.
equals null.
public EmberType ( ) : System
return System
        public EmberType(params Type[] types)
        {
            if (types == null)
            {
                throw new ArgumentNullException(nameof(types));
            }

            if (types.Length == 0)
            {
                throw new ArgumentException("Length must not be 0.", nameof(types));
            }

            this.types = types;
        }