Extension method return not shown in results panel
I cannot get my extensions methods to show their results in the results panel.
Example:
Can someone please help me out.
Thanks,
David
Example:
I can call the method, but nothing shows up in the "Results" panel.
void Main()
{
object o = new object();
o.DumpPoco();
}
public static class MyExtensions
{
public static object DumpPoco(this object value)
{
return "hello world";
}
}
Can someone please help me out.
Thanks,
David
Comments