Settings and activity
9 results found
-
847 votesFabrice Lagrange supported this idea ·
-
33 votes
An error occurred while saving the comment -
288 votesFabrice Lagrange supported this idea ·
-
31 votes
-
154 votes
-
248 votesFabrice Lagrange supported this idea ·
-
1,276 votesFabrice Lagrange supported this idea ·
-
1,685 votesFabrice Lagrange supported this idea ·
-
237 votesFabrice Lagrange supported this idea ·
As Joe already says :
"You can write this as an extension method in My Extensions"
public static class MyExtensions
{
public static T DumpFixed<T> (this T toDump, string heading = null,
int? depth = null)
{
Util.WithStyle (toDump, "font-family:consolas").Dump (heading, depth);
return toDump;
}
}