Tagged Questions
19
votes
2answers
516 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".
...
12
votes
4answers
399 views
Should I seal all classes I know shouldn't ever be used as a base class?
Should I seal all classes I know shouldn't ever be used as a base class even when there are no tangible performance or security concerns, or is this just adding cruft?
11
votes
3answers
757 views
Should IEquatable<T>, IComparable<T> be implemented on non-sealed classes?
Anyone have any opinions on whether or not IEquatable<T> or IComparable<T> should generally require that T is sealed (if it's a class)?
This question occurred to me since I'm writing a ...
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 ...
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 ...
5
votes
3answers
77 views
'Protected member in sealed class' warning (a singleton class)
I've implemented a singleton class and keep getting the warning that a method I'm writing is a 'new protected member declared in a seal class.' It's not affecting the build but I don't really want to ...
5
votes
5answers
166 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
728 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
1answer
145 views
Can I make a type “sealed except for internal types”
I want to make a type that can be inherited from by types in the same assembly, but cannot be inherited from outside of the assembly. I do want the type to be visible outside of the assembly.
Is this ...
5
votes
5answers
894 views
Do the access levels and modifiers (private, sealed, etc) serve a security purpose in C#?
I've seen that you can manipulate private and internal members using reflection. I've also seen it said that a 'sealed' class is more secure that one that isn't.
Are the modifiers "public, ...
4
votes
5answers
2k views
Sealed method in C#
I am a newbie in C#.I am reading about Sealed keyword.I have got about sealed class.I have read a line about Sealed method where we can make Sealed method also.The line was (By declaring method as ...
4
votes
2answers
620 views
Why is String class final? [closed]
Possible Duplicate:
Why is String final in Java?
There are various moments in my programming life that I wished the the String class had not been final/sealed/NotInheritable.
What are the ...
4
votes
6answers
334 views
Change “ToString” for a sealed class
I have a class I am working with:
public sealed class WorkItemType
It's ToString is weak (Just shows Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemType).
Is there anyway to override ...
3
votes
2answers
106 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?
3
votes
2answers
71 views
Overriding a single interface method when the implementing class is sealed
This is probably easiest to explain with code (this is of course not the actual code but it has the same properties):
I have an interface that looks something like this:
public interface ...
3
votes
5answers
3k views
What is an internal sealed class in C#?
I was looking through some C# code for extending language support in VS2010 (Ook example). I saw some classes called internal sealed class
What do these do? Would one use them?
Thanks
2
votes
5answers
298 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
5answers
187 views
Sealing an interface after implementing it
I am working on a small project and I came across that problem.
The project output is a library containing an interface. I would like to implement that interface and seal the functions in it like ...
2
votes
5answers
462 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 ...
2
votes
3answers
79 views
How can I Databind to a Sealed Class?
I'm trying to bind some WPF controls to a sealed class provided to me. Because it is sealed, I cannot inherit from it to create a class that implements INotifyPropertyChanged. So I'm not sure how I ...
2
votes
2answers
1k views
Is there any functional difference between c# sealed and Java's final keyword?
In Java final applies to more than just a class.
So, I wonder: is there any functional difference between the two keywords?
Thank you, and sorry for a relatively noob question.
A quick Google ...
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
4answers
1k views
C#: Mocking and testing protected (or private) methods in sealed classes — approaches
I have a sealed class with protected methods whose behaviour I want to test. This makes it hard to test directly, and hard to mock.
It's in a codebase that wasn't developed in a TDD manner, and I'm ...
1
vote
4answers
191 views
Why is the sealed keyword not included in the list of access modifiers?
I think sealed should be included in the list of access modifiers in C# language. Can somebody tell the reason why it has been excluded?
1
vote
2answers
316 views
private constructor, subclassing and sealed
If one can prevent subclassing by declaring private constructor in the base class, why do we need "sealed" keyword? Is it so because CLI can optimize it better? maybe.
Thanks.
0
votes
3answers
68 views
How to have a sealed constructor?
I have a baseclass which has public contructors.
The baseclass is not sealed and is not abstract.
There is one constructor which I desire to be sealed. Is this possible?
My current attempt results ...
0
votes
2answers
120 views
How can tweaks to existing methods in an auto-generated C# partial class be persisted?
I am working with Visual Studio Coded UI Tests, and wish to persist tweaks to the generated code.
The code is generated as a partial class in UIMap.cs and UIMap.Designer.cs, and so I know one ...
0
votes
1answer
96 views
Why are attribute classes in Json.Net sealed?
Is there any spesific reason why e.g. JsonIgnoreAttribute is a sealed class? The reason I ask is because I'd like to make wrapper around the Json.Net calls, so that the assembly ref is in one assembly ...
0
votes
3answers
539 views
How does compiler optimize virtual methods implemented by a sealed class
I'm wondering how the following code is optimized. Specifically concerning virtual and direct calls. I have commented on how I think everything is optimized but those are just guesses.
public ...