Microsoft.CSharp.RuntimeBinder.Semantics.MethodTypeInferrer.IsUnfixed C# (CSharp) Метод

IsUnfixed() приватный Метод

private IsUnfixed ( Microsoft.CSharp.RuntimeBinder.Semantics.TypeParameterType pParam ) : bool
pParam Microsoft.CSharp.RuntimeBinder.Semantics.TypeParameterType
Результат bool
        private bool IsUnfixed(TypeParameterType pParam)
        {
            Debug.Assert(pParam != null);
            Debug.Assert(pParam.IsMethodTypeParameter());
            int iParam = pParam.GetIndexInTotalParameters();
            Debug.Assert(_pMethodTypeParameters.ItemAsTypeParameterType(iParam) == pParam);
            return IsUnfixed(iParam);
        }

Same methods

MethodTypeInferrer::IsUnfixed ( int iParam ) : bool