|
 |
aspdotnet_website_programming thread: don't understand sealed class
Message #1 by <kd@k...> on Tue, 24 Sep 2002 09:47:11 -0500
|
|
in ch. 5, pg 170....the class declaration contains "sealed"
.....I have searched all my c# and asp.net books and can't find
a reference to "sealed" anywhere....can someone explain it to me?
public sealed class User : Wrox.WebModules.Business.BizObject
Message #2 by kd@k... on Tue, 24 Sep 2002 17:02:27
|
|
Nevermind....I found it in the MSDN Library....sorry about that
> in ch. 5, pg 170....the class declaration contains "sealed"
.....I have searched all my c# and asp.net books and can't find
a reference to "sealed" anywhere....can someone explain it to me?
public sealed class User : Wrox.WebModules.Business.BizObject
Message #3 by "Robert Corvus \(480\) 213-9398" <Robert@C...> on Tue, 24 Sep 2002 10:42:32 -0700
|
|
What does 'sealed' mean? I couldn't find it and I'm curious.
Robert
-----Original Message-----
From: kd@k... [mailto:kd@k...]
Sent: Tuesday, September 24, 2002 5:02 PM
To: Website Programming with ASP.NET
Subject: [aspdotnet_website_programming] Re: don't understand sealed
class
Nevermind....I found it in the MSDN Library....sorry about that
> in ch. 5, pg 170....the class declaration contains "sealed"
.....I have searched all my c# and asp.net books and can't find a
reference to "sealed" anywhere....can someone explain it to me?
public sealed class User : Wrox.WebModules.Business.BizObject
Message #4 by <kd@k...> on Tue, 24 Sep 2002 12:59:11 -0500
|
|
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/csref/html/
vclrfSealed.asp
a sealed class can't be inherited.....prevents accidental inheritence of a
class.....
----- Original Message -----
From: "Robert Corvus (480) 213-9398" <Robert@C...>
To: "Website Programming with ASP.NET"
<aspdotnet_website_programming@p...>
Sent: Tuesday, September 24, 2002 12:42 PM
Subject: [aspdotnet_website_programming] Re: don't understand sealed class
> What does 'sealed' mean? I couldn't find it and I'm curious.
>
> Robert
>
> -----Original Message-----
> From: kd@k... [mailto:kd@k...]
> Sent: Tuesday, September 24, 2002 5:02 PM
> To: Website Programming with ASP.NET
> Subject: [aspdotnet_website_programming] Re: don't understand sealed
> class
>
>
> Nevermind....I found it in the MSDN Library....sorry about that
>
>
> > in ch. 5, pg 170....the class declaration contains "sealed"
> .....I have searched all my c# and asp.net books and can't find a
> reference to "sealed" anywhere....can someone explain it to me?
>
> public sealed class User : Wrox.WebModules.Business.BizObject
>
>
>
|
|
 |