views:

32

answers:

2

I was wondering if anyone knows an online service where I could quickly try out .Net's string.Format() various formatting options?

I'm imagining something similar to the multitude of online Regex builders.

I guess Snippet Compiler is the next best thing, but an online version would be easier to use.

+4  A: 

You can use for example ideone. This is a useful tool not just for quickly testing C# code online, but also for many other languages.

Mark Byers
+1  A: 

It's not online, but I use .NET FormatDesigner. A nifty little free tool, available with source you might want to recompile it for .NET 2.0. I have it integrated in my Visual Studio "Extras/External Tools" menu for easy access.

Christian.K