How do I convert this c# code to VB code?
public class BasePage : Page
{
protected override void InitializeCulture()
{
if (Session["Lang"] != null)
{
string selectlang = Session["Lang"].ToString();
Culture = selectlang;
UICulture = selectlang;
}
base.InitializeCulture();
}
}