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);
		}
	}