Click here to Skip to main content
15,914,481 members
Home / Discussions / C#
   

C#

 
Questionbackups! [modified] Pin
Jaymahinda26-Jul-06 3:17
Jaymahinda26-Jul-06 3:17 
AnswerRe: backups! Pin
Ed.Poore26-Jul-06 4:45
Ed.Poore26-Jul-06 4:45 
Questionabstract class & interface Pin
lavate malllik26-Jul-06 1:51
lavate malllik26-Jul-06 1:51 
AnswerRe: abstract class & interface Pin
leppie26-Jul-06 1:54
leppie26-Jul-06 1:54 
AnswerRe: abstract class & interface Pin
stancrm26-Jul-06 1:54
stancrm26-Jul-06 1:54 
AnswerRe: abstract class & interface Pin
J4amieC26-Jul-06 2:47
J4amieC26-Jul-06 2:47 
QuestionWhen use static method and when use non static method ? Pin
CooperWu26-Jul-06 1:47
CooperWu26-Jul-06 1:47 
AnswerRe: When use static method and when use non static method ? Pin
Christian Graus26-Jul-06 2:07
protectorChristian Graus26-Jul-06 2:07 
Use static methods where you imagine the method would be called by someone who doesn't have an instance of your class. For example, a method that creates a class instance needs to be static. Often, a method is static because it's the only method a user is likely to call in a given instance, it doesn't require any state ( static objects are not tied to an instance, and so have no state beyond static variables ) and so a static method means they are not forced to create an instance just to call a method.


Christian Graus - Microsoft MVP - C++
Metal Musings - Rex and my new metal blog

GeneralRe: When use static method and when use non static method ? Pin
CooperWu26-Jul-06 2:30
CooperWu26-Jul-06 2:30 
AnswerRe: When use static method and when use non static method ? Pin
MatthysDT26-Jul-06 2:15
MatthysDT26-Jul-06 2:15 
GeneralRe: When use static method and when use non static method ? [modified] Pin
CooperWu26-Jul-06 2:58
CooperWu26-Jul-06 2:58 
AnswerRe: When use static method and when use non static method ? Pin
MartyExodus26-Jul-06 5:04
MartyExodus26-Jul-06 5:04 
GeneralRe: When use static method and when use non static method ? Pin
CooperWu26-Jul-06 19:31
CooperWu26-Jul-06 19:31 
AnswerRe: When use static method and when use non static method ? Pin
A.A.26-Jul-06 5:30
A.A.26-Jul-06 5:30 
GeneralRe: When use static method and when use non static method ? Pin
CooperWu26-Jul-06 19:36
CooperWu26-Jul-06 19:36 
QuestionDirectory.Exists fails on UNC names Pin
paas26-Jul-06 1:24
paas26-Jul-06 1:24 
AnswerRe: Directory.Exists fails on UNC names Pin
paas26-Jul-06 3:14
paas26-Jul-06 3:14 
Question[Message Deleted] Pin
waheed awan26-Jul-06 1:03
waheed awan26-Jul-06 1:03 
AnswerRe: c# compiler Pin
Christian Graus26-Jul-06 1:38
protectorChristian Graus26-Jul-06 1:38 
GeneralRe: c# compiler Pin
Paul Conrad26-Jul-06 6:22
professionalPaul Conrad26-Jul-06 6:22 
AnswerRe: c# compiler Pin
MCSD-Gandalf26-Jul-06 1:41
MCSD-Gandalf26-Jul-06 1:41 
GeneralRe: c# compiler Pin
Colin Angus Mackay26-Jul-06 4:54
Colin Angus Mackay26-Jul-06 4:54 
GeneralRe: c# compiler Pin
Paul Conrad26-Jul-06 6:24
professionalPaul Conrad26-Jul-06 6:24 
AnswerThats easy Pin
Ennis Ray Lynch, Jr.26-Jul-06 4:35
Ennis Ray Lynch, Jr.26-Jul-06 4:35 
GeneralRe: Thats easy Pin
waheed awan29-Jul-06 5:21
waheed awan29-Jul-06 5:21 

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.