Category Archives: C#
C# || How To Check If A String Is A Valid HTTP URL Using C#
The following is a module with functions which demonstrates how to check whether a string is a valid HTTP URL using C#.
C# || How To Get, Add, Update & Remove Values From A URL Query String Using C#
The following is a module with functions which demonstrates how to get, add, update and remove parameters from a query string using
C# || How To Serialize & Deserialize JSON Using C#
The following is a module with functions which demonstrates how to serialize and deserialize Json using C#. The following generic functions use
C# || How To Serialize & Deserialize XML Using C#
The following is a module with functions which demonstrates how to serialize and deserialize XML using C#. The following generic functions use
C# || How To Split & Batch An Array/List/IEnumerable Into Smaller Sub-Lists Of N Size Using C#
The following is a module with functions which demonstrates how to split/batch an Array/List/IEnumerable into smaller sublists of n size using C#.
C# || How To Set & Get The Description Of An Enum Using C#
The following is a module with functions which demonstrates how to set and get the description of an enum using C#. This
C# || How To Iterate & Get The Values Of An Enum Using C#
The following is a module with functions which demonstrates how to iterate and get the values of an enum using C#. This
C# || How To Resize & Rotate Image, Convert Image To Byte Array, Change Image Format, & Fix Image Orientation Using C#
The following is a module with functions which demonstrates how to resize an image, rotate an image to a specific angle, convert
C# || How To Convert A String To Byte Array & Byte Array To String Using C#
The following is a module with functions which demonstrates how to convert a string to a byte array and a byte array
C# || How To Save, Open & Read File As A Byte Array & Memory Stream Using C#
The following is a module with functions which demonstrates how to save, open and read a file as a byte array and
C# || How To Validate An Email Address Using C#
The following is a module with functions which demonstrates how to determine if an email address is valid using C#. This function
C# || How To Validate A Phone Number Using C#
The following is a module with functions which demonstrates how to validate a phone number using C#. Not only does this function
C# || How To Shuffle & Randomize An Array/List/IEnumerable Using C#
The following is a module with functions which demonstrates how to randomize and shuffle the contents of an Array/List/IEnumerable using C#. This