C# to vb.net converter
The c# to vb.net converter provided incorrect syntax. How would this be converted to vb.net:Private Shared Cache As ObjectCache = > MemoryCache.Default
http://www.dotnetspider.com/convert/Csharp-To-Vb.aspx
using System;
public class MyClass
{
static void Main(string[] args)
{
Console.WriteLine("Hello !");
}
}
VB.net code
Public Class MyClass
Shared Sub Main(ByVal args() As String)
Console.WriteLine("Hello !")
End Sub
End Class