Пример #1
0
 private bool EqualFields(IgmpSimpleLayer other)
 {
     if (other != null)
     {
         return(this.GroupAddress == other.GroupAddress);
     }
     return(false);
 }
Пример #2
0
 /// <summary>
 /// true iff the the group address is equal.
 /// </summary>
 private bool EqualFields(IgmpSimpleLayer other)
 {
     return other != null &&
            GroupAddress == other.GroupAddress;
 }
Пример #3
0
 /// <summary>
 /// true iff the the group address is equal.
 /// </summary>
 private bool EqualFields(IgmpSimpleLayer other)
 {
     return(other != null &&
            GroupAddress == other.GroupAddress);
 }