Microsoft.DocAsCode.Build.ManagedReference.BuildOutputs.ApiReferenceBuildOutput.GetSpecName C# (CSharp) Method

GetSpecName() private static method

private static GetSpecName ( List spec ) : string
spec List
return string
        private static string GetSpecName(List<SpecViewModel> spec)
        {
            if (spec == null) return null;
            return string.Concat(spec.Select(GetCompositeName));
        }