当前位置: 首页>>代码示例>>C#>>正文


C# StreamingContext.GetHashCode方法代码示例

本文整理汇总了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;
		}
	}
开发者ID:gbarnett,项目名称:shared-source-cli-2.0,代码行数:46,代码来源:co5252gethashcode.cs


注:本文中的StreamingContext.GetHashCode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。