Mino fix in debug output

ParameterCollection.ToString() adds parentheses around its output, so
Delegate.ToString() should avoid adding a second pair.
This commit is contained in:
Stefanos A 2013-11-03 20:34:18 +01:00
parent 451bd62f63
commit c47166e54d

View file

@ -100,7 +100,7 @@ namespace Bind.Structures
public override string ToString()
{
return String.Format("{0} {1}({2})",
return String.Format("{0} {1}{2}",
ReturnType,
TrimmedName,
Parameters);