Microsoft.CSharp.RuntimeBinder.Semantics.MethodTypeInferrer.UpdateDependenciesAfterFix C# (CSharp) Méthode

UpdateDependenciesAfterFix() private méthode

private UpdateDependenciesAfterFix ( int iParam ) : void
iParam int
Résultat void
        private void UpdateDependenciesAfterFix(int iParam)
        {
            if (_ppDependencies == null)
            {
                return;
            }
            for (int jParam = 0; jParam < _pMethodTypeParameters.size; ++jParam)
            {
                _ppDependencies[iParam][jParam] = Dependency.NotDependent;
                _ppDependencies[jParam][iParam] = Dependency.NotDependent;
            }
            _dependenciesDirty = true;
        }