Click here to Skip to main content
15,792,999 members
Home / Discussions / C#
   

C#

 
GeneralInheriting from DirectX problem ! Pin
pahluwalia8-Jan-04 3:49
pahluwalia8-Jan-04 3:49 
GeneralRe: Inheriting from DirectX problem ! Pin
obelisk298-Jan-04 5:17
obelisk298-Jan-04 5:17 
GeneralRe: Inheriting from DirectX problem ! Pin
pahluwalia8-Jan-04 6:51
pahluwalia8-Jan-04 6:51 
GeneralRe: Inheriting from DirectX problem ! Pin
Kentamanos8-Jan-04 6:52
Kentamanos8-Jan-04 6:52 
GeneralRe: Inheriting from DirectX problem ! Pin
leppie8-Jan-04 7:13
leppie8-Jan-04 7:13 
GeneralRe: Inheriting from DirectX problem ! Pin
Heath Stewart8-Jan-04 7:14
protectorHeath Stewart8-Jan-04 7:14 
GeneralRe: Inheriting from DirectX problem ! Pin
Kentamanos8-Jan-04 7:24
Kentamanos8-Jan-04 7:24 
GeneralRe: Inheriting from DirectX problem ! Pin
leppie8-Jan-04 8:33
leppie8-Jan-04 8:33 
Exactly what I mention is not possible at all!

Compiler Error CS0553'conversion routine' : user defined conversion to/from base class
User-defined conversions to values of a base class are not allowed; you do not need such an operator.
The following sample generates CS0553:

// CS0553.cs
namespace x
{   
  public class ii   
  {   
  }   
  public class a : ii   
  {      // delete the conversion routine to resolve CS0553      
    public static implicit operator ii(a aa) // CS0553      
    {         
      return new ii();      
    }      
    public static void Main(){}
  }
}


leppie::AllocCPArticle("Zee blog");
Seen on my Campus BBS: Linux is free...coz no-one wants to pay for it.

GeneralRe: Inheriting from DirectX problem ! Pin
leppie8-Jan-04 9:14
leppie8-Jan-04 9:14 
GeneralRe: Inheriting from DirectX problem ! Pin
pahluwalia8-Jan-04 9:02
pahluwalia8-Jan-04 9:02 
GeneralRe: Inheriting from DirectX problem ! Pin
Kentamanos8-Jan-04 10:03
Kentamanos8-Jan-04 10:03 
GeneralRe: Inheriting from DirectX problem ! Pin
pahluwalia9-Jan-04 3:45
pahluwalia9-Jan-04 3:45 
GeneralMultiple table data in dataGrid Pin
Hayat8-Jan-04 3:41
Hayat8-Jan-04 3:41 
GeneralRe: Multiple table data in dataGrid Pin
Mazdak8-Jan-04 4:18
Mazdak8-Jan-04 4:18 
GeneralRe: Multiple table data in dataGrid Pin
Heath Stewart8-Jan-04 7:04
protectorHeath Stewart8-Jan-04 7:04 
GeneralInexplicable errors on forms. Pin
Martin Cross8-Jan-04 1:39
Martin Cross8-Jan-04 1:39 
GeneralRe: Inexplicable errors on forms. Pin
Aryo Handono8-Jan-04 2:14
professionalAryo Handono8-Jan-04 2:14 
GeneralRe: Inexplicable errors on forms. Pin
Heath Stewart8-Jan-04 6:56
protectorHeath Stewart8-Jan-04 6:56 
GeneralRe: Inexplicable errors on forms. Pin
Martin Cross8-Jan-04 23:38
Martin Cross8-Jan-04 23:38 
GeneralRe: Inexplicable errors on forms. Pin
Niels Penneman8-Jan-04 11:50
Niels Penneman8-Jan-04 11:50 
GeneralDisposing Audio after finished playing Pin
thomasa8-Jan-04 1:19
thomasa8-Jan-04 1:19 
GeneralRe: Disposing Audio after finished playing Pin
Heath Stewart8-Jan-04 6:51
protectorHeath Stewart8-Jan-04 6:51 
GeneralDeveloping a Client/Server application Pin
Kingvest8-Jan-04 0:49
Kingvest8-Jan-04 0:49 
GeneralRe: Developing a Client/Server application Pin
Guillermo Rivero8-Jan-04 6:02
Guillermo Rivero8-Jan-04 6:02 
GeneralRe: Developing a Client/Server application Pin
Kingvest8-Jan-04 6:18
Kingvest8-Jan-04 6:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.