Click here to Skip to main content
15,913,610 members
Home / Discussions / C#
   

C#

 
GeneralRe: Using Interfaces Practically Pin
paw197213-Feb-04 5:33
paw197213-Feb-04 5:33 
GeneralMaking Variables In C# Global Pin
Eric Houser12-Feb-04 18:44
Eric Houser12-Feb-04 18:44 
GeneralRe: Making Variables In C# Global Pin
John Kuhn12-Feb-04 18:49
John Kuhn12-Feb-04 18:49 
GeneralRe: Making Variables In C# Global Pin
Eric Houser12-Feb-04 18:54
Eric Houser12-Feb-04 18:54 
GeneralRe: Making Variables In C# Global Pin
John Kuhn12-Feb-04 19:07
John Kuhn12-Feb-04 19:07 
GeneralRe: Making Variables In C# Global Pin
John Kuhn12-Feb-04 18:52
John Kuhn12-Feb-04 18:52 
GeneralRe: Making Variables In C# Global Pin
Meysam Mahfouzi12-Feb-04 18:59
Meysam Mahfouzi12-Feb-04 18:59 
GeneralRe: Making Variables In C# Global Pin
Eric Houser12-Feb-04 19:07
Eric Houser12-Feb-04 19:07 
GeneralArabic to roman Pin
GetOn&GetGoing12-Feb-04 18:30
GetOn&GetGoing12-Feb-04 18:30 
GeneralRe: Arabic to roman Pin
John Kuhn12-Feb-04 18:46
John Kuhn12-Feb-04 18:46 
GeneralRe: Arabic to roman Pin
GetOn&GetGoing12-Feb-04 18:50
GetOn&GetGoing12-Feb-04 18:50 
GeneralRe: Arabic to roman Pin
John Kuhn12-Feb-04 18:57
John Kuhn12-Feb-04 18:57 
GeneralRe: Arabic to roman Pin
GetOn&GetGoing12-Feb-04 19:08
GetOn&GetGoing12-Feb-04 19:08 
GeneralRe: Arabic to roman Pin
John Kuhn12-Feb-04 19:18
John Kuhn12-Feb-04 19:18 
GeneralInterview Pin
GetOn&GetGoing12-Feb-04 17:41
GetOn&GetGoing12-Feb-04 17:41 
GeneralRe: Interview Pin
John Kuhn12-Feb-04 18:13
John Kuhn12-Feb-04 18:13 
GeneralRe: Interview Pin
CWIZO13-Feb-04 0:30
CWIZO13-Feb-04 0:30 
GeneralRe: Interview Pin
Kannan Kalyanaraman13-Feb-04 1:14
Kannan Kalyanaraman13-Feb-04 1:14 
GeneralRe: Interview Pin
CWIZO13-Feb-04 1:45
CWIZO13-Feb-04 1:45 
QuestionnumericUpDown Control - double digits? Pin
KingTermite12-Feb-04 17:07
KingTermite12-Feb-04 17:07 
AnswerRe: numericUpDown Control - double digits? Pin
Anonymous12-Feb-04 18:43
Anonymous12-Feb-04 18:43 
AnswerRe: numericUpDown Control - double digits? Pin
Heath Stewart13-Feb-04 3:36
protectorHeath Stewart13-Feb-04 3:36 
GeneralRe: numericUpDown Control - double digits? Pin
KingTermite13-Feb-04 3:43
KingTermite13-Feb-04 3:43 
GeneralRe: numericUpDown Control - double digits? Pin
Heath Stewart13-Feb-04 3:56
protectorHeath Stewart13-Feb-04 3:56 
I take it that you looked at the class documentation for the NumericUpDown class, right? Deriving from your sig, "there are 10 types of people in this world...those that read the documentation and those that do not." Smile | :) (Unfortunately, most of the posters here fall in the latter category.)

Typically, you can learn everything you need to know from the docs (add that to experience and reading articles on MSDN, CodeProject, et. al.). If some member overrides a base member of defined new and you find the documentation a little lacking on details, use ildasm.exe - the IL disassembler that comes with the .NET Framework SDK - to view the IL for the implementation in that assembly, or use a good decompiler like .NET Reflector[^] (though its decompiler rarely incorrect / incomplete). You can learn a heck of a lot that way - perhaps even pick up a few pointers from the developers at Microsoft who wrote the base class libraries.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: numericUpDown Control - double digits? Pin
KingTermite13-Feb-04 4:22
KingTermite13-Feb-04 4:22 

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.