当前位置: 首页>>代码示例>>C#>>正文


C# Literal.GetIntValue方法代码示例

本文整理汇总了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());
 }
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs

示例2: Sub

 public Literal Sub(Literal toSubTo) {
     return new IntegerLiteral(m_value - toSubTo.GetIntValue());
 }
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs

示例3: DivBy

 public Literal DivBy(Literal toDivBy) {
     return new IntegerLiteral(m_value / toDivBy.GetIntValue());
 }
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs

示例4: ModBy

 public Literal ModBy(Literal toModBy) {
     return new IntegerLiteral(m_value % toModBy.GetIntValue());
 }        
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs

示例5: MultBy

 public Literal MultBy(Literal toMultWith) {
     return new IntegerLiteral(m_value * toMultWith.GetIntValue());
 }
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs

示例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());
 }
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:7,代码来源:Literal.cs

示例7: And

 public Literal And(Literal toAndWith) {            
     return new IntegerLiteral(GetIntValue() & toAndWith.GetIntValue());
 }
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs

示例8: Xor

 public Literal Xor(Literal toXorWith) {
     return new IntegerLiteral(GetIntValue() ^ toXorWith.GetIntValue());
 }
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs

示例9: Or

 public Literal Or(Literal toOrWith) {
     return new IntegerLiteral(GetIntValue() | toOrWith.GetIntValue());
 }        
开发者ID:JnS-Software-LLC,项目名称:iiop-net,代码行数:3,代码来源:Literal.cs


注:本文中的Literal.GetIntValue方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。