本文整理匯總了C#中System.Globalization.StringInfo.GetHashCode方法的典型用法代碼示例。如果您正苦於以下問題:C# StringInfo.GetHashCode方法的具體用法?C# StringInfo.GetHashCode怎麽用?C# StringInfo.GetHashCode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Globalization.StringInfo
的用法示例。
在下文中一共展示了StringInfo.GetHashCode方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: TestDiffInstances
public void TestDiffInstances()
{
string str = TestLibrary.Generator.GetString(-55, false, c_MINI_STRING_LENGTH, c_MAX_STRING_LENGTH);
StringInfo stringInfo1 = new StringInfo(str);
StringInfo stringInfo2 = new StringInfo("");
Assert.NotEqual(stringInfo2.GetHashCode(), stringInfo1.GetHashCode());
}
示例2: TestInstancesWithSameArg
public void TestInstancesWithSameArg()
{
string str = _generator.GetString(-55, false, c_MINI_STRING_LENGTH, c_MAX_STRING_LENGTH);
StringInfo stringInfo1 = new StringInfo(str);
StringInfo stringInfo2 = new StringInfo(str);
Assert.Equal(stringInfo2.GetHashCode(), stringInfo1.GetHashCode());
}
示例3: Equals
public void Equals(StringInfo stringInfo, object value, bool expected)
{
Assert.Equal(expected, stringInfo.Equals(value));
if (value is StringInfo)
{
Assert.Equal(expected, stringInfo.GetHashCode().Equals(value.GetHashCode()));
}
}