Questionaries.org
Login
Register
Questions
Unanswered
Tags
Users
Ask a Question
Welcome to Questionaries, where you can ask questions and receive answers from other members of the community.
Let us know at info@questionaries.org
Things in .NET Framework 4 that every programmer should know
10
like
0
dislike
Hello,
I recently moved to Visual Studio 2010 and upgraded my website to work with .NET Framework 4. (From VS 2008 - Framework 3.5)
What are things I need to know to improve site speed, readability or memory use?
Thanks.................
asked
1 year
ago
by
biswaskeran
(
70,430
points)
net-4
0
web
tips
1 Answer
0
like
0
dislike
DivideByZeroException
int SafeDivision(int x, int y)
{
try
{
return (x / y);
}
catch (System.DivideByZeroException dbz)
{
System.Console.WriteLine("Division by zero attempted!");
return 0;
}
}
answered
1 year
ago
by
tulip
(
12,960
points)
Related questions
8
like
0
dislike
1
answer
What should every JavaScript programmer know?
asked
1 year
ago
by
pollard
(
41,990
points)
javascript
programming-languages
8
like
2
dislike
1
answer
What is the single most influential book every programmer should read?
asked
1 year
ago
by
william
(
91,210
points)
subjective
books
beginner
resources
fundamentals
11
like
0
dislike
2
answers
anyone know of a good company that does seo work?
asked
1 year
ago
by
WebMaster-Admin
(
36,670
points)
traffic
website
seo
optimization
web
webmaster
4
like
0
dislike
1
answer
different between setting up of parameters in reports 2.0 reports2.5?
asked
1 year
ago
by
daneim
(
127,080
points)
reports-2
0
5
parameters
3
like
0
dislike
2
answers
Different types of serialization supported in .NET Framework...
asked
1 year
ago
by
daneim
(
127,080
points)
serialization
supported
dotnet
framework