Tagged Questions

7
votes
7answers
331 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: …
4
votes
9answers
407 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 cl …
3
votes
4answers
223 views

c++ sealed and interface

I noticed that there are sealed and interface keywords in C++. Is this just for CLR C++? If not, when were sealed and interface added to the C++ standard? Do they have the same mea …
2
votes
5answers
405 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 modifier …
2
votes
8answers
608 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 or …
2
votes
1answer
178 views

What part of LINQ to SQL’s provider model makes it impossible to extend it to support third party (read: Non-Microsoft) databases?

There were supposedly some classes in the LINQ to SQL provider model that were sealed--but I never really figured out exactly which classes need to be 'unsealed' in order to use it …
1
vote
1answer
57 views

What do the Items on the properties tab of MSVC++ mean?

I was playing around with my MSVC++ compiler, and the properties tab for my point class said: IsAbstract - false IsInjected - false IsManaged - false IsSealed - false IsTem …
0
votes
1answer
22 views

Sealed classes and Object Browser

While inspecting the the .net object model in the Object Browser window, I came across the lack of information on sealed classes. If for instance, one navigates to the mscorlib co …
0
votes
2answers
62 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
1answer
182 views

Mocking a method that returns a sealed class in RhinoMocks

Running this code: _foo = MockRepository.GenerateStub<IBar>(); _foo.Stub(x => x.Foo()).Return("sdf"); When public interface IBar { string Foo(); } public class Bar …
0
votes
3answers
195 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 gues …