Example #1
0
        public BoundMagicType(BoundMagicVariableType magicType, IBoundType type)
        {
            if (type == null)
                throw new ArgumentNullException("type");

            MagicType = magicType;
            Type = type;
        }
Example #2
0
 private BoundMagicVariable(BoundMagicVariableType variableType)
 {
     VariableType = variableType;
 }