Click here to Skip to main content
15,897,718 members
Home / Discussions / C#
   

C#

 
QuestionProcess.ProccessName coming up idle in seperate thread. Pin
Sunset Towers18-Oct-06 12:02
Sunset Towers18-Oct-06 12:02 
GeneralRe: Process.ProccessName coming up idle in seperate thread. [modified] Pin
Anthony Mushrow18-Oct-06 13:55
professionalAnthony Mushrow18-Oct-06 13:55 
AnswerRe: Process.ProccessName coming up idle in seperate thread. Pin
Anthony Mushrow18-Oct-06 14:24
professionalAnthony Mushrow18-Oct-06 14:24 
GeneralRe: Process.ProccessName coming up idle in seperate thread. Pin
Sunset Towers18-Oct-06 15:10
Sunset Towers18-Oct-06 15:10 
Questionmake a class property an array of an instantiated class? Pin
mmatteson18-Oct-06 11:56
mmatteson18-Oct-06 11:56 
AnswerRe: make a class property an array of an instantiated class? Pin
Christian Graus18-Oct-06 11:59
protectorChristian Graus18-Oct-06 11:59 
GeneralRe: make a class property an array of an instantiated class? Pin
mmatteson19-Oct-06 6:10
mmatteson19-Oct-06 6:10 
AnswerRe: make a class property an array of an instantiated class? Pin
Andrew Rissing18-Oct-06 12:16
Andrew Rissing18-Oct-06 12:16 
Not really clear on what you're trying to do, but I'll take a stab at it.

The important thing to remember when trying to access an index is what is it returning me?

For instance, take a DataSet.

DataSet ds;

DataTable dt = ds.Tables[0]; // Gives you a DataTable (the first one in the dataset).
DataRow dr = ds.Tables[0].Rows[0]; // Gives you a DataRow (the first row, of the first table, in the data set).
object o = ds.Tables[0].Rows[0][0]; // Gives you an object (the value of the first column, in the first row, of the first table in the dataset).


So, you can continue to index off a property, as long as that property contains an index operation. For your case, you might need to create a 'Collection' class that simply holds a collection of items for you. Assuming I'm even close on what you're asking a question about. Cool | :cool:

Hope that helps.
GeneralRe: make a class property an array of an instantiated class? Pin
mmatteson18-Oct-06 16:32
mmatteson18-Oct-06 16:32 
QuestionGraphics Pin
Areff18-Oct-06 10:59
Areff18-Oct-06 10:59 
AnswerRe: Graphics Pin
Christian Graus18-Oct-06 11:03
protectorChristian Graus18-Oct-06 11:03 
GeneralRe: Graphics Pin
Areff18-Oct-06 11:12
Areff18-Oct-06 11:12 
GeneralRe: Graphics Pin
Christian Graus18-Oct-06 11:33
protectorChristian Graus18-Oct-06 11:33 
GeneralRe: Graphics Pin
V.19-Oct-06 4:51
professionalV.19-Oct-06 4:51 
AnswerRe: Graphics Pin
V.19-Oct-06 4:50
professionalV.19-Oct-06 4:50 
AnswerRe: Graphics Pin
Bekjong19-Oct-06 5:37
Bekjong19-Oct-06 5:37 
QuestionObjectDisposedException Pin
Yustme18-Oct-06 9:47
Yustme18-Oct-06 9:47 
AnswerRe: ObjectDisposedException Pin
Christian Graus18-Oct-06 10:02
protectorChristian Graus18-Oct-06 10:02 
GeneralRe: ObjectDisposedException Pin
Yustme18-Oct-06 10:23
Yustme18-Oct-06 10:23 
AnswerRe: ObjectDisposedException Pin
Le centriste19-Oct-06 4:23
Le centriste19-Oct-06 4:23 
QuestionPartial Classes - What's The Big Deal? Pin
#realJSOP18-Oct-06 9:22
professional#realJSOP18-Oct-06 9:22 
AnswerRe: Partial Classes - What's The Big Deal? Pin
Andrew Rissing18-Oct-06 9:27
Andrew Rissing18-Oct-06 9:27 
GeneralRe: Partial Classes - What's The Big Deal? Pin
Christian Graus18-Oct-06 10:04
protectorChristian Graus18-Oct-06 10:04 
GeneralRe: Partial Classes - What's The Big Deal? Pin
Andrew Rissing18-Oct-06 11:57
Andrew Rissing18-Oct-06 11:57 
GeneralRe: Partial Classes - What's The Big Deal? Pin
Christian Graus18-Oct-06 11:58
protectorChristian Graus18-Oct-06 11:58 

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.