DotNetShoutout - Latest published stories in Foundation
8
shouts

First Encounters of the MEF Kind

published 17 hours, 19 minutes ago posted by mceranskimceranski 1 day, 17 hours, 58 minutes ago
Tuesday, March 16, 2010 1:20:20 PM GMT Monday, March 15, 2010 12:41:47 PM GMT
One of the newest additions to the .NET 4 framework is MEF. MEF stands for the Managed Extensibility Framework and is the answer to your prayers if you are building an app that allows developers to extend its functionality by building plugins. MEF makes the task of loading assemblies and utilizing their functionality very simple. Before we go any further there are a few basic terms that you must understand before you start using MEF: The Catalog is responsible for loading assemblies. There are se... (more)
category: Foundation | clicked: 49 | comment | | source: www.codecapers.com
tags: dotnet, Framework 4, MEF
7
shouts

Atanas Hristov: Design Patterns – State Pattern

published 17 hours, 19 minutes ago posted by http://atanashristov.blogspot.com/http://atanashristov.blogspot.com/ 1 day, 13 hours, 11 minutes ago
Tuesday, March 16, 2010 1:20:20 PM GMT Monday, March 15, 2010 5:28:34 PM GMT
The is a behavioural pattern. The behaviour of object changes accordingly to its internal state. We move the logic to property "State" which has method Handle() and call this method. We change the behaviour of the object as we just switch the value of the "State" property. This is an exapmple of using the State pattern to implement a traffic light. (more)
category: Foundation | clicked: 42 | comment | | source: atanashristov.blogspot.com
tags: Design Pattern
5
shouts

Custom Layout in WPF « Sankarsan’s Journal

published 1 day, 18 hours, 43 minutes ago posted by http://sankarsan.myopenid.com/http://sankarsan.myopenid.com/ 2 days, 13 hours, 23 minutes ago
Monday, March 15, 2010 11:56:09 AM GMT Sunday, March 14, 2010 5:15:56 PM GMT
The layout system in WPF is responsible for measuring and arranging the user interface elements within the panel and displaying them on screen.This is a two phase process.In the measure phase the panel will measure what is the amount of space required by each of it’s children, in order to find out the total space required.In the next arrange phase it will find out how much space it actually has and accordingly render the elements as per predefined logic. WPF provides a set of layout panels like WrapPa... (more)
category: Foundation | clicked: 29 | comment | | source: sankarsan.wordpress.com
6
shouts

Dynamic Object in C# 4.0 Part 1

published 1 day, 18 hours, 43 minutes ago posted by dotnetsparkdotnetspark 4 days, 8 hours, 55 minutes ago
Monday, March 15, 2010 11:56:09 AM GMT Friday, March 12, 2010 9:44:01 PM GMT
This article will give a basic introduction of Dynamic Object in C# 4.0 (more)
category: Foundation | clicked: 35 | comment | | source: www.dotnetspark.com
tags: C# 4, DotNetSpark, Dynamic Data
7
shouts

Basic Instincts - Generic Co- and Contravariance in Visual Basic 2010

published 1 day, 18 hours, 43 minutes ago posted by KhaledKhaled 4 days, 5 hours, 41 minutes ago
Monday, March 15, 2010 11:56:09 AM GMT Saturday, March 13, 2010 12:58:14 AM GMT
Visual Studio 2010 has a new feature called generic co- and contravariance that is available when working with generic interfaces and delegates. In versions that precede Visual Studio 2010 and the Microsoft .NET Framework 4, generics behave invariantly with respect to subtyping, so conversions between generic types with different type arguments aren’t allowed. (more)
category: Foundation | clicked: 40 | comment | | source: msdn.microsoft.com
7
shouts

realfiction - rfb: Marrying MSBuild and PowerShell

published 2 days, 17 hours, 50 minutes ago posted by http://fquednau.pip.verisignlabs.com/http://fquednau.pip.verisignlabs.com/ 3 days, 11 hours, 44 minutes ago
Sunday, March 14, 2010 12:49:12 PM GMT Saturday, March 13, 2010 6:55:19 PM GMT
I have previously written about rfb, MsBuild without XML. The next important step for me was to introduce a seamless integration with PowerShell (more)
category: Foundation | clicked: 42 | comment | | source: realfiction.net
8
shouts

Joins in LINQ to SQL - Raj Kaimal

