Lines Matching defs:other
70 public Bar(Bar other) : this() {
71 foo_ = other.foo_ != null ? other.foo_.Clone() : null;
72 _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields);
92 public override bool Equals(object other) {
93 return Equals(other as Bar);
97 public bool Equals(Bar other) {
98 if (ReferenceEquals(other, null)) {
101 if (ReferenceEquals(other, this)) {
104 if (!object.Equals(Foo, other.Foo)) return false;
105 return Equals(_unknownFields, other._unknownFields);
164 public void MergeFrom(Bar other) {
165 if (other == null) {
168 if (other.foo_ != null) {
172 Foo.MergeFrom(other.Foo);
174 _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);