Error!
Success!

By tag: practices

showing:  of
0
kicks

Getting Started with SQL Server Data Access using Data Access Applicat  (Unpublished)

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.


Kicked By:
Drop Kicked By:
0
kicks

.NET CF Performance Best Practices  (Unpublished)

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...


Kicked By:
Drop Kicked By:
0
kicks

The Disposable Pattern  (Unpublished)

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...


Kicked By:
Drop Kicked By:
0
kicks

12 ASP.NET MVC Best Practices  (Unpublished)

In this post Simone Chiaretta outlines a list of 12 best practices to use with ASP.NET MVC.


Kicked By:
Drop Kicked By:
0
kicks

The Using Block  (Unpublished)

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.


Kicked By:
Drop Kicked By:
0
kicks

Using tuples in C# functions and dictionaries  (Unpublished)

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


Kicked By:
Drop Kicked By:
0
kicks

Some tips on writing event handling code in C# .NET  (Unpublished)

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.


Kicked By:
Drop Kicked By:
0
kicks

Prototyping in Software Development - 4  (Unpublished)

Who should be involved, how far you should go and when do you have to do Prototyping in a Software Development Project?


Kicked By:
Drop Kicked By:
0
kicks

Prototyping in Software Development - 3  (Unpublished)

Tips and Techniques in User Interface Prototyping during Software Development


Kicked By:
Drop Kicked By:
0
kicks

Prototyping in Software Development - 2  (Unpublished)

Tools and Technologies that can be used in Usability Engineering, prototyping during Software Development


Kicked By:
Drop Kicked By:
0
kicks

Prototyping in Software Development - 1  (Unpublished)

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.


Kicked By:
Drop Kicked By:
0
kicks

Software development dogmata - good practices gone bad  (Unpublished)

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...


Kicked By:
Drop Kicked By:
0
kicks

Lean Software Development  (Unpublished)

Very good article and some good steps on Lean Software Development


Kicked By:
Drop Kicked By:
0
kicks

Process Implementation and TFS(Team Foundation Server)- Part1  (Unpublished)

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.


Kicked By:
Drop Kicked By:
0
kicks

How to: Optimize the memory usage with strings  (Unpublished)

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 ...


Kicked By:
Drop Kicked By: