Christian Nagel's OneNotes

.NET Training, Consulting, Coaching - C#, Web Services, Enterprise Services, ASP.NET, Whidbey, Longhorn and More!

Affiliations

Books I've written

INETA UG Leaders

My Blogroll

Browse by Tags

All Tags » Technology (RSS)
77 Days
77 days to the launch of Visual Studio 2005. Somasgear blogs about upates for Visual Studio 2005 : August: new CTP for Visual Studio 2005 September: Visual Studio 2005 RC1 & Team Foundation Server Beta 3 TFS will ship in Q1 2006 TFS Beta 3 will have...
Faster Transactions with Enterprise Services...
...if a single database (SQL Server 2005) is used - no DTC needed! Transaction Promotion and Delegation will be supported by Enterprise Services! More information in Paul Fallon's Blog Transaction Promotion and Delegation coming soon to ES Transactions...
Friend Assemblies
The C# access modifier internal defines access is only allowed within the assembly. This is what .NET 1.0 defined. With .NET 2.0 friend assemblies are allowed to access these members, too. Friend assemblies are defined with the attribute class InternalsVisibleToAttribute...
ASP.NET 2.0 and SharePoint WebParts
ASP.NET 2.0 has great features for WebParts built in. The next version of SharePoint will be based on ASP.NET 2.0 WebParts. Mike Fitzmaurice has the roadmap for SharePoint and ASP.NET 2.0 WebParts, and what can be done now . A short summary about what...
Posted: Mar 17 2005, 07:21 PM by CNagel | with no comments
Filed under: ,
C++/CLI: Pointer Arithmetic with Embedded Value Types
With C++/CLI it is possible to use the interior_ptr<> keyword for using pointer arithmetic with value types that are embedded in a managed class. The array keyword is used to create .NET arrays. Here the array consists of 8 int values. array<int>...
Posted: Mar 15 2005, 10:22 AM by CNagel | with no comments
Filed under: ,
Predicates with .NET 2.0
In a previous blog entry I've shown the transformation of the Accumulate method from a traditional implementation to a generic implementation where the action is passed. This was the result of the last version that does something to every object in a...
Posted: Mar 10 2005, 10:06 AM by CNagel | with 4 comment(s)
Filed under: ,
Longhorn Milestone Dates
Bart De Smet has some Longhorn milestone dates . Christian
Project Green Roadmap
Microsoft outlined the roadmap for Project Green : Wave 1: 2005-2007 Common role-based shared user interface with Office integration Interoperability with service-oriented applications SQL Server Reporting Services as the default reporting environment...
Generic Methods
Following my blog about Generic Delegates and Anonymous Methods , here is more: Generics and anonymous methods can make code a lot more flexible. Following I show different ways to accumulate the balance of Account objects. The Account class is a simple...
Generic Delegates and Anonymous Methods
Generics and anonymous methods are great improvements of C#. Having a generic collection persons of type List<Person>, the objects of the collection can be accessed with a simple foreach statement: foreach (Person p in persons) { Console.WriteLine...
Posted: Mar 04 2005, 03:16 PM by CNagel | with 9 comment(s)
Filed under: ,
More Posts Next page »