Sign in
|
Join
in
Current Tags
Christian Nagel's OneNotes (blog)
Original ASP.NET Community Bloggers (group)
(Entire Site)
ASP.NET Weblogs
Home
Blogs
This Blog
Home
About
Syndication
RSS
Atom
Comments RSS
Recent Posts
Blog moved
Thinktecture Talks
Der Tod und das Mädchen
Cinema Tickets von Microsoft
usergroups.at started
Tags
ASP.NET
Avalon & Windows Forms
Book Writing
Code Snippets
Communication
Courses
Data & XML
Framework
INETA
Language
Personal
TechEd
Technology
Whidbey & Longhorn
XML
Affiliations
CodeWise
Christian Nagel's Home Page
.NET User Group Austria
INETA
MVP
Books I've written
Professional C#, 3rd Edition
Beginning Visual C#
Professional C# Web Services
Data-Centric .NET Programming with C#
Pro .NET 1.1 Network Programming
ASP to ASP.NET Migration Handbook
Visual C# .NET Developer's Cookbook
Enterprise Services with the .NET Framework
INETA UG Leaders
Andrew Filev (Russia)
Christian Nagel (Austria)
Klaus Aschenbrenner (Austria)
Andrea Saltarello (Italy)
Andreas Eide (Norway)
Shinja Strasser (Germany)
Frank Eller (Germany)
Damir Tomicic (Germany)
My Blogroll
Omri Gazitt
Eric Gunnerson
Jonathan Crossland
Greg Fee
Sascha P. Corti
Martin Gudgin
Rob Howard
Keith Pleas
Chris Sells
Sam Gentile
Christian Weyer
Ingo Rammer
Scott Watermasysk
Don Box
Scott Guthrie
Clemens Vasters
DataGrid Girl
Julia Lerman
Chris Brumme
Hannes Preishuber
Archives
September 2005
(1)
August 2005
(8)
July 2005
(7)
June 2005
(4)
May 2005
(1)
April 2005
(5)
March 2005
(10)
February 2005
(2)
January 2005
(5)
December 2004
(5)
November 2004
(8)
October 2004
(6)
September 2004
(10)
August 2004
(3)
July 2004
(5)
June 2004
(21)
May 2004
(22)
April 2004
(15)
March 2004
(13)
February 2004
(15)
January 2004
(20)
December 2003
(5)
November 2003
(13)
October 2003
(27)
September 2003
(19)
August 2003
(18)
July 2003
(10)
June 2003
(23)
Christian Nagel's OneNotes
.NET Training, Consulting, Coaching - C#, Web Services, Enterprise Services, ASP.NET, Whidbey, Longhorn and More!
Browse by Tags
All Tags
»
Language
(
RSS
)
Code Snippets
Framework
Technology
Whidbey & Longhorn
C#: The Party Just Started
Calvin Austin wrote an article C#: Is The Party Over? for JDJ. This article has a lot of misleading and wrong information. What can be expected from an article for a Java magazine? Contrary on that, in my opinion the party just started ;-) C# 2.0 has...
Posted
Aug 20 2005, 05:55 PM
by
CNagel
with | with
4 comment(s)
Filed under:
Language
Nullable Types change the runtime
With Visual Studio 2005, the CTP August 2005 has new runtime features for Nullable types. Nullable types had unexpected behavior with boxing to Object (null is lost). This behavior could only be changed by changing the runtime. Somasgear explains with...
Posted
Aug 12 2005, 10:55 PM
by
CNagel
with | with
2 comment(s)
Filed under:
Language
,
Framework
C++/CLI, IDisposable and Finalize
With Beta 2, C++/CLI changed the code that is generated with the destructor (~Class) and the explicit finalize (!Class). It's a great improvement! Now the Dispose(true) pattern for embedded objects is implemented with this code that just contains a destructor...
Posted
Apr 27 2005, 09:15 PM
by
CNagel
with | with
2 comment(s)
Filed under:
Language
C# 2.0 and C++/CLI Event
Last week I've done an INETA sponsored talk for the .NET User Group Styria , thanks to the invitation of Klaus Aschenbrenner . The attendees have been zealous from possibilities of generics and anonymous methods. Some more information about generics and...
Posted
Apr 20 2005, 09:58 AM
by
CNagel
with | with
2 comment(s)
Filed under:
Language
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 | with
no comments
Filed under:
Technology
,
Language
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 | with
4 comment(s)
Filed under:
Technology
,
Language
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...
Posted
Mar 06 2005, 04:16 PM
by
CNagel
with | with
10 comment(s)
Filed under:
Technology
,
Whidbey & Longhorn
,
Code Snippets
,
Language
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 | with
7 comment(s)
Filed under:
Technology
,
Language
C++/CLI Value Types and Memory Location
With C++/CLI value types can be put on the stack, or on the native or managed heaps. value class MyData { property int Simple; }; Declaring the variable locally, the object is put on the stack. MyData d1; d1.Simple = 11; Using the pointer syntax, the...
Posted
Feb 28 2005, 02:05 PM
by
CNagel
with | with
1 comment(s)
Filed under:
Technology
,
Language
Dispose and Finalize with C++/CLI, C# and VB
Depending on the .NET language more or less of implementing resource management with the interface IDisposable and the finalizer is hidden. Interestingly, with VB nothing is hidden - however all the code is created automatically with Visual Studio 2005...
Posted
Jan 23 2005, 07:26 PM
by
CNagel
with | with
2 comment(s)
Filed under:
Technology
,
Code Snippets
,
Language
More Posts
Next page »
Terms of Use