ArchiMetrics.Analysis.Metrics.TypeMetricsCalculator.CalculateDepthOfInheritance C# (CSharp) Метод

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

private CalculateDepthOfInheritance ( Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax type ) : int
type Microsoft.CodeAnalysis.CSharp.Syntax.TypeDeclarationSyntax
Результат int
		private int CalculateDepthOfInheritance(TypeDeclarationSyntax type)
		{
			var analyzer = new DepthOfInheritanceAnalyzer(Model);
			return analyzer.Calculate(type);
		}
	}