Click here to Skip to main content
15,923,789 members
Home / Discussions / C#
   

C#

 
AnswerRe: Loading a class from DLL at run-time Pin
Stefan Troschuetz25-Mar-06 4:09
Stefan Troschuetz25-Mar-06 4:09 
GeneralRe: Loading a class from DLL at run-time Pin
hhrafn25-Mar-06 4:43
hhrafn25-Mar-06 4:43 
QuestionSuppressing XML comments warning? Pin
Dominik Reichl25-Mar-06 3:27
Dominik Reichl25-Mar-06 3:27 
AnswerRe: Suppressing XML comments warning? Pin
leppie25-Mar-06 4:23
leppie25-Mar-06 4:23 
QuestionRe: Suppressing XML comments warning? Pin
Dominik Reichl25-Mar-06 4:32
Dominik Reichl25-Mar-06 4:32 
AnswerRe: Suppressing XML comments warning? Pin
Nicholas Butler25-Mar-06 4:57
sitebuilderNicholas Butler25-Mar-06 4:57 
GeneralRe: Suppressing XML comments warning? Pin
Dominik Reichl25-Mar-06 5:21
Dominik Reichl25-Mar-06 5:21 
Questionproblem with delegates and events Pin
abdelhameed8125-Mar-06 3:24
abdelhameed8125-Mar-06 3:24 
AnswerRe: problem with delegates and events Pin
Stefan Troschuetz25-Mar-06 3:57
Stefan Troschuetz25-Mar-06 3:57 
Questionextracting ISO file Pin
mohdmeraj25-Mar-06 2:01
mohdmeraj25-Mar-06 2:01 
Questionhow to create virtual drive in c# Pin
mohdmeraj25-Mar-06 1:59
mohdmeraj25-Mar-06 1:59 
QuestionPerformanceCounter won't work Pin
polisen25-Mar-06 1:05
polisen25-Mar-06 1:05 
Questionlistview and image Pin
yosba22125-Mar-06 0:00
yosba22125-Mar-06 0:00 
QuestionVoice chat Pin
deepthi wilson24-Mar-06 23:45
deepthi wilson24-Mar-06 23:45 
AnswerRe: Voice chat Pin
RizwanSharp25-Mar-06 4:29
RizwanSharp25-Mar-06 4:29 
GeneralRe: Voice chat Pin
deepthi wilson26-Mar-06 17:06
deepthi wilson26-Mar-06 17:06 
QuestionHow do I list Drive informations of a remote computer Pin
deepthi wilson24-Mar-06 23:39
deepthi wilson24-Mar-06 23:39 
AnswerRe: How do I list Drive informations of a remote computer Pin
RizwanSharp25-Mar-06 3:29
RizwanSharp25-Mar-06 3:29 
QuestionArrays in a class definition Pin
IceWater4224-Mar-06 23:28
IceWater4224-Mar-06 23:28 
AnswerRe: Arrays in a class definition Pin
Guffa25-Mar-06 0:21
Guffa25-Mar-06 0:21 
GeneralRe: Arrays in a class definition Pin
IceWater4225-Mar-06 4:30
IceWater4225-Mar-06 4:30 
GeneralRe: Arrays in a class definition Pin
kasik25-Mar-06 6:37
kasik25-Mar-06 6:37 
GeneralRe: Arrays in a class definition Pin
IceWater426-Apr-06 19:18
IceWater426-Apr-06 19:18 
GeneralRe: Arrays in a class definition Pin
kasik7-Apr-06 5:51
kasik7-Apr-06 5:51 
That code block is there so that you can access myClass as though it was an array itself. It means that if you create an instance of myClass like so
myClass foo = new myClass();
then you can access your _number array in two ways. Like this...
double firstElement = foo.number[0];
and also like this...
double firstElement = foo[0];
The last way is only allowed because of the 'public double this[int index]' accessor.

Glad I could help Smile | :)

Cheers,
Will H
QuestionDial a number using C# Pin
mrkeivan24-Mar-06 23:12
mrkeivan24-Mar-06 23:12 

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.