A very important feature of .NET is a cross-language programming, with C # written by C # can be called in VB.NET, such as a class written by C #, compile into the DLL, then call in VB.NET:
Using
System;
Namespace
Clssample
{Public class clstest {public clstest () {} public void abc () {console.writeLine ("abc");}}}