本文整理汇总了C#中Literal.GetIntValue方法的典型用法代码示例。如果您正苦于以下问题:C# Literal.GetIntValue方法的具体用法?C# Literal.GetIntValue怎么用?C# Literal.GetIntValue使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Literal
的用法示例。
在下文中一共展示了Literal.GetIntValue方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Add
public Literal Add(Literal toAddTo) {
return new IntegerLiteral(m_value + toAddTo.GetIntValue());
}
示例2: Sub
public Literal Sub(Literal toSubTo) {
return new IntegerLiteral(m_value - toSubTo.GetIntValue());
}
示例3: DivBy
public Literal DivBy(Literal toDivBy) {
return new IntegerLiteral(m_value / toDivBy.GetIntValue());
}
示例4: ModBy
public Literal ModBy(Literal toModBy) {
return new IntegerLiteral(m_value % toModBy.GetIntValue());
}
示例5: MultBy
public Literal MultBy(Literal toMultWith) {
return new IntegerLiteral(m_value * toMultWith.GetIntValue());
}
示例6: ShiftLeftBy
public Literal ShiftLeftBy(Literal shift) {
if ((shift.GetIntValue() >= 64) || (shift.GetIntValue() < 0)) {
throw new InvalidOperandInExpressionException("Invalid shift by argument " +
shift.GetIntValue() + "; shift is only possible with values in the range 0 <= shift < 63.");
}
return new IntegerLiteral(GetIntValue() << (int)shift.GetIntValue());
}
示例7: And
public Literal And(Literal toAndWith) {
return new IntegerLiteral(GetIntValue() & toAndWith.GetIntValue());
}
示例8: Xor
public Literal Xor(Literal toXorWith) {
return new IntegerLiteral(GetIntValue() ^ toXorWith.GetIntValue());
}
示例9: Or
public Literal Or(Literal toOrWith) {
return new IntegerLiteral(GetIntValue() | toOrWith.GetIntValue());
}