Category Archives: C#
C# || How To Remove Non Alphanumeric Characters From A String Using C#
The following is a module with functions which demonstrates how to remove and replace non alphanumeric characters from a string using C#.
C# || How To Replace Entire Words In A String Using C#
The following is a module with functions which demonstrates how to replace entire words in a string using C#. This function is
C# || How To Manually Copy Two Streams From One To Another Using C#
The following is a module with functions which demonstrates how to manually copy two steams from one to another using C#. 1.
C# || How To Copy All Properties & Fields From One Object To Another Using C#
The following is a module with functions which demonstrates how to copy all properties and fields from one object to another using
C# || Universal Object Serializer and Deserializer Using C#
The following is a module with functions which demonstrates how to create a simple universal object serializer and deserializer using C#. The
C# || How To Send, Post & Process A REST API Web Request Using C#
The following is a module with functions which demonstrates how to send and receive a RESTful web request using C#. Contents 1.
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