|
|
vistadb
Stories kicked by vistadb
|
|
submitted by
vistadb
1 month, 5 days ago
vistadb.net — Blog post describing some differences between a struct and a class in dot net and why you might want to use one over the other.
"Memory usage and leaks in a managed world often come from unexpected places. Allocating classes or structs is a confusing subject to newcomers to Dot Net."
read more...
add a comment
|
category: C# | Views: 15
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 7 days ago, submitted by
Rickasaurus
1 month, 7 days ago
atalasoft.com — .NET 3.5 and 2.0 SP1 jointly included a new feature which lets you programmatically manipulate the way your garbage collector acts. This can be done through changing the value of a new property of the System.Runtime.GCSettings class named LatencyMode. In this article I will walk you through this new property and the different effects of each of it's possible settings. read more...
add a comment
|
category: Tips & Tricks | Views: 241
|
|
tags:
Tips | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 1 month, 8 days ago, submitted by
beckelmw
1 month, 9 days ago
beckelman.net — I recently had a requirement to allow users to select a group of files and then dynamically create a zip file on the server of the selected files that they could then download. read more...
add a comment
|
category: ASP.NET | Views: 299
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 3 days ago, submitted by
kayos
5 months, 3 days ago
blog.reamped.net — Do you use database projects in Visual Studio? If not, then now is a good time to start. It is the best way I have found to source control my databases without actually sticking the database file itself in the repository. read more...
add a comment
|
category: Database | Views: 27
|
|
tags:
SQL, VisualStudio, Database | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 5 months, 3 days ago, submitted by
jonas
5 months, 3 days ago
weblogs.asp.net — A good post that highlights some of the functionality of Subversion read more...
add a comment
|
category: Other | Views: 37
|
|
tags:
Subversion, SVN | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
vistadb
5 months, 8 days ago
mark-dot-net.blogspot.com — Interesting post about how refactoring gets the blame when schedules slip. But that was not the root cause. Also nice list of benefits to refactoring for future app maintenance gains. read more...
add a comment
|
category: Patterns | Views: 0
|
|
tags:
Patterns | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
vistadb
5 months, 23 days ago
vistadb.net — Replacing a generic hashtable with a strongly typed Dictionary<> results in performance gains for Contains() lookups. read more...
add a comment
|
category: C# | Views: 0
|
|
tags:
C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 28 days ago, submitted by
alley
6 months, 29 days ago
blog.wekeroad.com — I spose there’s not much more to add to that title. Eric and Shawn Oster have been hard at work while I pretty much have been under water for the last month, getting ready for MIX. read more...
2 comments
|
category: Database | Views: 2
|
|
tags:
LINQ, SubSonic, Database | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 6 months, 28 days ago, submitted by
hbazerbashi
6 months, 29 days ago
msdn2.microsoft.com — Using this methodology, developers write unit tests for individual features before actually implementing the feature. read more...
1 comment
|
category: Database | Views: 2
|
|
tags:
MSDN, Database | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 14 days ago, submitted by
chinhdo
7 months, 14 days ago
chinhdo.com — Over at Programmers Heaven.com, there’s an interesting article on the potential performance impact of try/catch blocks. The article concluded that the average cost of a try/catch block is essentially nothing (sorry there’s no author information on the post), and that .NET/C# programmers should not think twice about using try/catch blocks. The author is right that a try/catch block has essentially zero cost. However, like most coding performance issues, exceptions and try/catch blocks do not have performance implications until they occur in some type of loop. read more...
9 comments
|
category: C# | Views: 7
|
|
tags:
Shit, Bullshit, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
vistadb
7 months, 17 days ago
vistadb.net — VistaDB released a Free Express Edition today for non commercial usage.
VistaDB Express allows personal website users who use Graffiti to build tools to integrate with their new site.
The Express edition lacks the GUI plugins for Visual Studio, but works with all the Microsoft Express developer tools, and Mono! read more...
add a comment
|
category: Database | Views: 6
|
|
tags:
commercial, VistaDB, Database | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 24 days ago, submitted by
moserware
7 months, 24 days ago
moserware.com — How careful are you about using the correct form of string and number formatting? How about your use of String.Compare and String.Equals? read more...
3 comments
|
category: Tips & Tricks | Views: 4
|
|
tags:
Tips, Testing | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
Mike.Griffin
7 months, 25 days ago
entityspaces.net — Imagine never having to leave Visual Studio while creating and shaping your EntitySpaces based application. Simply pop into the "CodeSmith Explorer", right mouse on our "Master Template", execute it, include the newly generated files into your solution, compile, and you're off and running in a matter of a few minutes. So Sweet. read more...
1 comment
|
category: Architecture | Views: 1
|
|
tags:
ORM, CodeGeneration, 2008, Architecture, EntitySpaces | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 7 months, 25 days ago, submitted by
wisemx
7 months, 26 days ago
scottonwriting.net — I often use the free and awesome decompiler Reflector to peer into the source code of Microsoft's .NET Framework. It's an indispensable tool. However, I had a little difficulty viewing the underlying source code for some of the new .NET 3.5 classes. In particular, for a recent article I was interested in looking at what was happening underneath the covers when the DataPager control was rendered. The DataPager is a new control in ASP.NET 3.5 used to render a paging interface for the ListView control (also new to 3.5). read more...
add a comment
|
category: ASP.NET | Views: 3
|
|
tags:
ASP.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|

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