published 2 days, 17 hours, 50 minutes ago posted by KhaledKhaled 3 days, 8 hours, 43 minutes ago
Sunday, March 14, 2010 12:49:12 PM GMT Saturday, March 13, 2010 9:56:31 PM GMT
Joins in LINQ to SQL The following post shows how to write different types of joins in LINQ to SQL. I am using the Northwind database and LINQ to SQL for these examples.NorthwindDataContext dataContext = new NorthwindDataContext(); Inner Joinvar q1 = from c in dataContext.Customers join o in dataContext.Orders on c.CustomerID equals o.CustomerID select new { c.CustomerID, c.ContactName, o.OrderID, o.OrderDate ... (more)
category: Foundation | clicked: 39 | comment | | source: weblogs.asp.net
6
shouts

TFS 2010 Installation and Upgrade success rates - Brian Harry

published 3 days, 17 hours, 22 minutes ago posted by impaimpa 4 days, 12 hours, 51 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 5:47:52 PM GMT
As I’ve discussed in the past, we work VERY hard in this release to really improve the ease of installing TFS.  We’ve done everything from making more components optional, reducing prereqs, configuring prereqs for you, providing better defaults, implementing better diagnostic checks, making configuration serviceable and more.  It’s been a lot of work but I think it has really paid off in really transforming the TFS install experience from one that is very ... (more)
category: Foundation | clicked: 28 | comment | | source: blogs.msdn.com
tags: TFS
5
shouts

SilverCrux.com Blog | C# 101: Virtual Function Members Vs Abstract Function Members

published 3 days, 17 hours, 22 minutes ago posted by http://parag-silvercrux.myopenid.com/http://parag-silvercrux.myopenid.com/ 4 days, 21 hours, 17 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Friday, March 12, 2010 9:22:31 AM GMT
In this article we analyze difference between abstract and virtual (more)
category: Foundation | clicked: 38 | comment | | source: www.silvercrux.com
tags: Abstract, C#, Virtual
7
shouts

Simple-MongoDB – Simplified storage of entities

published 3 days, 17 hours, 22 minutes ago posted by sedanwersedanwer 6 days, 8 hours, 4 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Wednesday, March 10, 2010 10:35:11 PM GMT
New features Just checkedin some new features to my C# 4.0 based MongoDB driver: New simplified API, using generics and adds pluralization for collection Added SimoIoC which will resolve resources like pluralizer, commands etc. this lets you replace certain parts of the implementation with own implementations. Support for document references via the new type SimoReference All code is written for .Net 4.0 and is tested against MongoDB v.1.2.4 Why Simple-MongoDB? Simple support for POCOS. No mappings... (more)
category: Foundation | clicked: 43 | comment | | source: daniel.wertheim.se
tags: MongoDB, POCO, Simple-MongoDB
7
shouts

5 Tips to get the most out of your coding time

published 3 days, 17 hours, 22 minutes ago posted by HatimRHatimR 5 days, 12 hours, 51 minutes ago
Saturday, March 13, 2010 1:17:39 PM GMT Thursday, March 11, 2010 5:48:08 PM GMT
I remember seeing an add from Microsoft I believe for hiring programmers and the jist of it was “We give you an office with a door”. Why you might wonder? (more)
category: Foundation | clicked: 77 | comment | | source: hatim.indexdev.net
tags: Consulting, Productivity, time management golf
6
shouts

MVVM - Creating ViewModel : create dynamic proxies with Castle

published 4 days, 17 hours, 46 minutes ago posted by jmix90jmix90 5 days, 8 hours, 18 minutes ago
Friday, March 12, 2010 12:53:20 PM GMT Thursday, March 11, 2010 10:21:40 PM GMT
Here is the next episode of our serie MVVM - Creating ViewModel. Today we are going to discover how to create ViewModel from business objects by creating dynamic proxies after a little recap on what they are. (more)
category: Foundation | clicked: 53 | 1 comment | | source: blog.lexique-du-net.com
tags: Dynamic Proxy, INotifyPropertyChanged, MVVM, M-V-VM, Pattern, Patterns, Patterns and Practices, WPF, XAML
6
shouts

Two More Fixes for Visual Studio 2010 Release Candidate - Nicholas Allen

published 5 days, 18 hours, 23 minutes ago posted by iftekharahmedamitiftekharahmedamit 6 days, 1 hour, 27 minutes ago
Thursday, March 11, 2010 12:16:07 PM GMT Thursday, March 11, 2010 5:12:40 AM GMT
Two fixes were published over the last few days to address issues reported with the Visual Studio 2010 release candidate. The first fix resolves a crash that can sometimes occur when hovering over an identifier to bring up a tooltip information display. This is a different issue than the crash when bringing up an Intellisense display with an active screen reader that was fixed a few weeks ago. The second fix addresses an issue with the... (more)
category: Foundation | clicked: 25 | comment | | source: blogs.msdn.com
tags: Visual Studio 2010, Visual Studio 2010 RC, VS 2010, VS 2010 RC, VS2010, VS2010 RC
3
shouts

SharePoint 2010 Client Object Model - Managed Client OM - How to use

published 5 days, 18 hours, 23 minutes ago posted by PraveenPraveen 6 days, 13 hours, 42 minutes ago
Thursday, March 11, 2010 12:16:07 PM GMT Wednesday, March 10, 2010 4:57:44 PM GMT
After I have written nice posts on complete details on Client Object Model and ECMAScript introduction planned to write introduction posts on Managed Client OM and Silverlight Client OM. So, in this post, we will discuss on Managed Client Object Model. So, Managed Client Object Model is simple .NET code written based on CLR. So, you can use C#.net or VB.net to write code and execute whatever you want against SharePoint server.So, you can use any c# project to write code and run it. But, are there any... (more)
category: Foundation | clicked: 20 | comment | | source: praveenbattula.blogspot.com
tags: Client Object Model, managed code, SharePoint 2010
4
shouts

Programming Practices: Part 1 – Watching from a distance - Brian Harry

published 6 days, 19 hours, 10 minutes ago posted by jantujantu 7 days, 11 hours, 44 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Tuesday, March 09, 2010 6:55:36 PM GMT
Programming Practices: Part 1 – Watching from a distance I figured I’d start the series with a more abstract post about what watching me code looks like.  It was interesting to observe myself doing it because I didn’t really realize the degree to which I do some things.  If I were to summarize my overall approach to coding with a simple description, I’d call it “Annealing” – from the Encarta dictionary: “metallurgy craft transitive and intransitive verb to subject an alloy, metal, or glass to a process ... (more)
category: Foundation | clicked: 57 | comment | | source: blogs.msdn.com
tags: Visual Studio
6
shouts

Automated “Unit” Testing – It’s Not Just for TDD, It’s for Bug Fixing Too! | GrumpyDev

published 6 days, 19 hours, 10 minutes ago posted by http://www.grumpydev.com/http://www.grumpydev.com/ 7 days, 16 hours, 46 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Tuesday, March 09, 2010 1:53:22 PM GMT
Automated “Unit” Testing – It’s Not Just for TDD, It’s for Bug Fixing Too! Disclaimer – What I’m discussing here isn’t unit testing (hence the quotes), it’s more functional or integration testing; but as the term “Unit Testing” is often “abused” to mean “anything that uses a (unit) testing framework” so I’ve included it in the title to avoid confusion.Introduction I’m currently using TinyIoC in my first forays into MonoTouch development, and my initialisation code was throwing a resolution error on sta... (more)
category: Foundation | clicked: 56 | comment | | source: www.grumpydev.com
tags: C#, Debugging, Testing, tinyioc, unit testing
5
shouts

.NET Framework 4: A first look at the new features « Mehroz’s Experiments

published 6 days, 19 hours, 10 minutes ago posted by mehrozmehroz 7 days, 12 hours, 27 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Tuesday, March 09, 2010 6:12:06 PM GMT
Visual Studio 2010 Release Candidate has been made available a few weeks back. The .NET Framework 4 is arriving with some great new enhancements for all of us, and in this post, I plan to briefly discuss some of those exciting features that caught my eye. Here's the list of the features discussed: Parallel extensions Entity framework 4 Managed Extensibility Framework Silverlight 4 DLR and dynamic keyword Code contracts Optional Parameters ... (more)
category: Foundation | clicked: 64 | comment | | source: smehrozalam.wordpress.com
tags: .net 4, C#, Code Contracts, DLR, dotnet, dynamic, EF4, Entity Framework, MEF, Parallelism, Silverlight 4, TPL, VS2010
8
shouts

Data Points - Precompiling LINQ Queries

published 6 days, 19 hours, 10 minutes ago posted by KhaledKhaled 8 days, 9 hours, 45 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Monday, March 08, 2010 8:54:24 PM GMT
When using LINQ to SQL or LINQ to Entities in your applications, it’s important to consider precompiling any query you create and execute repeatedly. I often get caught up in completing a particular task and neglect to leverage precompiled queries until I’m fairly far along in the development process. This is much like “exception handling disease,” where devs try to shoehorn exception handling into an app after the fact. (more)
category: Foundation | clicked: 36 | comment | | source: msdn.microsoft.com
9
shouts

Innovation Showcase : Identity and Access Control Guide Released

published 6 days, 19 hours, 10 minutes ago posted by jbarnesjbarnes 8 days, 14 hours, 59 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Monday, March 08, 2010 3:40:45 PM GMT
08 March 2010 Identity and Access Control Guide Released Imagine a world where you don't have to worry about authentication. Imagine instead that all requests to your application already include the information you need to make access control decisions and to personalize the application for the user. In this world, your applications can trust another system component to securely provide user information, such as the user's name or e-mail address, a manager's e-mail address, or even a purchasing auth... (more)
category: Foundation | clicked: 32 | comment | | source: blogs.msdn.com
5
shouts

.NET - Writing Efficient String Functions in C#

published 6 days, 19 hours, 10 minutes ago posted by KhaledKhaled 8 days, 10 hours, 24 minutes ago
Wednesday, March 10, 2010 11:28:54 AM GMT Monday, March 08, 2010 8:15:16 PM GMT
The .NET Framework provides a set of powerful string functions. These building blocks can be used to write more complex algorithms for handling string data. However developers aiming to write fast and efficient string functions must be careful of how they use those building blocks. To write efficient string handling functions, it is important to understand the characteristics of string objects in C#. (more)
category: Foundation | clicked: 61 | comment | | source: www.dotnetcurry.com
Previous 1 2 3 4 5 6 7 8 9 10 ... 58 59 Next