Somebody told me that the 'Image' class sets the c'tor as internal, so only
the classes inside System.Drawing dll assembly can inherit from 'Image',
such as 'Bitmap'.
If this is true, there is no way to inherit from System.Drawing.Image?
Sorry if the question is not clear, it's because I'm a beginner with C#.
:-)
J <krazou@yahoo_co_kr> wrote in
news:Xns97FFA2821C50Bkrazouyahoo@207.46.248.16:
> I tried to inherit 'Shot' class from 'Image' class, only to fail.
> It gives me the CS0122 error, which says that it can't access
> 'System.Drawing.Image.Image()'.
>
> What am I missing?
>
>
>
> using System;
>
> namespace Vol
> {
> public class Shot : System.Drawing.Image
> {
> public Shot() // CS0122 - can't access
> System.Drawing.Image.Image() {
> }
> }
> }
|