10. februarie 2014 18:44
by skorpionking
0 Comentarii
Microsoft intends to deliver .NET Framework versions more frequently to make new features and fixes available sooner. In fact, that’s already started with the .NET Framework 4.5.1. Additionally,...
[Citește mai departe]
8. februarie 2014 13:37
by skorpionking
0 Comentarii
Application performance is a constant focus area for the .NET Framework team. In this release, Microsoft responded to feedback on the garbage collector and significantly improved ASP.NET app startup.
...
[Citește mai departe]
5. februarie 2014 13:15
by skorpionking
0 Comentarii
Async Debugging Improvements After setting up a solid and easy-to-use base for the asynchronous programming model in the previous Framework releases, Microsoft wanted to smooth out some remaining aspe...
[Citește mai departe]
4. iunie 2009 10:42
by skorpionking
0 Comentarii
In sfarsit dupa un proiect cam agitat am timp sa scriu si eu mai mult pe blog :-) De curand se poate downloada versiunea Beta a noului Visual Studio 2010, nume de cod "Rosario". Recomand dezvoltatoril...
[Citește mai departe]
21. aprilie 2009 14:08
by skorpionking
0 Comentarii
Doing some .NET Entity Framework queries and updates the other day, I kept getting this exception:
"New transaction is not allowed because there are other threads running in the session."
foreach (U...
[Citește mai departe]
26. martie 2009 17:13
by skorpionking
0 Comentarii
So gents and lads, have you ever wondered how to change for example the border style of a DropDownList in ASP.NET which will be rendered in HTML as a Select element?
You can't change the border style...
[Citește mai departe]
5. martie 2009 17:20
by skorpionking
0 Comentarii
The System.IDisposable interface is a very useful interface to understand if you are concerned about performance in your application. Microsoft says the following about the IDisposable interface:
...
[Citește mai departe]
3. martie 2009 20:01
by skorpionking
0 Comentarii
Here are 3 ways to compute the factorial n!:
// Recursion - factorial recursiv
static int fact(int n)
{
if (n <= 1...
[Citește mai departe]
27. ianuarie 2009 09:16
by skorpionking
0 Comentarii
Good news, Microsoft released the IE 8 RC 1 today! Install it and experience the web in a new way! IE8 is:
Faster for accomplishing tasks, from mapping a location to checking ...
[Citește mai departe]
19. ianuarie 2009 13:41
by skorpionking
0 Comentarii
Here is how to create and use temporary files with C # (don't forget the try catch finalize):
&...
[Citește mai departe]
19. ianuarie 2009 13:36
by skorpionking
0 Comentarii
Here is a reg exp matching IP addresses in C#:
Regex regIP = new Regex(
&...
[Citește mai departe]
19. ianuarie 2009 13:30
by skorpionking
0 Comentarii
Here is how to do a DNS lookup with C# 3.5:
try
&...
[Citește mai departe]