public static bool Is (this CustomExpression self, CustomExpressionType type)
		{
			if (self == null)
				throw new ArgumentNullException ("self");

			return self.CustomNodeType == type;
		}
Пример #2
0
        public static bool Is(this CustomExpression self, CustomExpressionType type)
        {
            if (self == null)
            {
                throw new ArgumentNullException("self");
            }

            return(self.CustomNodeType == type);
        }