本文整理汇总了C#中StreamingContext.GetHashCode方法的典型用法代码示例。如果您正苦于以下问题:C# StreamingContext.GetHashCode方法的具体用法?C# StreamingContext.GetHashCode怎么用?C# StreamingContext.GetHashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StreamingContext
的用法示例。
在下文中一共展示了StreamingContext.GetHashCode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: runTest
public virtual bool runTest()
{
Console.WriteLine(s_strTFPath + " " + s_strTFName + " , for " + s_strClassMethod + " , Source ver " + s_strDtTmVer);
int iCountErrors = 0;
int iCountTestcases = 0;
String strLoc = "Loc_000oo";
String strBaseLoc = "";
try {
LABEL_860_GENERAL:
do
{
StreamingContext sCon1, sCon2;
int iState;
String str1;
sCon1 = new StreamingContext(StreamingContextStates.CrossMachine);
sCon2 = new StreamingContext(StreamingContextStates.CrossMachine);
iCountTestcases++;
if(sCon1.GetHashCode() != sCon2.GetHashCode())
{
iCountErrors++;
printerr("Error_100aa! Two different objects should not return the same hashcode");
}
sCon1 = new StreamingContext(StreamingContextStates.CrossMachine);
sCon2 = new StreamingContext(StreamingContextStates.CrossProcess);
iCountTestcases++;
if(sCon1.GetHashCode() == sCon2.GetHashCode())
{
iCountErrors++;
printerr("Error_100aa! Two different objects should not return the same hashcode");
}
} while (false);
} catch (Exception exc_general ) {
++iCountErrors;
Console.WriteLine (s_strTFAbbrev + " : Error Err_8888yyy! strLoc=="+ strLoc +", exc_general==\n"+exc_general.StackTrace);
}
if ( iCountErrors == 0 )
{
Console.WriteLine( "paSs. "+s_strTFPath +" "+s_strTFName+" ,iCountTestcases=="+iCountTestcases);
return true;
}
else
{
Console.WriteLine("FAiL! "+s_strTFPath+" "+s_strTFName+" ,iCountErrors=="+iCountErrors+" , BugNums?: "+s_strActiveBugNums );
return false;
}
}