Feedback
C# - Snippet of The Day

Snippet des Tages

C# - IsNull and IsNullOrEmpty Extension-Methods become Lazy

Ich finde das macht den Code einfach besser lesbar und das Programmieren komfortabler. Beispiel: object abc = null; string xyz = string.Empty; if (abc.IsNull()) xyz = "abc is null!"; if ..

< zurück . . . 34567891011 . . . weiter >