Tagged Questions

19
votes
2answers
520 views

Why isn't List<T> sealed?

This question came to mind after reading the answer to this question; which basically made the point that List<T> has no virtual methods, since it was designed to be "fast, not extensible". ...
7
votes
9answers
673 views

Why does this C# class declaration compile?

This question really is kinda pointless, but I'm just curious: This: public sealed class MyClass { protected void MyMethod(){} } compiles, but gives a warning while This: public sealed class ...
7
votes
9answers
2k views

Why does the 'sealed' keyword exist in .Net?

A large number of classes in the .Net framework are marked as 'sealed', preventing you from inheriting those classes with your own. Surely this goes against the nature of object orientation, where you ...
5
votes
5answers
167 views

How to forbid a class method/property to be overriden in C#?

I believe I want a some methods and properties of a class to be unoverridable and use the base's implementation in all derived classes. How to achieve this? sealed keyword doesn't seem to work and ...
5
votes
2answers
733 views

Evidence for sealed class performance benefit

My team is wrestling with the sealed class debate internally and I would like to simplify the debate down to a matter of design and get the performance myth off the debate agenda. Can anyone post ...
5
votes
2answers
99 views

Are private classes being sealed at compilation?

Assume the following: we have class B, which is a private class nested inside class A. There isn't any class inheriting from class B. The question is: will the compiler automatically mark class B as ...
3
votes
2answers
107 views

Why PasswordBox is Sealed in Silverlight?

A simple question, but google has no answer on that! I'm hitting a wall today, because the PasswordBox in Silverlight is Sealed. I have no idea why they do that. Is somebody have an idea on that?
2
votes
5answers
302 views

Sealed property of abstract class

Please consider the following design: public interface IBook { string Author { get; set; } string Title { get; set; } } abstract class ...
2
votes
1answer
108 views

Unit testing a third party API with sealed concrete classes

just started TDD and all was going well until I hit this brick wall. I am writing a facade around a third party API. The API is quite nice in that everything is accessed via interfaces, so is easily ...
2
votes
3answers
180 views

How is this virtual method call faster than the sealed method call?

I am doing some tinkering on the performance of virtual vs sealed members. Below is my test code. The output is virtual total 3166ms per call virtual 3.166ns sealed total 3931ms per call sealed ...
2
votes
5answers
467 views

How can I XML Serialize a Sealed Class with No Parameterless Constructor?

I'm currently using an XMLSerializer to serialize a list of a class of my own. One of the class's properties is an instance of a sealed class that does not have a parameterless constructor, so the ...
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() { ...
1
vote
2answers
216 views

Is it possible to use AutoMapper to wrap methods?

I have two classes: public class TestClass1 { public int TestInt { get; set; } public void TestMethod() { // Do something } } public class TestClass2 { public int ...
0
votes
2answers
432 views

Abstract Sealed Classes

Just a small question about c++/cli. Abstract classes have abstract methods to be implemented by derived classes, sealed classes dont allow inheritance. So why we have some classes in .NET base class ...