Click here to Skip to main content
15,903,743 members
Home / Discussions / C#
   

C#

 
GeneralRe: Struct and pointers Pin
PeterJensen23-Jan-03 7:17
PeterJensen23-Jan-03 7:17 
GeneralRe: Struct and pointers Pin
leppie23-Jan-03 8:10
leppie23-Jan-03 8:10 
GeneralRe: Struct and pointers Pin
PeterJensen23-Jan-03 8:39
PeterJensen23-Jan-03 8:39 
Generalturning on console... Pin
jtmtv1823-Jan-03 0:05
jtmtv1823-Jan-03 0:05 
GeneralRe: turning on console... Pin
Philip Fitzsimons23-Jan-03 2:51
Philip Fitzsimons23-Jan-03 2:51 
GeneralRe: turning on console... Pin
jtmtv1823-Jan-03 6:26
jtmtv1823-Jan-03 6:26 
GeneralParsing Word document in C# Pin
Vin Kamat22-Jan-03 23:45
Vin Kamat22-Jan-03 23:45 
GeneralRe: Parsing Word document in C# Pin
Stephane Rodriguez.23-Jan-03 2:35
Stephane Rodriguez.23-Jan-03 2:35 
GeneralC# integration with FLEX Pin
anjana22-Jan-03 22:53
anjana22-Jan-03 22:53 
Generaldifference between Web and win form controls Pin
Member 58691322-Jan-03 21:58
Member 58691322-Jan-03 21:58 
GeneralRe: difference between Web and win form controls Pin
Stephane Rodriguez.23-Jan-03 2:01
Stephane Rodriguez.23-Jan-03 2:01 
GeneralRe: difference between Web and win form controls Pin
TigerNinja_23-Jan-03 7:20
TigerNinja_23-Jan-03 7:20 
GeneralRe: difference between Web and win form controls Pin
Stephane Rodriguez.23-Jan-03 8:24
Stephane Rodriguez.23-Jan-03 8:24 
GeneralMessageLoop... Pin
gekoscan22-Jan-03 21:31
gekoscan22-Jan-03 21:31 
GeneralRe: MessageLoop... Pin
Stephane Rodriguez.23-Jan-03 2:36
Stephane Rodriguez.23-Jan-03 2:36 
GeneralRe: MessageLoop... Pin
David Stone23-Jan-03 7:02
sitebuilderDavid Stone23-Jan-03 7:02 
QuestionProperties and objects (question about speed)? Pin
jinz22-Jan-03 20:44
jinz22-Jan-03 20:44 
Are properties slow or fast to use? What I mean is: Isn't

class A
{
int i;
A()
{}

public int I
{
get { return i; }
set { i = value; }
}
}

A a = new A();
a.I = 5;
int b = a.I;

// slower than:

class A
{
public int i;
A()
{}
}

A a = new A();
a.i = 5;
int b = a.i;

And another question: if a function is called 100x a second (or more) which creates/returns objects (structs and classes) as data, won't this have an impact on performance (for real time stuff - for example user input) ?
If it is not efficient, what optimizations are possible or how should it be done properly?


Thank you in advance and don't kill beginners for stupid questions Smile | :)
AnswerRe: Properties and objects (question about speed)? Pin
Daniel Turini23-Jan-03 1:13
Daniel Turini23-Jan-03 1:13 
QuestionSSH From C# classes? Pin
cwkingjr22-Jan-03 17:57
cwkingjr22-Jan-03 17:57 
AnswerRe: SSH From C# classes? Pin
David Stone22-Jan-03 18:33
sitebuilderDavid Stone22-Jan-03 18:33 
GeneralC# arrays Pin
Nick Blumhardt22-Jan-03 17:26
Nick Blumhardt22-Jan-03 17:26 
GeneralRe: C# arrays Pin
Nick Blumhardt22-Jan-03 20:36
Nick Blumhardt22-Jan-03 20:36 
GeneralWMI and C# Pin
Bo Hunter22-Jan-03 14:29
Bo Hunter22-Jan-03 14:29 
GeneralRe: WMI and C# Pin
David Stone22-Jan-03 18:38
sitebuilderDavid Stone22-Jan-03 18:38 
GeneralRe: WMI and C# Pin
thematt23-Jan-03 11:02
thematt23-Jan-03 11:02 

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.