コード例 #1
0
 /// <summary> Checks to see if this wordmark/icon is equal to another wordmark/icon </summary>
 /// <param name="Other"> Other wordmark/icon to verify equality with </param>
 /// <returns> TRUE if they equal, otherwise FALSE</returns>
 /// <remarks> Two wordmark/icons are considered equal if their codes are identical </remarks>
 public bool Equals(BriefItem_Wordmark Other)
 {
     return(String.Compare(Other.Code, Code, StringComparison.OrdinalIgnoreCase) == 0);
 }
コード例 #2
0
 /// <summary> Checks to see if this wordmark/icon is equal to another wordmark/icon </summary>
 /// <param name="Other"> Other wordmark/icon to verify equality with </param>
 /// <returns> TRUE if they equal, otherwise FALSE</returns>
 /// <remarks> Two wordmark/icons are considered equal if their codes are identical </remarks>
 public bool Equals(BriefItem_Wordmark Other)
 {
     return String.Compare(Other.Code, Code, StringComparison.OrdinalIgnoreCase) == 0;
 }