Beef
Beef copied to clipboard
Implement 'sealed'
Implemented in the current version of Beef.
Implemented in the current version of Beef.
I don't think so, this code still compiles without problems:
public class TestV
{
public virtual void AAA()
{
}
}
public sealed class Tesc : TestV
{
public override void AAA()
{
}
}
public sealed class Tescx : Tesc
{
public override void AAA()
{
}
}
Ah, you're right. I just assumed it was implemented since it didn't generate any errors or warnings.