All C# extension methods for type generic
-
IsIn
Determines if an instance is contained in a sequence. Is the equivalent of Contains, but allows a more fluent reading "if item is in list", specially useful in LINQ extension methods like Where
-
ToEnum
Convert a String Value to Corresponding Enum Value
-
Paul Kemper
DoubleBuffer any control
-
Apply a function
applies a function to the given value - best used with static methods
-
DoubleBuffered
DoubleBuffer any control
-
FromAppSettings
Get a value from AppSettings section of Web.Config and change its type to the correct one or return a default value in case the key doesn't exists.
-
IsNotIn
Determines if an instance is not contained in a sequence. Is the equivalent of Contains == false, but allows a more fluent reading "if item is not in list", specially useful in LINQ extension methods like Where.
-
ToEnumerable
Convert an type T to IEnumerable<T>.
-
DistinctBy
Extension method to distinct by specific property.
-
List<T>.AreAllSame()
Simple extension method Check if all items are the same in a List. This extension method will return true if all of the elements in the list are the same. The original author is MSkuta This extension method is getting from :https://stackoverflow.com/a/35839942/5483868
-
HasItems
Determina si un Listado Tiene Items.
-
SplitIn
Convierte una Cadena con Números separados por un carácter a un Listado de Números de un Tipo Especifico.
-
ToDictionario
Convierte una clase a un Dictionary
-
DistinctBy
Extension method to distinct by specific property.