Tagged Questions
9
votes
9answers
971 views
Why aren't classes sealed by default?
I was just wondering, since the sealed keyword's existence indicates that it's the class author's decision as to whether other classes are allowed to inherit from it, why aren't classes sealed by ...
6
votes
6answers
1k views
1
vote
2answers
172 views
Custom MediaElement
I am currently using some MediaElements in an application I am creating. I am dynamically creating them and adding them to a wrap panel.
The problem is I need to be able to add a key to them so I ...
1
vote
2answers
90 views
Why can I seal a class implementing an interface but cant seal a member?
Given this interface
public interface IMyInterface
{
string Method1();
}
Why is this valid
public sealed class InheretedFromInterfaceSealed: IMyInterface
{
public string Method1()
{
...