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

C#

 
QuestionMulticolumn Textbox Pin
SelvaSR4-Dec-08 17:53
SelvaSR4-Dec-08 17:53 
AnswerRe: Multicolumn Textbox Pin
CodingYoshi4-Dec-08 18:33
CodingYoshi4-Dec-08 18:33 
AnswerRe: Multicolumn Textbox Pin
Tamer Oz4-Dec-08 20:37
Tamer Oz4-Dec-08 20:37 
AnswerRe: Multicolumn Textbox Pin
Thomas Stockwell5-Dec-08 7:14
professionalThomas Stockwell5-Dec-08 7:14 
QuestionHow to create a makefile for the project-in VS C# 2005 Pin
TJS4u4-Dec-08 17:41
TJS4u4-Dec-08 17:41 
AnswerRe: How to create a makefile for the project-in VS C# 2005 Pin
leppie4-Dec-08 18:51
leppie4-Dec-08 18:51 
QuestionInstanting a class with no constructor Pin
K. Shaffer4-Dec-08 16:57
K. Shaffer4-Dec-08 16:57 
AnswerRe: Instanting a class with no constructor Pin
CodingYoshi4-Dec-08 17:32
CodingYoshi4-Dec-08 17:32 
This is sometimes done for Singleton Design Pattern reasons. It is instantiated like so:

Public class AppDomain
{
private AppDomain _instance;

// Notice how the constructor is protected (can be private)
protected AppDomain()
{

}

// Notice the method is static
public static CreateDomain()
{
// Below it first checks if there is already an instance created and returns it.
// Else creates and returns it
if (_instance == null)
_instance = new AppDomain();

return _instance;
}
}
GeneralRe: Instanting a class with no constructor Pin
K. Shaffer4-Dec-08 17:50
K. Shaffer4-Dec-08 17:50 
AnswerRe: Instanting a class with no constructor Pin
PIEBALDconsult4-Dec-08 17:32
mvePIEBALDconsult4-Dec-08 17:32 
GeneralRe: Instanting a class with no constructor Pin
leppie4-Dec-08 18:52
leppie4-Dec-08 18:52 
AnswerRe: Instanting a class with no constructor Pin
Christian Graus4-Dec-08 18:53
protectorChristian Graus4-Dec-08 18:53 
QuestionTaskManager - trojans Pin
nelsonpaixao4-Dec-08 14:25
nelsonpaixao4-Dec-08 14:25 
AnswerRe: TaskManager - trojans PinPopular
Christian Graus4-Dec-08 14:29
protectorChristian Graus4-Dec-08 14:29 
AnswerRe: TaskManager - trojans PinPopular
leckey4-Dec-08 15:25
leckey4-Dec-08 15:25 
JokeRe: TaskManager - trojans Pin
nelsonpaixao4-Dec-08 15:49
nelsonpaixao4-Dec-08 15:49 
GeneralRe: TaskManager - trojans PinPopular
Christian Graus4-Dec-08 15:57
protectorChristian Graus4-Dec-08 15:57 
AnswerRe: TaskManager - trojans PinPopular
Dan Neely5-Dec-08 2:38
Dan Neely5-Dec-08 2:38 
GeneralRe: TaskManager - trojans Pin
nelsonpaixao5-Dec-08 13:59
nelsonpaixao5-Dec-08 13:59 
GeneralRe: TaskManager - trojans Pin
danzar6-Dec-08 15:07
danzar6-Dec-08 15:07 
GeneralRe: TaskManager - trojans Pin
nelsonpaixao5-Dec-08 13:52
nelsonpaixao5-Dec-08 13:52 
QuestionGetting Microsoft.Web.Management.dll Pin
Eitan O4-Dec-08 13:18
Eitan O4-Dec-08 13:18 
AnswerRe: Getting Microsoft.Web.Management.dll Pin
Dave Kreskowiak4-Dec-08 13:41
mveDave Kreskowiak4-Dec-08 13:41 
QuestionRe: Getting Microsoft.Web.Management.dll Pin
Eitan O5-Dec-08 8:22
Eitan O5-Dec-08 8:22 
AnswerRe: Getting Microsoft.Web.Management.dll Pin
Dave Kreskowiak5-Dec-08 16:22
mveDave Kreskowiak5-Dec-08 16: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.