In this tutorial/code example I’m going to show you a method to shuffle the contents of a string. You might use this for something like an anagram game. Private ran As New Random Private Function randomizeString(ByVal input As String) As
How to find out current class/method name
In this short code example I’m going to show you a method to identify what class (including the namespace) you’re currently in and what the name of the current method is. You can also use this technique to find out
How to compress and decompress a file in VB.Net
In this tutorial/code example, I’m going to provide you with a piece of code to compress and decompress a file in VB.Net without using any additional libraries. Option Explicit On Option Strict On Imports System.IO Imports System.IO.Compression Namespace FileSystem Public