Dieses Schnipsel habe ich ausgesucht, weil ich es täglich in Gebrauch habe. Es ist extrem minimal, aber vielleicht findet ja trotzdem jemand Gefallen daran ;)
Die Anwendung ist so simpel wie das Schnipsel selbst:
string s = "Hallo {0}".FS(Environment.Username);
namespace System // Damit überall verfügbar
{
public static class SystemExtensions
{
public static string FS(this string thistr, params object[] args)
{
return String.Format(thistr, args);
}
}
}
2 Kommentare zum Snippet