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


C# BinaryExpression.Clone方法代码示例

本文整理汇总了C#中BinaryExpression.Clone方法的典型用法代码示例。如果您正苦于以下问题:C# BinaryExpression.Clone方法的具体用法?C# BinaryExpression.Clone怎么用?C# BinaryExpression.Clone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在BinaryExpression的用法示例。


在下文中一共展示了BinaryExpression.Clone方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: VisitBinaryExpression

    public virtual Differences VisitBinaryExpression(BinaryExpression binaryExpression1, BinaryExpression binaryExpression2){
      Differences differences = new Differences(binaryExpression1, binaryExpression2);
      if (binaryExpression1 == null || binaryExpression2 == null){
        if (binaryExpression1 != binaryExpression2) differences.NumberOfDifferences++; else differences.NumberOfSimilarities++;
        return differences;
      }
      BinaryExpression changes = (BinaryExpression)binaryExpression2.Clone();
      BinaryExpression deletions = (BinaryExpression)binaryExpression2.Clone();
      BinaryExpression insertions = (BinaryExpression)binaryExpression2.Clone();

      if (binaryExpression1.NodeType == binaryExpression2.NodeType) differences.NumberOfSimilarities++; else differences.NumberOfDifferences++;

      Differences diff = this.VisitExpression(binaryExpression1.Operand1, binaryExpression2.Operand1);
      if (diff == null){Debug.Assert(false); return differences;}
      changes.Operand1 = diff.Changes as Expression;
      deletions.Operand1 = diff.Deletions as Expression;
      insertions.Operand1 = diff.Insertions as Expression;
      Debug.Assert(diff.Changes == changes.Operand1 && diff.Deletions == deletions.Operand1 && diff.Insertions == insertions.Operand1);
      differences.NumberOfDifferences += diff.NumberOfDifferences;
      differences.NumberOfSimilarities += diff.NumberOfSimilarities;

      diff = this.VisitExpression(binaryExpression1.Operand2, binaryExpression2.Operand2);
      if (diff == null){Debug.Assert(false); return differences;}
      changes.Operand2 = diff.Changes as Expression;
      deletions.Operand2 = diff.Deletions as Expression;
      insertions.Operand2 = diff.Insertions as Expression;
      Debug.Assert(diff.Changes == changes.Operand2 && diff.Deletions == deletions.Operand2 && diff.Insertions == insertions.Operand2);
      differences.NumberOfDifferences += diff.NumberOfDifferences;
      differences.NumberOfSimilarities += diff.NumberOfSimilarities;

      if (differences.NumberOfDifferences == 0){
        differences.Changes = null;
        differences.Deletions = null;
        differences.Insertions = null;
      }else{
        differences.Changes = changes;
        differences.Deletions = deletions;
        differences.Insertions = insertions;
      }
      return differences;
    }
开发者ID:tapicer,项目名称:resource-contracts-.net,代码行数:41,代码来源:Comparer.cs

示例2: VisitBinaryExpression

 public override Expression VisitBinaryExpression(BinaryExpression binaryExpression)
 {
     if (binaryExpression == null) return null;
     binaryExpression = (BinaryExpression)base.VisitBinaryExpression((BinaryExpression)binaryExpression.Clone());
     return binaryExpression;
 }
开发者ID:hnlshzx,项目名称:DotNetOpenAuth,代码行数:6,代码来源:Duplicator.cs


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