Stories recently tagged with '.NET' Subscribe to this feed

.NET CF Performance Best Practices (jsprunger.com)

submitted by daymandayman(35) 1 day, 6 hours 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: 5

tags: another

MEF - Secure Directory catalog (blogs.microsoft.co.il)

submitted by bnayaebnayae(105) 1 month, 2 days ago

How to secure your MEF catalog read more...

add a comment | category: | Views: 7

tags: another

Best of 2009 (blog.prabir.me)

submitted by prabirshresthaprabirshrestha(633) 1 month, 9 days ago

Best of 2009 Blog Posts of prabir.me read more...

add a comment | category: | Views: 4

tags: another

Introducing LiquidSilver SharePoint Framework (codebender.denniland.com)

submitted by dzengdzeng(805) 1 month, 17 days ago

LiquidSilver is a SharePoint Framework. It provides various classes and functions to deal with common tasks in any SharePoint project development in a much easier and faster way. Written in C# 3.0 and .NET Framework 3.5, LiquidSilver is compatible with WSS 3.0 and MOSS 2007. read more...

add a comment | category: | Views: 8

tags: another

5 Very Useful C# Attributes (hatim.indexdev.net)

published 1 month, 23 days ago, submitted by HatimrHatimr(1260) 1 month, 23 days ago

A look at some of the useful attributes in c# read more...

6 comments | category: | Views: 1570

tags: another

Animaonline Weather API 2.5.0.0 Is Here (animaonline.blogspot.com)

submitted by animaonlineanimaonline(275) 1 month, 24 days ago

Animaonline Weather API 2.5.0.0 Is Here! What's New: The core has been rewritten from scratch and now utilizes LINQ. The API is now much faster and more stable. read more...

add a comment | category: | Views: 8

tags: another

Smarten up your UI with Task Dialogs (www.developerfusion.com)

published 2 months, 7 days ago, submitted by james.crowleyjames.crowley(660) 2 months, 7 days ago

Put your message boxes on steroids. Take advantage of the new-look dialogs in Windows Vista and Windows 7 in your applications and smarten up your UI. read more...

1 comment | category: | Views: 586

tags: another

Use Google's Closure Compiler in C# (madskristensen.net)

published 3 months ago, submitted by madskristensenmadskristensen(8565) 3 months, 1 day ago

A very simple and small C# class for utilizing the Google Closure Compiler API for minifying JavaScript. read more...

add a comment | category: | Views: 335

tags: another

A Singleton Service Locator Pattern (stefanoricciardi.net)

submitted by stefanoricstefanoric(85) 3 months, 6 days ago

A simple example of a singleton service locator in C# read more...

add a comment | category: | Views: 25

tags: another

Looping through elements in HashTable (www.logiclabz.com)

submitted by webtipswebtips(260) 3 months, 7 days ago

A simple method in C# .Net to enumerate through all the keys/values of a Hashtable. read more...

add a comment | category: | Views: 11

tags: another

Parallel LINQ (PLINQ) with Visual Studio 2010 (www.leniel.net)

submitted by lenielleniel(415) 3 months, 7 days ago

On the last day of May I wrote about how to calculate prime numbers with LINQ in C#. To close that post I said that I’d use the primeNumbers delegate to evaluate PLINQ (Parallel LINQ) and measure the performance gains when the same calculation is done in parallel instead of in a sequential fashion. As promised, today I show the performance gains when the same delegate is run in 2 cores (parallel) instead of only 1 core (sequential). In this post you'll also see the new parallel debugging windows that come with Visual Studio 2010: Parallel Stacks and Parallel Tasks. read more...

add a comment | category: | Views: 16

tags: another

What's New in the BCL (Base Class Library) in .NET 4 Beta 2 (blogs.msdn.com)

submitted by atifazizatifaziz(990) 3 months, 8 days ago

Justin Van Patten of the BCL (Base Class Library) team provides a rundown of what's new in the BCL with .NET 4 Framework Beta 2, in addition to what was included in Beta 1. read more...

add a comment | category: | Views: 17

tags: another

List of 200 (and growing) .Net Developers on Twitter, via Twitter List (twitter.com)

submitted by powerrushpowerrush(3754) 3 months, 10 days ago

A compiled list of 200 (and growing) .Net Developers on Twitter, via the new Twitter feature, "Twitter Lists" read more...

1 comment | category: | Views: 16

tags: another

Why Linq2NHibernate is not production ready (codeofrob.com)

submitted by robashtonrobashton(65) 3 months, 11 days ago

An opinion on why you shouldn't be using Linq2Nhibernate in production systems read more...

add a comment | category: | Views: 36

tags: another

Download Microsoft Visual Studio 2010 Beta 2 Today! (goneale.com)

submitted by gonealegoneale(1040) 3 months, 18 days ago

Get it now! This is a public release, not just for MSDN subscribers! For more information check the Official Microsoft, Scott Gu & Hanselman.. read more...

add a comment | category: | Views: 9

tags: another

GroupBy and Average with Lambda Expressions (www.digitalpropulsion.org)

submitted by panicpanic(30) 4 months, 2 days ago

I was recently tasked with generating a string of averages based on a list of business objects. The business object has a string property called VehicleName and a decimal property called StandardMpg. The averages needed to be calculated per VehicleName, so this is to be what I group on. read more...

add a comment | category: | Views: 47

tags: another