0
votes
C#: Try-catch every line of code without individual try-catch blocks
You could look at integrating the Enterprise Library's Exception Handling component for one idea of how to handle unhandled exceptions.
If this is for ASP.Net applications, there is a funct …
0
votes
What to learn first?
My own take would be to think about what kinds of work do you want to be doing and what kinds of requirements for those jobs would be helpful to have. For example, do you know about design pattern …
0
votes
How do I programmatically use the “using” keyword in C#?
try
{
foreach(string command in S) // command is something like "c:\a.exe"
{
using(p = Process.Start(command))
{
// I literally put nothing in here.
}
} …
1
vote
Adding values to a C# array
int ArraySize = 400;
int[] terms = new int[ArraySize];
for(int runs = 0; runs < ArraySize; runs++)
{
terms[runs] = runs;
}
That would be how I'd code it.
…
0
votes
What should I learn next after VB and C#
If you want to do more front-end work then I'd suggest getting into markup languages like HTML and XML along with scripting languages like JavaScript or Script# may be a good Web skill set for one …
0
votes
How to stop worrying about using the best materials and just start learning .Net?
Find an area of .Net you'd like to use, e.g. console Applications, Windows Applications, ASP.Net applications, web services, and just build a few little "getting your feet wet" sort of things like …
0
votes
Write a program in 30 minutes (for a C# programmer candidate interview question).
I could see going in at a high level of build a prototype of a web form that took in a number, and 2 strings and stored them along with a datetime in a database table. This may sound overly simple …
1
vote
Increases Skills what should I learn?
Here would be my suggestions:
1) Design Patterns - These are really neat as well as being very useful in some situations.
2) AJAX - Assuming you haven't already done some of this, i …
1
vote
Advanced .Net Programming Course
I've seen some talks given by Jean Paul and found them to be quite interesting. He is passionate about developing software and doing it the best he knows how and sharing that. I would think his c …
0
votes
.NET : How do you get the Type of a null object?
At a theoretical level isn't a null really the same as a void pointer in C, which is to say that it holds a memory address and that's it? If so then it is similar to the case of a division by zero …
0
votes
Where do you get the best in-depth information for C# programming?
MSDN would be my suggestion if you are just starting out with C#.
…
0
votes
Should I learn a .NET Language?
If you plan on programming in a Windows-oriented shop, e.g. WinForms or ASP.Net, then I'd say it makes sense to learn a .Net language. If on the other hand, you really like Linux and other open-so …
0
votes
C# Connecting to a SQL server with a named instance??
There is also the occassional SQL Express edition case where the name is MyServerName\SQLEXPRESS. This can trip up some people because they wouldn't think to specify the server that way.
…
0
votes
C# and .NET Interview Questions
My suggestion would be to review some of the simpler problems that can be given as a test to see how you go from an idea to an implemented optimal solution. FizzBuzz, reversing a string, basic CRU …
0
votes
How to print out the HttpWebRequest in C#?
Could you set a breakpoint in the code and look at the Request object in the debugger and look through the ServerVariables collections to see what it has? Alternatively, you could do a Response.Wr …
