本文整理汇总了C#中RegionInfo.GetHashCode方法的典型用法代码示例。如果您正苦于以下问题:C# RegionInfo.GetHashCode方法的具体用法?C# RegionInfo.GetHashCode怎么用?C# RegionInfo.GetHashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RegionInfo
的用法示例。
在下文中一共展示了RegionInfo.GetHashCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Equals
public void Equals(RegionInfo regionInfo1, object obj, bool expected)
{
Assert.Equal(expected, regionInfo1.Equals(obj));
Assert.Equal(regionInfo1.GetHashCode(), regionInfo1.GetHashCode());
if (obj is RegionInfo)
{
Assert.Equal(expected, regionInfo1.GetHashCode().Equals(obj.GetHashCode()));
}
}
示例2: PosTest1
public bool PosTest1()
{
bool retVal = true;
TestLibrary.TestFramework.BeginScenario("PosTest1:Get the hash code of the RegionInfo object 1");
try
{
RegionInfo regionInfo = new RegionInfo("zh-CN");
int hashCode = regionInfo.GetHashCode();
if (hashCode != regionInfo.Name.GetHashCode())
{
TestLibrary.TestFramework.LogError("001", "the ExpectResult is" + regionInfo.Name.GetHashCode() +"but the ActualResult is " + hashCode);
retVal = false;
}
}
catch (ArgumentException)
{
TestLibrary.TestFramework.LogInformation("The East Asian Languages are not installed. Skipping test(s)");
retVal = true;
}
catch (Exception e)
{
TestLibrary.TestFramework.LogError("002", "Unexpect exception:" + e);
retVal = false;
}
return retVal;
}
示例3: PosTest2
public bool PosTest2()
{
bool retVal = true;
TestLibrary.TestFramework.BeginScenario("PosTest2:Get the hash code of the RegionInfo object 2");
try
{
RegionInfo regionInfo = new RegionInfo("en-US");
int hashCode = regionInfo.GetHashCode();
if (hashCode != regionInfo.Name.GetHashCode())
{
TestLibrary.TestFramework.LogError("003", "the ExpectResult is" + regionInfo.Name.GetHashCode() +"but the ActualResult is " + hashCode);
retVal = false;
}
}
catch (Exception e)
{
TestLibrary.TestFramework.LogError("004", "Unexpect exception:" + e);
retVal = false;
}
return retVal;
}