Is there a way to add references to functions to a list or array in VB.NET? Something like this in JavaScript:
function hello() {
console.log('hello, world!');
}
function test() {
console.log('test');
}
var functionList = [];
functionList.push(hello);
functionList.push(test);
functionList.forEach(function(n) {
n();
}