Stories recently tagged with 'practices'

Getting Started with SQL Server Data Access using Data Access Applicat(beyondrelational.com)

submitted by jacobsebastianjacobsebastian(3639) 1 year, 9 months ago

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

add a comment |category: |Views: 17

tags: another

.NET CF Performance Best Practices(jsprunger.com)

submitted by daymandayman(80) 2 years ago

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 ignore performance considerations until necessary – I don’t think you can apply that to .NET CF... read more...

add a comment |category: |Views: 33

tags: another

The Disposable Pattern(nuclex.org)

submitted by CygonCygon(134) 2 years, 2 months ago

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 to implement IDisposable and when to implement the full Disposable Pattern. read more...

add a comment |category: |Views: 15

tags: another

12 ASP.NET MVC Best Practices(codeclimber.net.nz)

submitted by keyvankeyvan(4086) 2 years, 3 months ago

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

add a comment |category: |Views: 844

tags: another

The Using Block(csharp-codesamples.com)

submitted by rohanwarangrohanwarang(80) 2 years, 10 months ago

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

add a comment |category: |Views: 10

tags: another

Using tuples in C# functions and dictionaries(rabdullin.com)

submitted by abdullinabdullin(385) 3 years, 4 months ago

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

add a comment |category: |Views: 307

tags: another

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

submitted by abdullinabdullin(385) 3 years, 4 months ago

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

add a comment |category: |Views: 55

tags: another

Prototyping in Software Development - 4(silicusblogs.com)

submitted by Ravi.silicusRavi.silicus(120) 3 years, 5 months ago

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

add a comment |category: |Views: 9

tags: another

Prototyping in Software Development - 3(silicusblogs.com)

submitted by Ravi.silicusRavi.silicus(120) 3 years, 5 months ago

Tips and Techniques in User Interface Prototyping during Software Development read more...

add a comment |category: |Views: 3

tags: another

Prototyping in Software Development - 2(silicusblogs.com)

submitted by Ravi.silicusRavi.silicus(120) 3 years, 5 months ago

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

add a comment |category: |Views: 6

tags: another

Prototyping in Software Development - 1(silicusblogs.com)

submitted by Ravi.silicusRavi.silicus(120) 3 years, 5 months ago

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

add a comment |category: |Views: 23

tags: another

Lean Software Development(codebetter.com)

submitted by Ravi.silicusRavi.silicus(120) 3 years, 5 months ago

Very good article and some good steps on Lean Software Development read more...

add a comment |category: |Views: 9

tags: another

Lean Software Development(codebetter.com)

submitted by Ravi.silicusRavi.silicus(120) 3 years, 5 months ago

Very good article and some good steps on Lean Software Development read more...

add a comment |category: |Views: 9

tags: another

Software development dogmata - good practices gone bad(littletutorials.com)

submitted by klasbasklasbas(250) 3 years, 5 months ago

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/creates them and until they get massively popular. read more...

add a comment |category: |Views: 336

tags: another

Process Implementation and TFS(Team Foundation Server)- Part1(silicusblogs.com)

submitted by Ravi.silicusRavi.silicus(120) 3 years, 6 months ago

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

add a comment |category: |Views: 36

tags: another

How to: Optimize the memory usage with strings(dotnetfacts.blogspot.com)

submitted by eugenciutaeugenciuta(715) 3 years, 10 months ago

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 a string, all the available memory can be swallowed by a huge amount of unwanted string duplicates or unclaimed string objects. Now let's see how a string object should be handled to preserve memory. read more...

add a comment |category: |Views: 53

tags: another