Contents tagged with Nifty.NET
-
Nifty .NET Part #4: Enumerable.Any
In part 4 of the Nifty .Net series we have the Enumerable.Any method. The Any method is part of the .NET 3.5 LINQ framework, so it’s only available in .NET 3.5 and upwards. The Any method determines whether a sequence contains any elements.
-
Nifty .NET Part #3: String.PadLeft
And there is part 3, String.PadLeft, this method will add a specified character to the left side of string till the specified length is met.
-
Nifty .NET Part #2: Enumerable.Empty<T>
In part 2 the generic method Enumerable.Empty<T>, as the name would say it returns a empty IEnumerable of T:
-
Nifty .NET Part #1: String.Join
In the first part of the nifty .NET series I will blog about the method String.Join. First let see how the method definition looks like:
-
Nifty .NET Introduction
This is an start of a new blog series called: “Nifty .NET”. In this series I will blog about all the nifty .NET things, like classes, methods, configurations, etc.