Click here to Skip to main content
15,893,588 members
Home / Discussions / C#
   

C#

 
GeneralRe: Learning C# through exercises Pin
jeramyRR19-Apr-12 8:33
jeramyRR19-Apr-12 8:33 
AnswerRe: Learning C# through exercises Pin
VJ Reddy12-Apr-12 21:03
VJ Reddy12-Apr-12 21:03 
GeneralRe: Learning C# through exercises Pin
dybs13-Apr-12 11:20
dybs13-Apr-12 11:20 
GeneralRe: Learning C# through exercises Pin
VJ Reddy13-Apr-12 13:50
VJ Reddy13-Apr-12 13:50 
QuestionRe: Learning C# through exercises Pin
Anurag Sarkar14-Apr-12 19:52
Anurag Sarkar14-Apr-12 19:52 
AnswerRe: Learning C# through exercises Pin
VJ Reddy14-Apr-12 19:54
VJ Reddy14-Apr-12 19:54 
AnswerRe: Learning C# through exercises Pin
Richard MacCutchan12-Apr-12 21:22
mveRichard MacCutchan12-Apr-12 21:22 
AnswerRe: Learning C# through exercises Pin
V.12-Apr-12 21:47
professionalV.12-Apr-12 21:47 
AnswerRe: Learning C# through exercises Pin
BobJanova12-Apr-12 23:42
BobJanova12-Apr-12 23:42 
GeneralRe: Learning C# through exercises Pin
jeramyRR13-Apr-12 6:05
jeramyRR13-Apr-12 6:05 
AnswerRe: Learning C# through exercises Pin
Tim Groven13-Apr-12 10:54
Tim Groven13-Apr-12 10:54 
AnswerRe: Learning C# through exercises Pin
cjb11015-Apr-12 23:01
cjb11015-Apr-12 23:01 
QuestionGroup in listview C# Pin
nhanlaptrinh12-Apr-12 8:29
nhanlaptrinh12-Apr-12 8:29 
AnswerRe: Group in listview C# Pin
Mycroft Holmes12-Apr-12 12:42
professionalMycroft Holmes12-Apr-12 12:42 
GeneralRe: Group in listview C# Pin
nhanlaptrinh14-Apr-12 9:03
nhanlaptrinh14-Apr-12 9:03 
QuestionExtract ConnectionString from App.Config Pin
Jassim Rahma12-Apr-12 8:00
Jassim Rahma12-Apr-12 8:00 
AnswerRe: Extract ConnectionString from App.Config Pin
PIEBALDconsult12-Apr-12 8:08
mvePIEBALDconsult12-Apr-12 8:08 
AnswerRe: Extract ConnectionString from App.Config Pin
ZurdoDev12-Apr-12 8:56
professionalZurdoDev12-Apr-12 8:56 
GeneralRe: Extract ConnectionString from App.Config Pin
PIEBALDconsult12-Apr-12 12:08
mvePIEBALDconsult12-Apr-12 12:08 
AnswerRe: Extract ConnectionString from App.Config Pin
Bernhard Hiller12-Apr-12 21:06
Bernhard Hiller12-Apr-12 21:06 
QuestionMultiple Inhertance solution Pin
zeeShan anSari12-Apr-12 3:54
zeeShan anSari12-Apr-12 3:54 
Hi All,
let's suppose

C#
class A
{
int iA1{ get; set; }
int iA2{ get; set; }
}
class B
{
int iB1{ get; set; }
int iB2{ get; set; }
}
class C
{
int iC1{ get; set; }
int iC2{ get; set; }
}


Now i want make type ABC1 for List<<ABC1> and this ABC1 contain iA1,iB1,iC1 and iC2.
But bellow code is not working...plz suggest me, i just want List.

C#
public interface IABC1
 {
     A a { get; set; }
     B b { get; set; }
     C c { get; set; }
 }
public class ABC1:IABC1
{
 #region IABC1 Members
....
...
}



Thanks,
AnswerRe: Multiple Inhertance solution Pin
zeeShan anSari12-Apr-12 4:06
zeeShan anSari12-Apr-12 4:06 
GeneralRe: Multiple Inhertance solution Pin
PIEBALDconsult12-Apr-12 4:50
mvePIEBALDconsult12-Apr-12 4:50 
GeneralRe: Multiple Inhertance solution Pin
BobJanova12-Apr-12 5:01
BobJanova12-Apr-12 5:01 
GeneralRe: Multiple Inhertance solution Pin
BobJanova12-Apr-12 23:31
BobJanova12-Apr-12 23:31 

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.