By tag: practices
0
kicks
Getting Started with SQL Server Data Access using Data Access Applicat
In this post, we’ll see how the same tasks that we did using ADO.Net objects can be done using Data Access Application Block. We will also see how it makes the code much more tidier. Data Access Application Block is part of Microsoft Enterprise Library.
0
kicks
.NET CF Performance Best Practices
The impact of performance is much more readily apparent in .NET Compact Framework applications. The mobile devices commonly have a CPU that is 10 times slower than your desktop CPU, and possibly up to 100 times less RAM than a desktop or server. In Agile or XP development, the mantra is often to i...
0
kicks
The Disposable Pattern
Simple explanation of the Disposable Pattern in .NET for developers new to garbage collection. Explains when to implement the IDisposable interface only, where a finalizer is required and why you mustn't call into other objects from the finalizer thread. Also shows common use cases illustrating when...
0
kicks
12 ASP.NET MVC Best Practices
In this post Simone Chiaretta outlines a list of 12 best practices to use with ASP.NET MVC.
0
kicks
The Using Block
The using block provides proper declaration and dispose of objects that implement IDisposable interface. IDisposable is implemented by managed classes that access unmanaged resources. FileStream is one such classes that accesses IntPtr and SafeFileHandle which are unmanaged handles.
0
kicks
Using tuples in C# functions and dictionaries
Using tuples (just like tuples in F#) can improve your C# code and reduce number of classes and code-lines you write for some common mundane tasks.
Code snippets are attached
0
kicks
Some tips on writing event handling code in C# .NET
You can drop a lot of repetitive code in C# event declaration and raising (including some EventArgs declarations, defining custom delegates, checking for nulls) if you follow these tips.
0
kicks
Prototyping in Software Development - 4
Who should be involved, how far you should go and when do you have to do Prototyping in a Software Development Project?
0
kicks
Prototyping in Software Development - 3
Tips and Techniques in User Interface Prototyping during Software Development
0
kicks
Prototyping in Software Development - 2
Tools and Technologies that can be used in Usability Engineering, prototyping during Software Development
0
kicks
Prototyping in Software Development - 1
This article addresses the needs of prototyping in Software Development , this will be the first part in the series of articles on Prototyping in Software Development.
0
kicks
Software development dogmata - good practices gone bad
Many practices in the software development world are widely accepted at some moment in time as the “true way”. The trouble starts when the “true way” is forced down the throats of people who need a “new way”. Usually popular practices follow a similar path between the moment somebody discovers/creat...
0
kicks
Lean Software Development
Very good article and some good steps on Lean Software Development
0
kicks
Process Implementation and TFS(Team Foundation Server)- Part1
I am going to focus this post to explore the process implementation capabilities and features of TFS. Let me start by sharing my understanding of a Process and then see how TFS can help me implement it.
0
kicks
How to: Optimize the memory usage with strings
System.String type is used in any .NET application. We have strings as: names, addresses, descriptions, error messages, warnings or even application settings. Each application has to create, compare or format string data. Considering the immutability and the fact that any object can be converted to ...