Click here to Skip to main content
15,886,664 members
Home / Discussions / C#
   

C#

 
AnswerRe: inserting Hyperlink inside windows form Pin
MickCurley8-May-09 0:00
MickCurley8-May-09 0:00 
GeneralRe: inserting Hyperlink inside windows form Pin
shabya8-May-09 1:28
shabya8-May-09 1:28 
AnswerRe: inserting Hyperlink inside windows form Pin
MumbleB8-May-09 0:48
MumbleB8-May-09 0:48 
GeneralRe: inserting Hyperlink inside windows form Pin
shabya8-May-09 1:26
shabya8-May-09 1:26 
QuestionGlobal ( sort of) event ? Pin
Noctris7-May-09 23:19
Noctris7-May-09 23:19 
AnswerRe: Global ( sort of) event ? Pin
Jimmanuel8-May-09 1:08
Jimmanuel8-May-09 1:08 
GeneralRe: Global ( sort of) event ? Pin
Noctris9-May-09 8:10
Noctris9-May-09 8:10 
GeneralRe: Global ( sort of) event ? Pin
Jimmanuel9-May-09 10:08
Jimmanuel9-May-09 10:08 
Correct. Your most basic static singleton looks like this:
public class MyClass
{
	private static MyClass instance = new MyClass();
	public static MyClass Instance
	{
		get { return instance; }
	}

	public void DoSomething()
	{
		Console.WriteLine("Something");
	}
}
and then all of the objects in your program can access it like this:
MyClass.Instance.DoSomething();
If you have lots of multi-threading in your program then here are some tricks to handle thread-safety with the static object, but in simple programs the basic stuff should suffice.



Questionhow to include Sql Server 2000 database in a setup project? Pin
lockepeak7-May-09 22:44
lockepeak7-May-09 22:44 
AnswerRe: how to include Sql Server 2000 database in a setup project? Pin
Noctris8-May-09 0:00
Noctris8-May-09 0:00 
QuestionBrowser content not to visible to user intially for sometime? Pin
svt gdwl7-May-09 22:30
svt gdwl7-May-09 22:30 
QuestionHow to lock the msi setup for a specific period? Pin
svt gdwl7-May-09 22:20
svt gdwl7-May-09 22:20 
QuestionGPS/GSM application Pin
Nanyoe7-May-09 22:09
Nanyoe7-May-09 22:09 
Questionusing printer driver in vb,net Pin
tauras817-May-09 21:06
tauras817-May-09 21:06 
AnswerRe: using printer driver in vb,net Pin
Mycroft Holmes7-May-09 21:39
professionalMycroft Holmes7-May-09 21:39 
Questionc# Trackbar Arrowkeys bug Pin
VoNa197-May-09 20:32
VoNa197-May-09 20:32 
AnswerRe: c# Trackbar Arrowkeys bug Pin
Dave Kreskowiak8-May-09 1:11
mveDave Kreskowiak8-May-09 1:11 
GeneralRe: c# Trackbar Arrowkeys bug Pin
VoNa198-May-09 1:56
VoNa198-May-09 1:56 
QuestionHow to get Data labels In charts using C# Pin
amitabha20077-May-09 20:11
amitabha20077-May-09 20:11 
QuestionVOIP Pin
imranliaqat7-May-09 20:10
imranliaqat7-May-09 20:10 
AnswerRe: VOIP Pin
Mycroft Holmes7-May-09 21:36
professionalMycroft Holmes7-May-09 21:36 
QuestionQuery to get number of tables Pin
arun_pk7-May-09 19:39
arun_pk7-May-09 19:39 
AnswerRe: Query to get number of tables Pin
Spunky Coder7-May-09 20:51
Spunky Coder7-May-09 20:51 
Questionpop up progress bar Pin
S K Y7-May-09 19:39
S K Y7-May-09 19:39 
AnswerRe: pop up progress bar Pin
N a v a n e e t h7-May-09 19:41
N a v a n e e t h7-May-09 19:41 

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.