NClass.Core.Member.GetUmlDescription C# (CSharp) Method

GetUmlDescription() public method

public GetUmlDescription ( ) : string
return string
		public string GetUmlDescription()
		{
			return GetUmlDescription(true, true, true, true);
		}

Same methods

Member::GetUmlDescription ( bool getType, bool getParameters, bool getParameterNames ) : string
Member::GetUmlDescription ( bool getType, bool getParameters, bool getParameterNames, bool getInitValue ) : string

Usage Example

Ejemplo n.º 1
0
		private static string GetMemberString(Member member)
		{
			return member.GetUmlDescription(
				Settings.Default.ShowType,
				Settings.Default.ShowParameters,
				Settings.Default.ShowParameterNames,
				Settings.Default.ShowInitialValue);
		}