Tagged Questions
9
votes
9answers
955 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 ...
5
votes
6answers
914 views
1
vote
2answers
168 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
88 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()
{
...