/// <summary>
 /// Determines if two VB identifiers are equal according to the VB identifier comparison rules.
 /// </summary>
 /// <param name="left">First identifier to compare</param>
 /// <param name="right">Second identifier to compare</param>
 /// <returns>true if the identifiers should be considered the same.</returns>
 public static bool Equals(string left, string right) => s_comparer.Equals(left, right);
Beispiel #2
0
 /// <summary>
 /// Determines if (two VB identifiers are equal according to the VB identifier comparison rules.
 /// </summary>
 /// <param name="left">First identifier to compare</param>
 /// <param name="right">Second identifier to compare</param>
 /// <returns>true if (the identifiers should be considered the same.</returns>
 public static bool Equals(string left, string right)
 {
     return(m_Comparer.Equals(left, right));
 }