<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://mail.logicwiki.co.uk/index.php?action=history&amp;feed=atom&amp;title=Sealed_Modifier</id>
		<title>Sealed Modifier - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://mail.logicwiki.co.uk/index.php?action=history&amp;feed=atom&amp;title=Sealed_Modifier"/>
		<link rel="alternate" type="text/html" href="https://mail.logicwiki.co.uk/index.php?title=Sealed_Modifier&amp;action=history"/>
		<updated>2026-07-03T05:56:37Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.26.2</generator>

	<entry>
		<id>https://mail.logicwiki.co.uk/index.php?title=Sealed_Modifier&amp;diff=1215&amp;oldid=prev</id>
		<title>AliIybar: Created page with &quot;Category:OOP Category:CSharp Category:Extreme Programming  Prevents derivation of classes or overriding of methods.  &lt;pre class=&quot;brush:csharp;&quot;&gt; public sealed clas...&quot;</title>
		<link rel="alternate" type="text/html" href="https://mail.logicwiki.co.uk/index.php?title=Sealed_Modifier&amp;diff=1215&amp;oldid=prev"/>
				<updated>2017-06-13T09:45:35Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;&lt;a href=&quot;/index.php?title=Category:OOP&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Category:OOP (page does not exist)&quot;&gt;Category:OOP&lt;/a&gt; &lt;a href=&quot;/index.php?title=Category:CSharp&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Category:CSharp (page does not exist)&quot;&gt;Category:CSharp&lt;/a&gt; &lt;a href=&quot;/index.php?title=Category:Extreme_Programming&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Category:Extreme Programming (page does not exist)&quot;&gt;Category:Extreme Programming&lt;/a&gt;  Prevents derivation of classes or overriding of methods.  &amp;lt;pre class=&amp;quot;brush:csharp;&amp;quot;&amp;gt; public sealed clas...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Category:OOP]]&lt;br /&gt;
[[Category:CSharp]]&lt;br /&gt;
[[Category:Extreme Programming]]&lt;br /&gt;
&lt;br /&gt;
Prevents derivation of classes or overriding of methods. &lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:csharp;&amp;quot;&amp;gt;&lt;br /&gt;
public sealed class Circle : Shape&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
you cannot derive a class from Circle&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:csharp;&amp;quot;&amp;gt;&lt;br /&gt;
public class Circle : Shape&lt;br /&gt;
{&lt;br /&gt;
  public sealed override void Draw()&lt;br /&gt;
  {&lt;br /&gt;
  .....&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
seal can be applied to only overriden methods. &lt;br /&gt;
=== Why ? ===&lt;br /&gt;
Sealed classes are slightly faster because of some run time optimizations. &lt;br /&gt;
&lt;br /&gt;
---------------&lt;br /&gt;
Related Subjects : [[interface]],  [[Polymorphism]], [[Abstract]]&lt;/div&gt;</summary>
		<author><name>AliIybar</name></author>	</entry>

	</feed>