Ejemplo n.º 1
0
        private static StringBuilder GenerateInterfaceMetricText(InterfaceProperties item)
        {
            StringBuilder results = new StringBuilder();

            results.Append(GettextCatalog.GetString("\nName : " + item.FullName));
            results.Append(GettextCatalog.GetString("\nTotal number of properties : " + item.Interface.PropertyCount));
            results.Append(GettextCatalog.GetString("\nTotal number of methods : " + item.Interface.MethodCount));
            return(results);
        }
		private static StringBuilder GenerateInterfaceMetricText (InterfaceProperties item)
		{
			StringBuilder results = new StringBuilder();
			results.Append(GettextCatalog.GetString("\nName : " + item.FullName));
			results.Append(GettextCatalog.GetString("\nTotal number of properties : " + item.Interface.PropertyCount));
			results.Append(GettextCatalog.GetString("\nTotal number of methods : " + item.Interface.MethodCount));
			return results;
		}