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

C#

 
AnswerRe: Issue in accessing 32 bit C++ DLL in Windows Server 2008 Pin
jschell17-Nov-12 6:11
jschell17-Nov-12 6:11 
QuestionOutlook 2010 / C# - Hide or Remove item from ContextMenuContactItem + add custom item into it Pin
Cristian Capannini16-Nov-12 5:20
Cristian Capannini16-Nov-12 5:20 
QuestionException Handling Pin
Phanindra26116-Nov-12 3:21
Phanindra26116-Nov-12 3:21 
AnswerRe: Exception Handling Pin
BobJanova16-Nov-12 3:41
BobJanova16-Nov-12 3:41 
GeneralRe: Exception Handling Pin
Phanindra26116-Nov-12 8:03
Phanindra26116-Nov-12 8:03 
AnswerRe: Exception Handling Pin
Clifford Nelson16-Nov-12 9:49
Clifford Nelson16-Nov-12 9:49 
GeneralRe: Exception Handling Pin
Dave Kreskowiak16-Nov-12 11:49
mveDave Kreskowiak16-Nov-12 11:49 
AnswerRe: Exception Handling Pin
Orjan Westin16-Nov-12 4:37
professionalOrjan Westin16-Nov-12 4:37 
AnswerRe: Exception Handling Pin
SledgeHammer0116-Nov-12 9:55
SledgeHammer0116-Nov-12 9:55 
JokeRe: Exception Handling Pin
Mycroft Holmes16-Nov-12 15:42
professionalMycroft Holmes16-Nov-12 15:42 
AnswerRe: Exception Handling Pin
jschell17-Nov-12 6:20
jschell17-Nov-12 6:20 
QuestionManual Coding vs Code Generation Pin
Phanindra26116-Nov-12 0:22
Phanindra26116-Nov-12 0:22 
AnswerRe: Manual Coding vs Code Generation Pin
DaveyM6916-Nov-12 0:46
professionalDaveyM6916-Nov-12 0:46 
GeneralRe: Manual Coding vs Code Generation Pin
n.podbielski16-Nov-12 1:06
n.podbielski16-Nov-12 1:06 
GeneralRe: Manual Coding vs Code Generation Pin
DaveyM6916-Nov-12 2:37
professionalDaveyM6916-Nov-12 2:37 
GeneralRe: Manual Coding vs Code Generation Pin
n.podbielski16-Nov-12 2:47
n.podbielski16-Nov-12 2:47 
GeneralRe: Manual Coding vs Code Generation Pin
BobJanova16-Nov-12 3:22
BobJanova16-Nov-12 3:22 
GeneralRe: Manual Coding vs Code Generation Pin
n.podbielski16-Nov-12 3:43
n.podbielski16-Nov-12 3:43 
AnswerRe: Manual Coding vs Code Generation Pin
Orjan Westin16-Nov-12 2:17
professionalOrjan Westin16-Nov-12 2:17 
GeneralRe: Manual Coding vs Code Generation Pin
Phanindra26116-Nov-12 3:09
Phanindra26116-Nov-12 3:09 
GeneralRe: Manual Coding vs Code Generation Pin
Orjan Westin16-Nov-12 3:25
professionalOrjan Westin16-Nov-12 3:25 
All occasions I've seen and used code generation tools, that's been a build-time issue, not run-time. You run the tool to create code, which is included in the compiling and build of the software. As such, there's no performance penalty when running, although it can complicat the build process.

For instance, Microsoft has a tool that takes an XML file and creates an XML schema from it. This schema can then be run through the same tool which can generate C# classes to represent it. This means you don't have to hand code the classes needed to serialise the XML, but have used a code generation tool. Typically, you'd only do this when there's been a change in the XML schema, not every time you build the system.

I'm not entirely clear what you mean by template here? Do you mean the different application and library types you can pick from when creating a new project in Visual C#? Those templates are effectivel recipes used by the code generation tool to create the project and its initial files.
AnswerRe: Manual Coding vs Code Generation Pin
BobJanova16-Nov-12 3:25
BobJanova16-Nov-12 3:25 
AnswerRe: Manual Coding vs Code Generation Pin
fjdiewornncalwe16-Nov-12 7:11
professionalfjdiewornncalwe16-Nov-12 7:11 
GeneralRe: Manual Coding vs Code Generation Pin
Phanindra26116-Nov-12 7:56
Phanindra26116-Nov-12 7:56 
GeneralRe: Manual Coding vs Code Generation Pin
fjdiewornncalwe16-Nov-12 8:26
professionalfjdiewornncalwe16-Nov-12 8:26 

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.