//Visual Basic 2008/2010 Dynamic Binding Static Typing en Dynamic Binding public class Person { } public class Student : Person { } public class Example1 { public static void Main() { Person person1 = new Person(); Student person2 = new Student(); Person person3 = new Student(); } } //Bezoek www.vbvoorbeelden.be voor meer C# voorbeelden. //Copyright - De Wolf / vbvoorbeelden - 2003-2010 - Alle rechten voorbehouden.