Click here to Skip to main content
15,922,696 members
Home / Discussions / C#
   

C#

 
AnswerRe: Getting the names of files have extension of mp3 from filesystem?? Pin
omegazafer28-Nov-07 12:41
omegazafer28-Nov-07 12:41 
QuestionIdentifier Expected Pin
murtle328-Nov-07 11:31
murtle328-Nov-07 11:31 
AnswerRe: Identifier Expected Pin
Luc Pattyn28-Nov-07 11:38
sitebuilderLuc Pattyn28-Nov-07 11:38 
GeneralRe: Identifier Expected Pin
murtle328-Nov-07 12:00
murtle328-Nov-07 12:00 
GeneralRe: Identifier Expected Pin
Luc Pattyn28-Nov-07 12:21
sitebuilderLuc Pattyn28-Nov-07 12:21 
AnswerRe: Identifier Expected Pin
Jared Bienz [MSFT]28-Nov-07 12:08
Jared Bienz [MSFT]28-Nov-07 12:08 
GeneralRe: Identifier Expected Pin
murtle328-Nov-07 12:16
murtle328-Nov-07 12:16 
GeneralRe: Identifier Expected Pin
Jared Bienz [MSFT]28-Nov-07 12:19
Jared Bienz [MSFT]28-Nov-07 12:19 
JokeRe: Identifier Expected Pin
Pete O'Hanlon28-Nov-07 22:16
mvePete O'Hanlon28-Nov-07 22:16 
GeneralRe: Identifier Expected Pin
Luc Pattyn28-Nov-07 22:40
sitebuilderLuc Pattyn28-Nov-07 22:40 
GeneralRe: Identifier Expected Pin
Pete O'Hanlon28-Nov-07 23:11
mvePete O'Hanlon28-Nov-07 23:11 
GeneralRe: Identifier Expected Pin
Anthony Mushrow28-Nov-07 12:19
professionalAnthony Mushrow28-Nov-07 12:19 
GeneralRe: Identifier Expected Pin
Jared Bienz [MSFT]28-Nov-07 12:37
Jared Bienz [MSFT]28-Nov-07 12:37 
QuestionNew to Remoting (C#) Pin
mevivekdua28-Nov-07 10:57
mevivekdua28-Nov-07 10:57 
AnswerRe: New to Remoting (C#) Pin
Pete O'Hanlon28-Nov-07 11:08
mvePete O'Hanlon28-Nov-07 11:08 
GeneralRe: New to Remoting (C#) Pin
Jared Bienz [MSFT]28-Nov-07 11:33
Jared Bienz [MSFT]28-Nov-07 11:33 
GeneralRe: New to Remoting (C#) Pin
Pete O'Hanlon28-Nov-07 21:53
mvePete O'Hanlon28-Nov-07 21:53 
AnswerRe: New to Remoting (C#) Pin
Paul Conrad28-Nov-07 12:32
professionalPaul Conrad28-Nov-07 12:32 
QuestiondialogBox performClick itself Pin
gizmokaka28-Nov-07 10:15
gizmokaka28-Nov-07 10:15 
AnswerRe: dialogBox performClick itself Pin
Anthony Mushrow28-Nov-07 10:35
professionalAnthony Mushrow28-Nov-07 10:35 
GeneralRe: dialogBox performClick itself Pin
gizmokaka28-Nov-07 11:02
gizmokaka28-Nov-07 11:02 
QuestionInheritance on ListViewSubItem, BackColor Pin
T.Willey28-Nov-07 8:04
T.Willey28-Nov-07 8:04 
AnswerRe: Inheritance on ListViewSubItem, BackColor Pin
led mike28-Nov-07 10:00
led mike28-Nov-07 10:00 
GeneralRe: Inheritance on ListViewSubItem, BackColor Pin
T.Willey28-Nov-07 10:57
T.Willey28-Nov-07 10:57 
QuestionA container for jenerics Pin
feod00728-Nov-07 7:58
feod00728-Nov-07 7:58 
I have 2 classes

class Attribute<t>
{
string attributeID;
T[] values;
}

When instantiated, it holds several int's, decimals or strings

2nd class should hold several DIFFERENT Attributes. Here I am getting problem:

class Node
{
ArrayList attribArray;

AddAttribute(Attribute<t> inAttrib)
{ attribArray.Add(inAttrib;}
}

It compiles, but I cannot find a way to get stored Attributes
runtime
Example: I need a list of values from 2nd attribute in
my attribArray

Any thoughts, please

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.