Exemplo n.º 1
0
        private NonNullType(InputType type)
        {
            Check.IsNotNull(type, nameof(type));

            Type = type;
        }
Exemplo n.º 2
0
        public ListType(InputType type)
        {
            Check.IsNotNull(type, nameof(type));

            Type = type;
        }