Stories recently tagged with 'Best'

Ektron and Web Application Projects (Part 1)(martinondotnet.blogspot.com)

submitted by qdosqdos(43) 1 year, 10 months ago

Working with Ektron CMS read more...

add a comment |category: |Views: 36

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

Writing Great Unit Tests: Best and Worst Practises(blog.codeville.net)

submitted by desmonddesmond(2009) 2 years, 5 months ago

A suite of good unit tests is immensely valuable: it documents your design, and makes it easier to refactor and expand your code while retaining a clear overview of each component’s behaviour. However, a suite of *bad* unit tests is immensely painful: it doesn’t prove anything clearly, and can severely inhibit your ability to refactor or alter your code in any way. How can you be sure to write unit tests that contribute positively to your project and don't end up being a liability? read more...

add a comment |category: |Views: 648

tags: another

10 Best Libraries for generating PDF Files(ajaxline.com)

submitted by Spider84Spider84(675) 2 years, 10 months ago

Today we are presenting collection of 10 best libraries for generating PDF files. read more...

add a comment |category: |Views: 684

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

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

How to: Optimize the strings’ comparison(dotnetfacts.blogspot.com)

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

Due to my web research I found some useful tips about how to compare two strings making full use of performance in .NET Framework. read more...

add a comment |category: |Views: 10

tags: another

Principles of simplicity(blog.madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 4 years, 6 months ago

Simplicity is about removing everything that can complicate the process of writing and maintaining software. read more...

2 comments |category: |Views: 17

tags: another

.NET Remoting Use-Cases and Best Practices(thinktecture.com)

submitted by salimsalim(780) 4 years, 11 months ago

Most people who don't know me personally assume that I value .NET Remoting above all other means of developing distributed applications. They might also assume that I'll use Remoting as a catch-all solution to any distributed application. read more...

1 comment |category: |Views: 36

tags: another

Impersonation helper class(born2code.net)

submitted by pjvandesandepjvandesande(195) 5 years, 6 months ago

A full working, easy to use class to Impersonate (run code within other windows user account). read more...

add a comment |category: |Views: 60

tags: another

SSW Rules to Better .NET Projects(ssw.com.au)

submitted by marcosmarcos(2779) 5 years, 6 months ago

A great set of rules with isues that you must keep in mind if you want to succed with .NET. Perfect to share it with all members of your team. read more...

add a comment |category: |Views: 21

tags: another