|
|
Stories recently tagged with 'CLR'
|
|
submitted by
DavyBrion
3 days, 14 hours ago
davybrion.com — Garbage Collection sure is great, isn’t it? We don’t have to keep track of all the memory we’ve allocated and we don’t need to release that memory when it’s no longer needed. Because that is after all what the Garbage Collector does for us, without us having to worry about it. This is actually a widespread misconception among many .NET developers. It’s true that Garbage Collection makes memory management a lot easier, but we simply can’t rely on it all the time. There are most certainly some things you must always keep in mind when it comes to memory management in .NET. read more...
add a comment
|
category: CLR | Views: 8
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
alkampfer
6 days, 1 hour ago
nablasoft.com — This post shows how generate a subclass that implements the INOtifyPropertyChanged event. read more...
add a comment
|
category: CLR | Views: 3
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 days, 10 hours ago, submitted by
Widescreen
6 days, 15 hours ago
codebetter.com — Really interesting breakdown of the new 3.5 sp release. read more...
1 comment
|
category: CLR | Views: 344
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
12 days, 12 hours ago
pietschsoft.com — I'm currently installing SQL 2008 Developer Edition, and before the installation could proceed, it needed to install an update to the .NET Framework 3.5. What update does it need to install? Well, .NET 3.5 Service Pack 1 is the update it needs. Now as you can see from the below screeshot, it doesn't say anything about being Beta. I wonder?... I wouldn't think SQL 2008 RTM would install .NET 3.5 SP1 Beta... So, I could only assume that this is the .NET 3.5 SP1 RTM that it's installing. However, this is a presumptuous conclusion and I don't really have any facts to back this up. It does make you wonder though... read more...
add a comment
|
category: Database | Views: 10
|
|
tags:
.net3.5, sp1, Database, CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
alkampfer
12 days, 14 hours ago
nablasoft.com — In these days in UGI blog (Italian language sorry) there are some post speaking about "Infrastructure ignorance" of the domain. The central thing is "is possible to create a domain with POCO objects, relegating infrastructure stuff like INotifyPropertyChanged somewere else"? In this post I talk about the argument, and I give a little example of how to achieve this result with disassemble/modifyIL/Reassemble technique. read more...
add a comment
|
category: CLR | Views: 3
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
alkampfer
12 days, 20 hours ago
nablasoft.com — It is really a smart idea to implement INotifyPropertyChanged with a dynamic proxy? Maybe not, it depends on how BindingList<T> is implemented, but is is also a problem of dynamic types, "you does not know the real dynamic type until run-time" read more...
add a comment
|
category: CLR | Views: 4
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
codekaizen
20 days, 13 hours ago
codeproject.com — A convenient, high-performance money structure for the CLR which handles arithmetic operations, currency types, formatting, and careful distribution and rounding without loss. Also, a look at the various approaches out there for creating a Money type on the CLR. read more...
2 comments
|
category: CLR | Views: 14
|
|
tags:
DataType, pattern, CLR, money | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
AlexandreMutel
25 days, 12 hours ago
codeplex.com — NetAsm is a library that enables JIT native code injection inside a .NET application. With this library, it is possible for example to inject highly optimized code (using SSE, MMX) inside a method, in replacement of the default generated native code by the JIT compiler. read more...
add a comment
|
category: CLR | Views: 11
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
27 days, 18 hours ago
blogs.msdn.com — How would you spend $100 on NEW Windows SDK features? We're planning our next version and subsequent releases of the SDK. In that spirit, we’re running a quick poll of Windows SDK users to help us keep our "vision" for the SDK aligned with yours. If you had a hypothetical $100 to spend on the list of brainstormed features below, how would you allocate the dollars? read more...
add a comment
|
category: CLR | Views: 4
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
28 days, 8 hours ago
hsidev.wordpress.com — Yesterday Karl Seguin announced a new .NET Extension Library. One of the really interesting pieces of the library is a streamlined approach to a simple dictionary imagecache, which is similar to the one described in another interesting looking utility library called ShadeTree. Recently, Ayende Rahein reviewed another .NET utility library called Umbrella, which looks like a pretty wide and deep set of utilities. As I am about to create a new solution to consolidate the utility functionality we use across our various projects, it got me thinking it might be time to pick an established (or growing) library from the community and try to contribute any missing pieces we need for our own projects. read more...
add a comment
|
category: CLR | Views: 14
|
|
tags:
Library, ExtensionMethods, CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 28 days ago, submitted by
terrble
28 days, 15 hours ago
grimes.demon.co.uk — Ask anyone the question above and they will say that managed is slower than unmanaged code. Are they right? No they are not. The problem is that when most people think of .NET they think of other frameworks with a runtime, like Java or Visual Basic; or they may even think about interpreters. They do not think about applications, or what they do; they do not think about limiting factors like network or disk access; in short, they do not think. read more...
6 comments
|
category: CLR | Views: 471
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 29 days, 14 hours ago, submitted by
yesthatmcgurk
29 days, 16 hours ago
dotnet.org.za — No, not partial classes, partial methods. Read on if you did a double take like I did. read more...
4 comments
|
category: CLR | Views: 454
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Anastasiosyal
1 month, 2 days ago
anastasiosyal.com — Have you been shying out of putting extra functions on your SQL Server 2005 using SQL CLR simply because you are afraid of DLL Hell biting back?! Here is a quick tip on how to deploy SQL CLR assemblies without needing to deploy the dll. read more...
add a comment
|
category: CLR | Views: 7
|
|
tags:
CLR | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|