Thoughts on Software Development, .Net, OOP, Design Patterns and all things cool
Browse by Tags
All Tags »
.Net (
RSS)
-
|
***** Disclaimer: I am a total NOOBIE to working on Smart Device Projects ***** Today I needed to upgrade on of our smart device projects from Compact Framework 2.0 to 3.5. I figured that I could do this via the properties dialog, but could not (see image...
|
-
|
If you have not hear, Karl Seguin has authored a great, short eBook which he is giving away free to the world. This book is based of his blog series of the same title. Do yourself a favor and go download this book, it is pretty short and is a great...
|
-
|
Today I needed to load in an XML file into memory for later use. At first I was going to use the XmlDocument library (old habits die hard), but later switched over to the XDocument library. Why, not because one is better (ok, so I think that XDocument...
|
-
|
Today it dawned on me another nice little side affect of automatic properties. I was creating an interface today that ONLY had properties and when I was done I needed to create the concrete object that implemented said interface. All I had to do...
|
-
|
In my last post I talked about how you can share a single config file among multiple project in a solution. One of the feedback comments I got was how to have a single config file for multiple developers or even multiple environments. So,...
|
-
|
Over the past few weeks I have worked on a few products for my client that will be used as API's. These API's will be used by either their own (external) clients or other internal departments. Working on these projects made me think...
|
-
|
In the past I have written about the Fail Fast principle. This is a principle I try to live my development life by. I would rather explicitly check for possible failure points then have a runtime error crop up. In the past when writing...
|
-
|
If you have not taken a look at Linq (either Linq to objects or Linq to sql) you need to do so. I would say it is the coolest new feature that was released with .Net 3.5. But there is one thing that you MUST keep in mind when using Linq. ...
|
-
|
This post is another in the recent string of How-to's. But it is just so hard to resist. .Net 3.5 has so many cool features, it is just fun to explore them all. Ok, so here is the issue we are going to solve today. We have a list of entities and we...
|
-
|
Today I ran into a case where I needed to convert a result set of IEnumerable<Entity> from a Linq2Sql command to a List<IEntity> in order to return the data back to the caller. We all know that giving the following code public...
|
-
|
With the recent release of .Net 3.5 one of the new features they added is Automatic Properties. Automatic Properties allow you to NOT need to create an instance variable for your properties (assuming you only need simply getter/setter functionality),...
|
-
|
In C# .Net 3.5 they added the var keyword. The intent the var keyword is to allow the object type to be implicitly inferred from the expression used to initialize the variable. However, more often then not I hear people using it because it saves them...
|
-
|
The System.ComponentModel namespace (more information here ) in .Net contains an array of various attributes that every .Net developer should know about. These attributes provide a way for the developer to implement design-time and run-time behavior...
|
-
|
Microsoft has announced the dates and locations for their next Launch Event. They are launching VS 2008, SQL 2008 and Windows Server 2008 all here. One nice thing about attending these Launch Events is the FREE SOFTWARE. You can get more information about...
|
-
|
Brad Abrams announced that there is an updated version of the poster available. You can get more information from Brad here . Till next time,
|
More Posts
Next page »