Browse Source

Implement Method.ToString() to help with debugging.

pull/1516/head
Joao Matos 5 years ago committed by João Matos
parent
commit
a85e94a3f2
  1. 5
      src/AST/Method.cs

5
src/AST/Method.cs

@ -188,5 +188,10 @@ namespace CppSharp.AST @@ -188,5 +188,10 @@ namespace CppSharp.AST
}
private bool? isOverride;
public override string ToString()
{
return DebugText;
}
}
}

Loading…
Cancel
Save