The **sealed** modifier keyword prevents a C# class from being inherited. Similar to the **final** keyword in Java.

learn more… | top users | synonyms

1
vote
2answers
78 views

Add methods to a dll class

Here is my problem : I have a dll containing some mathematical functions, the code looks that way: internal sealed class TemplateSourceCodeClass { public const string ...
1
vote
2answers
36 views

Can't use external classes in sealed partial class

I am new to using C# and am attempting to build a simple windows store app right now. However I can't figure out why ArrayList cannot be found. here is my code: using System; using ...
2
votes
2answers
85 views

How to workaround impossible inheritance from sealed class?

Today im working in WPF. I tried to inherit from System.Windows.Shapes.Line class, like this: class MyLine : System.Windows.Shapes.Line { public Ln() { this.Stroke = Brushes.Black; ...
14
votes
5answers
411 views

What is the difference between a class having private constructor and a sealed class having private constructor?

Is there any difference between A and B? Class A has private constructor: class A { private A() { } } Class B is sealed and has a private constructor: sealed class B { private B() ...
1
vote
1answer
39 views

Python's equivalent of .Net's sealed class

Does python have anything similar to a sealed class? I believe it's also known as final class, in java. In other words, in python, can we mark a class so it can never be inherited or expanded upon? ...
0
votes
5answers
200 views

C# sealed class vs. no public constructor

I am currently trying to get deeper into the .NET framework. I ran across an error while I was wondering if I could create two CommandManagers: Cannot create an instance of CommandManager because it ...
1
vote
1answer
205 views

Cannot be sealed because it's not an override

I've the following class: namespace Warnings { public abstract class BaseWarningIntField : IWarningInnerDataField { public string PropName; public string HeaderCaption; ...
0
votes
1answer
112 views

return values from a sealed Partial class

How can i return a value from a a function in a Sealed Partial class? I use the usercontrols like this. I have a usercontrol that calls another one that is a list. When i selected a row from this ...
12
votes
2answers
177 views

mockito vs sealed packages

I'm working on a project with heavy security constraints. A requirement is to seal our jars. Since we sealed jars, a lot of our junit-tests failed with the following error : ...
0
votes
1answer
33 views

Extending sealed class

I'm developing Windows Store application using javascript. I also have WinRT library for client-server interactions. Client receives from server a custom class User, which is sealed, as it's required ...
0
votes
0answers
58 views

Virtual methods, interfaces, “sealed by default” and facilitating mocking [closed]

So, I seen a lot of different opinions in a lot of places about these topics. So, let me list my specific scenario I have an API which should be easily inherited and extended I don't foresee ...
2
votes
1answer
182 views

TypeConverter Attribute for Third Party Classes

When creating a class, a TypeConverter attribute can be applied to it s.t. using TypeDescriptor.GetConverter(typeof(T)) return the custom type converter. For instance: ...
1
vote
2answers
60 views

Sealed keyword in association with override

Is it always necessary to follow the sealed keyword with override in the signature of a method like the below code: public sealed override string Method1(){.....} I mean, if I want to "seal" the ...
0
votes
1answer
270 views

accessing an instantiated sealed class public member

i am trying to instatiate a public sealed class in my program, the thing is, ...as i am still fresh C# .net not-yet Developer , i find this issue a little difficult ... As for the problem in ...
7
votes
2answers
614 views

Iteration over a sealed trait in Scala?

I just wanted to know if it is possible to iterate over a sealed trait in Scala? If not, why is it not possible? Since the trait is sealed it should be possible no? What I want to do is something ...
0
votes
1answer
67 views

explicitly new a sealed method

Let's say I have this code: interface class IFoo { public: void foo(); }; ref class FooBase : public IFoo { public: virtual void foo() sealed = IFoo::foo { } }; I need to define a new ...
2
votes
3answers
144 views

How to add a property to the sealed class Arc

how can I add two new properties to the sealed Arc class. I want to extend the class with a double property to hold a double value and a string property to hold the name of the object. My first try ...
5
votes
0answers
58 views

does the sealed keyword optimize on instances that have an inheritance hierarchy? [duplicate]

Possible Duplicate: How does compiler optimize virtual methods implemented by a sealed class If I have two classes: public class Parent { public virtual void Foo() { /* do stuff */ } } ...
4
votes
3answers
184 views

Why singleton class should be sealed?

I want to know the why a singleton class should be sealed. If we are giving the constructor as private we can prevent the class to be derived right?.. Below i'm pasting few lines from MSDN. Please ...
0
votes
1answer
431 views

How to create a sample java.lang.SecurityException: sealing violation: package .. is sealed

we've an issue with a long-running Java process suddenly spitting out java.lang.SecurityException: sealing violation: package .. is sealed after overwriting a sealed jar while the JVM is running. I ...
14
votes
3answers
3k views

What is a sealed trait?

Sealed classes are described in 'Programming in Scala', but sealed traits are not. Where can I find more information about a sealed trait? I would like to know, if a sealed trait is the same as a ...
0
votes
3answers
97 views

Why does 'sealed' affect the implementation of IDisposable?

After reading the answer here, I decided to mark my class as sealed in order to simplify the IDisposable implementation. Why does sealed affect the implementation of IDisposable (e.g. ...
1
vote
1answer
236 views

Reflection not extracting values from: Sealed Class having a property, which is object of another sealed class.

I am recrusively evaluating properties via reflection using object.GetType().GetProperty(string propertyName). This is working fine in case the obj is of sealed class but having property as an object ...
0
votes
3answers
459 views

Virtual methods without body in a sealed class [closed]

When I try to run the following code it errors. private sealed class ReqHandler { public ReqHandler(object @object, IntPtr method); public virtual IAsyncResult BeginInvoke(object[] args, ...
6
votes
2answers
514 views

Why exposed types must be sealed for WinMD/WinRT components?

VS compiler does not allow to create sealed exposed types for WINMD type library. Why is this restriction placed ? (I know about sealed types advantages, my question is with respect to Win RT ...
2
votes
2answers
869 views

c# sealed vs java final

Would anybody please tell me as the reason the following use of sealed word does not compile. whereas, if I replace sealed with final and compile in jvm, it works. private sealed int compInt = ...
8
votes
8answers
469 views

Why are interfaces not able to be marked as sealed?

public sealed interface IMyInterface { } Gives "The modified 'sealed' is not valid for this item" I can understand in some ways that an interface must be descendable otherwise the class cannot ...
3
votes
2answers
352 views

Checking a member exists, possibly in a base class, VS2005/08 version

In Checking a member exists, possibly in a base class, C++11 version, we developed a C++11 version of the classical member-checking type-trait from SFINAE to check for inherited member functions that ...
5
votes
4answers
370 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 ...
1
vote
1answer
176 views

Sealing jar files in IntelliJ

How can be jar files sealed using IntelliJ idea? I believe it is made with jar cmf command, but how can it be achieved in IntelliJ?
0
votes
0answers
240 views

Specializing Generic Sealed Types. Part 1

Suppose I want a generic abstract tree type and then want to specialize it to create specific types of trees. For example I might have: sealed abstract class AST[T <: AST[T]] { def child : ...
0
votes
3answers
498 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 ...
5
votes
3answers
1k views

What are the 'ref' and 'sealed' keywords in C++?

I've just seen some (presumably) C++ code which sports two "keywords" unknown to me (I'm assuming keywords but, since I have no context, they may be simple #define things). They also don't seem to ...
5
votes
1answer
2k views

Why do WinRT types have to be sealed?

In several places (e.g. "Creating Windows Runtime Components for JavaScript, in C# and Visual Basic" on MSDN), I've seen it specified that, if you write a class in .NET that you want to use from ...
4
votes
2answers
247 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
125 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 ...
1
vote
3answers
446 views

Is the sealed command c++ 0x or is it only microsoft who has it

Is the sealed command going to be in c++ 0x or is it only MS who use it?
0
votes
2answers
334 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 ...
6
votes
5answers
469 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 ...
1
vote
3answers
193 views

F#: Unable to inherit from List<'T> in F# interactive

> type XList<'T> (_collection : seq<'T>) = inherit List<'T> (_collection) member this.Add _item = if not <| this.Contains _item then base.Add ...
3
votes
5answers
1k views

Sealed property of abstract class

Please consider the following design: public interface IBook { string Author { get; set; } string Title { get; set; } } abstract class ...
5
votes
5answers
982 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
1answer
215 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 ...
0
votes
1answer
170 views

Establishing a known 1:1 relationship between a type and a unique value

Given that i have a kind of enumeration using a sealed trait and case objects representing the values, is it possible to enforce a mechanism to retrieve the single unique value for a given type, ...
0
votes
1answer
347 views

Why sealed and singleton? [duplicate]

Possible Duplicate: Purpose of final and sealed Hi all, When should we opt for designing a sealed class? When should we opt for designing a singleton class?
1
vote
2answers
352 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 ...
0
votes
1answer
153 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 ...
2
votes
1answer
260 views

Why is the ASP.NET ListItem class sealed?

I'm just curious. Why would the ASP.NET ListItem class need to be sealed?
19
votes
2answers
655 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". ...
3
votes
4answers
3k 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 2