Click here to Skip to main content
15,905,028 members
Home / Discussions / C#
   

C#

 
QuestionDuplicate GUIDs? Pin
Xiangyang Liu 刘向阳8-Sep-06 6:15
Xiangyang Liu 刘向阳8-Sep-06 6:15 
AnswerRe: Duplicate GUIDs? Pin
Dustin Metzgar8-Sep-06 9:05
Dustin Metzgar8-Sep-06 9:05 
Questioncode to access the windows scheduled task ? Pin
Sunil B Muthanna8-Sep-06 5:47
Sunil B Muthanna8-Sep-06 5:47 
QuestionDesign Time issue of Windows Control? Pin
MudkiSekhon8-Sep-06 5:46
MudkiSekhon8-Sep-06 5:46 
AnswerRe: Design Time issue of Windows Control? Pin
ic3b3rg38-Sep-06 11:50
ic3b3rg38-Sep-06 11:50 
GeneralRe: Design Time issue of Windows Control? Pin
MudkiSekhon8-Sep-06 19:47
MudkiSekhon8-Sep-06 19:47 
QuestionHow to implement a singleton in c# generic classes Pin
Chris Richner8-Sep-06 5:19
Chris Richner8-Sep-06 5:19 
AnswerRe: How to implement a singleton in c# generic classes [modified] Pin
Jun Du8-Sep-06 6:21
Jun Du8-Sep-06 6:21 
You can code this way:
ShellApplicationBase<SomeConcretClassType>.GetInstance().DoNothingAndWaitInfite();

or
ShellApplicationBase<SomeConcretClassType> myInstance = ShellApplicationBase<SomeConcretClassType>.GetInstance(); 
myInstance.DoNothingAndWaitInfite();


Note that GetInstance() has been changed from Property to a public static method. I'm not sure about if you can use Property before any instance is constructed.


-- modified at 12:43 Friday 8th September, 2006

Best,
Jun

GeneralRe: How to implement a singleton in c# generic classes Pin
Chris Richner9-Sep-06 4:27
Chris Richner9-Sep-06 4:27 
GeneralRe: How to implement a singleton in c# generic classes Pin
Jun Du9-Sep-06 4:53
Jun Du9-Sep-06 4:53 
AnswerRe: How to implement a singleton in c# generic classes Pin
Daniel Grunwald9-Sep-06 6:41
Daniel Grunwald9-Sep-06 6:41 
AnswerRe: Accessing a static field on a generic class? Pin
Chris Richner10-Sep-06 9:28
Chris Richner10-Sep-06 9:28 
QuestionWindow Form Refresh during code execution. Pin
sir_chuy8-Sep-06 4:40
sir_chuy8-Sep-06 4:40 
AnswerRe: Window Form Refresh during code execution. Pin
Judah Gabriel Himango8-Sep-06 5:32
sponsorJudah Gabriel Himango8-Sep-06 5:32 
GeneralRe: Window Form Refresh during code execution. Pin
sir_chuy8-Sep-06 7:17
sir_chuy8-Sep-06 7:17 
QuestionGet only file name from str Pin
papa808-Sep-06 4:11
papa808-Sep-06 4:11 
AnswerRe: Get only file name from str Pin
User 66588-Sep-06 4:16
User 66588-Sep-06 4:16 
GeneralRe: Get only file name from str Pin
Not Active8-Sep-06 4:36
mentorNot Active8-Sep-06 4:36 
GeneralRe: Get only file name from str Pin
User 66588-Sep-06 4:57
User 66588-Sep-06 4:57 
GeneralRe: Get only file name from str Pin
Dave Kreskowiak8-Sep-06 9:13
mveDave Kreskowiak8-Sep-06 9:13 
GeneralRe: Get only file name from str Pin
papa808-Sep-06 4:57
papa808-Sep-06 4:57 
GeneralRe: Get only file name from str Pin
Dave Kreskowiak8-Sep-06 9:16
mveDave Kreskowiak8-Sep-06 9:16 
AnswerRe: Get only file name from str Pin
BoneSoft8-Sep-06 5:43
BoneSoft8-Sep-06 5:43 
Questionemail attachments Pin
eggsovereasy8-Sep-06 4:08
eggsovereasy8-Sep-06 4:08 
AnswerRe: email attachments Pin
Judah Gabriel Himango8-Sep-06 5:11
sponsorJudah Gabriel Himango8-Sep-06 5:11 

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.