Hi all. I am primarily used to program in C#. However, I have a certain requirement which needs some VB.NET coding. I want to know the equivalent code for the following in VB.NET:
Code:
public static class A
{
    // Class definition
}
and
Code:
public sealed class A
{
    // Class definition
}
Another, question that comes to my mind is what is the meaning of WithEvents keyword in VB.NET?

Thanks.