Category Archives: VB.NET

VB.NET || How To Add & Use Custom Attributes To Class Properties Using VB.NET

The following is a module with functions which demonstrates how to add and use custom attributes for class properties using VB.NET. The

VB.NET || How To Remove Excess Whitespace From A String Using VB.NET

The following is a module with functions which demonstrates how to remove excess whitespace from a string, replacing multiple spaces into just

VB.NET || How To Remove All Whitespace From A String Using VB.NET

The following is a module with functions which demonstrates how to remove all whitespace from a string using VB.NET. 1. Remove All

VB.NET || How To Remove Non Alphanumeric Characters From A String Using VB.NET

The following is a module with functions which demonstrates how to remove and replace non alphanumeric characters from a string using VB.NET.

VB.NET || How To Replace Entire Words In A String Using VB.NET

The following is a module with functions which demonstrates how to replace entire words in a string using VB.NET. This function is

VB.NET || How To Manually Copy Two Streams From One To Another Using VB.NET

The following is a module with functions which demonstrates how to manually copy two steams from one to another using VB.NET. 1.

VB.NET || How To Copy All Properties & Fields From One Object To Another Using VB.NET

The following is a module with functions which demonstrates how to copy all properties and fields from one object to another using

VB.NET || Universal Object Serializer and Deserializer Using VB.NET

The following is a module with functions which demonstrates how to create a simple universal object serializer and deserializer using VB.NET. The

VB.NET || How To Send, Post & Process A REST API Web Request Using VB.NET

The following is a module with functions which demonstrates how to send and receive a RESTful web request using VB.NET. Contents 1.

VB.NET || How To Check If A String Is A Valid HTTP URL Using VB.NET

The following is a module with functions which demonstrates how to check whether a string is a valid HTTP URL using VB.NET.

VB.NET || How To Get, Add, Update & Remove Values From A URL Query String Using VB.NET

The following is a module with functions which demonstrates how to get, add, update and remove parameters from a query string using

VB.NET || How To Serialize & Deserialize JSON Using VB.NET

The following is a module with functions which demonstrates how to serialize and deserialize Json using VB.NET. The following generic functions use

VB.NET || How To Serialize & Deserialize XML Using VB.NET

The following is a module with functions which demonstrates how to serialize and deserialize XML using VB.NET. The following generic functions use

VB.NET || How To Split & Batch An Array/List/IEnumerable Into Smaller Sub-Lists Of N Size Using VB.NET

The following is a module with functions which demonstrates how to split/batch an Array/List/IEnumerable into smaller sublists of n size using VB.NET.