Microsoft.CSharp.RuntimeBinder.Semantics.MethodTypeInferrer.AllFixed C# (CSharp) Method

AllFixed() private method

private AllFixed ( ) : bool
return bool
        private bool AllFixed()
        {
            for (int iParam = 0; iParam < _pMethodTypeParameters.size; ++iParam)
            {
                if (IsUnfixed(iParam))
                {
                    return false;
                }
            }
            return true;
        }