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


C# MethodInfo.GetHashCode方法代码示例

本文整理汇总了C#中System.Reflection.MethodInfo.GetHashCode方法的典型用法代码示例。如果您正苦于以下问题:C# MethodInfo.GetHashCode方法的具体用法?C# MethodInfo.GetHashCode怎么用?C# MethodInfo.GetHashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Reflection.MethodInfo的用法示例。


在下文中一共展示了MethodInfo.GetHashCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: WebmethodGroupName

 internal static string WebmethodGroupName(MethodInfo method)
 {
     return String.Format("method_{0}", method.GetHashCode());
 }
开发者ID:ekarulf,项目名称:FortAwesomeUtil,代码行数:4,代码来源:Webservice.cs

示例2: AreMethodEquals

        /// <summary>
        /// The are method equals.
        /// </summary>
        /// <param name="left">
        /// The left.
        /// </param>
        /// <param name="right">
        /// The right.
        /// </param>
        /// <returns>
        /// The are method equals.
        /// </returns>
        private static bool AreMethodEquals(MethodInfo left, MethodInfo right)
        {
            if (left.Equals(right))
                return true;

            // GetHashCode calls to RuntimeMethodHandle.StripMethodInstantiation()
            // which is needed to fix issues with method equality from generic types.
            if (left.GetHashCode() != right.GetHashCode())
                return false;
            if (left.DeclaringType != right.DeclaringType)
                return false;
            ParameterInfo[] leftParams = left.GetParameters();
            ParameterInfo[] rightParams = right.GetParameters();
            if (leftParams.Length != rightParams.Length)
                return false;
            for (int i = 0; i < leftParams.Length; i++)
            {
                if (leftParams[i].ParameterType != rightParams[i].ParameterType)
                    return false;
            }

            if (left.ReturnType != right.ReturnType)
                return false;
            return true;
        }
开发者ID:bjornbouetsmith,项目名称:mammock,代码行数:37,代码来源:ProxyInstance.cs

示例3: GenerateFieldName

 private static string GenerateFieldName(MethodInfo method)
 {
     return String.Format(FieldNameFormat, method.GetHashCode(), method.Name);
 }
开发者ID:bradleyjford,项目名称:inception,代码行数:4,代码来源:MethodInfoFieldMetadata.cs


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