本文整理汇总了C#中Duration.GetType方法的典型用法代码示例。如果您正苦于以下问题:C# Duration.GetType方法的具体用法?C# Duration.GetType怎么用?C# Duration.GetType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Duration
的用法示例。
在下文中一共展示了Duration.GetType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Add
public static CalendarDateTime Add(CalendarDateTime x, Duration y)
{
if (y is CalendarDateTimeDuration)
{
return Add(x, (CalendarDateTimeDuration)y);
}
if (y is OrdinalDateTimeDuration)
{
return Add(x, ((OrdinalDateTimeDuration)y).ToCalendarDateTimeDuration());
}
if (y is CalendarDateDuration)
{
return Add(x, (CalendarDateDuration)y);
}
if (y is OrdinalDateDuration)
{
return Add(x, ((OrdinalDateDuration)y).ToCalendarDateDuration());
}
if (y is TimeDuration)
{
return Add(x, (TimeDuration)y);
}
if (y is DesignatedDuration)
{
return Add(x, (DesignatedDuration)y);
}
throw new InvalidOperationException($"A {y.GetType()} cannot be added to a {x.GetType()}.");
}
示例2: Subtract
public static Time Subtract(Time x, Duration y)
{
if (y is TimeDuration)
{
return Subtract(x, (TimeDuration)y);
}
if (y is DesignatedDuration)
{
return Subtract(x, (DesignatedDuration)y);
}
throw new InvalidOperationException($"A {y.GetType()} cannot be subtracted from a {x.GetType()}.");
}