TypeReference.GetPrettyType C# (CSharp) Method

GetPrettyType() public method

public GetPrettyType ( ) : string
return string
	public string GetPrettyType ()
	{
		if (IsPointer)
			return Value.Substring (0, Value.Length - 1) + " *";

		return Value;
	}