dotnetchris

Stories kicked by friends of dotnetchris

Developer Productivity Tools and Visual Studio Extensions(www.mehdi-khalili.com)

submitted by dpetersondpeterson(4397) 5 days, 23 hours ago

Mehdi Khalili shares what's in his toolbox for Visual Studio. It's a curated list of some of the best productivity boosters available. read more...

1 comment |category: |Views: 405

tags: another

C#/.NET Little Wonders: Select() and Where() with Indexes(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 9 days, 12 hours ago

We’ve talked about the Select() and Where() LINQ extension methods before. The Select() method lets you project from the source type to a new type, and the Where() method lets you filter the list of items to the ones you are interested in. Most people know of these methods in their simplest form, where they simply take a projection and predicate respectively that operates on just an element. However, there are overloads for both of these methods that take a delegate that operates on both the element and the index of the element. read more...

1 comment |category: |Views: 283

tags: another

Ten features I like about Coffeescript(openmymind.net)

submitted by dpetersondpeterson(4397) 10 days, 23 hours ago

Karl Seguin shares ten features he likes in Coffeescript. A great list for anyone learning Coffeescript, or anyone who isn't yet familiar with Coffeescript. read more...

1 comment |category: |Views: 199

tags: another

Creating Type Aliases in C#(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 11 days, 14 hours ago

The using directive of the C# programming language is often used to create namespace aliases, allowing types with matching names that appear in separate namespaces to be easily accessed. A lesser known use of the directive is to create aliases for types. read more...

2 comments |category: |Views: 266

tags: another

Visual Studio 11 User Interface Updates Coming in RC(blogs.msdn.com)

submitted by tom103tom103(161) 18 days, 15 hours ago

The Visual Studio team has taken into account some of the feedback about the beta, and presents the changes in the user interface of VS 11 RC read more...

1 comment |category: |Views: 253

tags: another

C#/.NET Little Wonders: The Enumerable.Repeat() Static Method(www.blackrabbitcoder.net)

submitted by BlackRabbitCoderBlackRabbitCoder(661) 23 days, 12 hours ago

The Enumerable.Repeat() method performs the simple task of creating a sequence by repeating an element a specific number of times. While this is, in of itself, a trivial need, it can also be used to drive more useful results such as repeating a generator delegate, or creating sequences out of single items. read more...

1 comment |category: |Views: 295

tags: another

String Matching in LINQ(blogs.telerik.com)

submitted by jnpetrovjnpetrov(95) 1 month, 2 days ago

Performing simple string equality tests is often not enough when application user convenience is key. Often only a fragment of a string is known to the user, or many of them. Sometimes there is a need to search for a fragment in multiple columns. Which options does OpenAccess and LINQ provide to perform string matching? Into which SQL is the LINQ expression translated? read more...

add a comment |category: |Views: 319

tags: another

Lazy Programming for Smarties(blogs.dotnetkicks.com)

submitted by bsenoffbsenoff(1583) 1 month, 7 days ago

As a programmer, I can honestly say that I am lazy. Forget the menial job of repeating tasks… if it takes me an hour to complete an iteration, I would rather spend 3 hours automating the process. You never know when you might need to do it again, and the click of a button is much more satisfying than an hour of processing data. I know I’m not the only one who feels this way either, otherwise Andy Hunt and Dave Thomas wouldn’t have codified the DRY principle in The Pragmatic Programmer…. Don’t Repeat Yourself. read more...

1 comment |category: |Views: 296

tags: another

What's new in Razor v2?(vibrantcode.com)

submitted by dpetersondpeterson(4397) 1 month, 15 days ago

Check out some of the new features and changes in the upcoming Razor view engine v2.0. Don't forget the source code is also now available on Codeplex! read more...

1 comment |category: |Views: 621

tags: another

A recipe for Dev to Production with ASP.NET MVC and RavenDB(devdirective.com)

submitted by RobertTheGreyRobertTheGrey(447) 1 month, 24 days ago

Been meaning to spend time looking into a NOSQL solution, but don't have time to do the research? Now is your chance! We've broken it down for you so you can get at this topic from dev to production. So, don't be tentative and let procrastination hold you back. Learn this stuff! You'll be happy you gave it the time it deserves... read more...

2 comments |category: |Views: 243

tags: another

5 1/2 Features every C# programmer should lust after(www.mindscapehq.com)

submitted by dpetersondpeterson(4397) 1 month, 28 days ago

Ivan Towlson at Mindscape shares 5 1/2 features in F# that every C# programmer should be drooling over. Particularly interesting are Object Expressions and Partial Applications. read more...

add a comment |category: |Views: 633

tags: another

5 things to learn about ASP.NET MVC 4(devdirective.com)

submitted by RobertTheGreyRobertTheGrey(447) 2 months ago

MVC took 3 versions to become a stable and widely usable web application development framework, but still had you doing many things from the ground up. Version 4 now comes with plenty more in the box and it's looking more and more like a web framework to be reckoned with read more...

2 comments |category: |Views: 665

tags: another

5 things you never thought about doing with MVC 3(devdirective.com)

submitted by RobertTheGreyRobertTheGrey(447) 2 months ago

Let's face it - there are a lot of sites out there now running MVC3, probably mostly using the same patterns. This is a taster of some of the creative ways that this versatile platform is being used. read more...

2 comments |category: |Views: 591

tags: another

Features NO ONE NOTICED in Visual Studio 11 Express Beta for Web(www.hanselman.com)

submitted by dpetersondpeterson(4397) 2 months, 4 days ago

Scott Hanselman takes us through new features in VS11 Express for Web that most people probably didn't notice. read more...

add a comment |category: |Views: 236

tags: another

What else is new in C# 5?(www.mindscapehq.com)

submitted by dpetersondpeterson(4397) 2 months, 4 days ago

Ivan Towlson shows us some of the neat new features in C# 5 that aren't getting as much press: method caller information and loop variables in lambdas. read more...

1 comment |category: |Views: 700

tags: another

Weak Events in .Net, the easy way(blog.functionalfun.net)

submitted by tom103tom103(161) 2 months, 8 days ago

A simple way to subscribe weakly to an event using Rx read more...

add a comment |category: |Views: 232

tags: another