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

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

private SetUnknownsToNotDependent ( ) : void
Результат void
        private void SetUnknownsToNotDependent()
        {
            Debug.Assert(_ppDependencies != null);
            for (int iParam = 0; iParam < _pMethodTypeParameters.size; ++iParam)
            {
                for (int jParam = 0; jParam < _pMethodTypeParameters.size; ++jParam)
                {
                    if (_ppDependencies[iParam][jParam] == Dependency.Unknown)
                    {
                        _ppDependencies[iParam][jParam] = Dependency.NotDependent;
                    }
                }
            }
        }