AgentMulder.ReSharper.Plugin.Components.TypeUsageManager.SetConstructorsState C# (CSharp) Method

SetConstructorsState() private method

private SetConstructorsState ( ITypeElement typeElement, UsageState state ) : void
typeElement ITypeElement
state UsageState
return void
        private void SetConstructorsState(ITypeElement typeElement, UsageState state)
        {
            foreach (IConstructor constructor in typeElement.Constructors)
            {
                collectUsagesStageProcess.SetElementState(constructor, state);
            }
        }