/// <summary> /// Equality comparison between this and the supplied representation. This /// representation must be of type XSGMonth /// </summary> /// <param name="arg"> /// The XSGMonth to compare with </param> /// <returns> True if the two representations are of the same month. False /// otherwise </returns> /// <exception cref="DynamicError"> </exception> //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET: //ORIGINAL LINE: public boolean eq(AnyType arg, org.eclipse.wst.xml.xpath2.api.DynamicContext dynamicContext) throws org.eclipse.wst.xml.xpath2.processor.DynamicError public virtual bool eq(AnyType arg, DynamicContext dynamicContext) { XSGMonth val = (XSGMonth)NumericType.get_single_type(arg, typeof(XSGMonth)); Calendar thiscal = normalizeCalendar(calendar(), tz()); Calendar thatcal = normalizeCalendar(val.calendar(), val.tz()); return(thiscal.Equals(thatcal)); }
private XSGMonth castGMonth(AnyAtomicType aat) { if (aat is XSGMonth) { XSGMonth gm = (XSGMonth)aat; return(new XSGMonth(gm.calendar(), gm.tz())); } if (aat is XSDate) { XSDate date = (XSDate)aat; return(new XSGMonth(date.calendar(), date.tz())); } if (aat is XSDateTime) { XSDateTime dateTime = (XSDateTime)aat; return(new XSGMonth(dateTime.calendar(), dateTime.tz())); } return(parse_gMonth(aat.StringValue)); }