예제 #1
0
파일: SetValue.cs 프로젝트: marcusanth/YAMP
            public SetValue Function(ArgumentsValue args)
            {
                SetValue set = @this as SetValue;

                if (ReferenceEquals(set, null))
                {
                    throw new YAMPSetsFunctionNotMemberException("SetUnion");
                }

                return(SetValue.TUnion(set, args));
            }
예제 #2
0
 public SetValue Function(SetValue set1, ArgumentsValue args)
 {
     return(SetValue.TUnion(set1, args));
 }