Conversion from C# to VB.NET

GornHorse

Centurion
Joined
May 27, 2003
Messages
105
Location
Australia
Hi There,

Could anyone please let me know what the equivalent VB.NET code will be for this C# code??



switch (KeyPressed)
{
case (Keys.Alt | Keys.S): Save(); return true;
default:
break;
}
return base.processcmdkey (ref KeyMsg, KeyPressed);


A quick response would be really helpful.

Regards,
Michelle
 
Back
Top