Click here to Skip to main content
15,886,799 members
Home / Discussions / C#
   

C#

 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Anubhava Dimri14-Apr-11 1:39
Anubhava Dimri14-Apr-11 1:39 
AnswerRe: Which is more usefull Abstract Class or Interface and Why? [modified] Pin
Pete O'Hanlon14-Apr-11 1:46
mvePete O'Hanlon14-Apr-11 1:46 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
David198714-Apr-11 2:12
David198714-Apr-11 2:12 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Pete O'Hanlon14-Apr-11 2:19
mvePete O'Hanlon14-Apr-11 2:19 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Pete O'Hanlon14-Apr-11 2:24
mvePete O'Hanlon14-Apr-11 2:24 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
David198714-Apr-11 2:30
David198714-Apr-11 2:30 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Pete O'Hanlon14-Apr-11 2:42
mvePete O'Hanlon14-Apr-11 2:42 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Wayne Gaylard14-Apr-11 2:42
professionalWayne Gaylard14-Apr-11 2:42 
I tried this in CIL :

.assembly extern mscorlib
{
  .publickeytoken = (B7 7A 5C 56 19 34 E0 89)
  .ver 4:0:0:0
}

.assembly CILTypes
{
  .ver 1:0:0:0
}

.module CILTypes.dll

.namespace MyCompany
{
  .namespace MyNameSpace
  {
    .class public interface IMyInterface {}

    .class public MyBaseClass
    {
    }

    .class public MyAnotherBaseClass
    {
    }

    .class public MyDerivedClass
      extends MyCompany.MyNameSpace.MyBaseClass
      extends MyCompany.MyNameSpace.MyNotherBaseClass
      implements MyCompany.MyNameSpace.IMyInterface
    {
    }
  }
}


and the compiler throws this error

MyBaseClass.il(30) : error : syntax error at token 'extends' in : extends myCompany.MyNameSpace.MyBaseClass. So I guess it would be a restriction on all .Net languages.
...and I have extensive experience writing computer code, including OIC, BTW, BRB, IMHO, LMAO, ROFL, TTYL.....

GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Pete O'Hanlon14-Apr-11 2:45
mvePete O'Hanlon14-Apr-11 2:45 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Prasanta_Prince15-Apr-11 6:34
Prasanta_Prince15-Apr-11 6:34 
AnswerRe: Which is more usefull Abstract Class or Interface and Why? Pin
#realJSOP14-Apr-11 2:01
mve#realJSOP14-Apr-11 2:01 
AnswerRe: Which is more usefull Abstract Class or Interface and Why? Pin
PIEBALDconsult14-Apr-11 2:57
mvePIEBALDconsult14-Apr-11 2:57 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Luc Pattyn14-Apr-11 4:15
sitebuilderLuc Pattyn14-Apr-11 4:15 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Keith Barrow14-Apr-11 4:31
professionalKeith Barrow14-Apr-11 4:31 
AnswerRe: Which is more usefull Abstract Class or Interface and Why? Pin
Luc Pattyn14-Apr-11 4:17
sitebuilderLuc Pattyn14-Apr-11 4:17 
AnswerRe: Which is more usefull Abstract Class or Interface and Why? Pin
Keith Barrow14-Apr-11 4:29
professionalKeith Barrow14-Apr-11 4:29 
GeneralRe: Which is more usefull Abstract Class or Interface and Why? Pin
Pete O'Hanlon14-Apr-11 5:28
mvePete O'Hanlon14-Apr-11 5:28 
QuestionLinkedList<T> since .NET 2 [modified] Pin
devvvy13-Apr-11 15:55
devvvy13-Apr-11 15:55 
AnswerRe: LinkedList since .NET 2 Pin
OriginalGriff14-Apr-11 0:10
mveOriginalGriff14-Apr-11 0:10 
GeneralRe: LinkedList since .NET 2 Pin
devvvy14-Apr-11 22:59
devvvy14-Apr-11 22:59 
GeneralRe: LinkedList since .NET 2 Pin
OriginalGriff14-Apr-11 23:07
mveOriginalGriff14-Apr-11 23:07 
GeneralRe: LinkedList since .NET 2 Pin
devvvy14-Apr-11 23:13
devvvy14-Apr-11 23:13 
GeneralRe: LinkedList since .NET 2 Pin
OriginalGriff14-Apr-11 23:28
mveOriginalGriff14-Apr-11 23:28 
GeneralRe: LinkedList since .NET 2 Pin
devvvy14-Apr-11 23:38
devvvy14-Apr-11 23:38 
GeneralRe: LinkedList since .NET 2 Pin
David198714-Apr-11 0:35
David198714-Apr-11 0:35 

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.