示例#1
0
文件: Stress.cs 项目: xgray/dotnet
 public void MergeFrom(Complex other)
 {
     if (other == null)
     {
         return;
     }
     if (other.simpleValue_ != null)
     {
         if (simpleValue_ == null)
         {
             simpleValue_ = new global::protobuf.Simple();
         }
         SimpleValue.MergeFrom(other.SimpleValue);
     }
     listValue_.Add(other.listValue_);
 }