예제 #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_);
 }