Contents tagged with C#
-
Wrap Your EditorTemplates
A really cool feature in Razor is the EditorTemplate's ability to use Layouts. Just like regular Views, you can apply the a Layout. For example, a regular Textbox template:
-
HTML Output Abstraction and SubSonic
Jason has a posted a good read on the topic here.
-
Hiring!
We are hiring a full time ASP.NET Developer!
-
Links 4 Later IV
-
TDD, DB, and Unit Tests - Book or Article?
Can anyone recommend a good book or article on writing unit tests to cover object persistance and retrieval via a relational database? Or maybe on writing tests covering general data access. -
Agile Day Here @ travis.net.blog
Patterns for Daily Stand-up Meetings
"The daily stand-up meeting is simple to describe: the whole team meets every day f
or a quick status update. This short definition does not really tell you the subtle details that distinguish a good stand-up from a bad one."Now if only...Bridging the Gap
Scott Ambler's latest article in Dr. Dobb's Journal is available online here.
"Usability is a quality attribute of a system, which encompasses learnability, efficiency, memorability, error recovery, and end-user satisfaction." -
Links 4 Later II
-
Another Sharp?
Found a new baby, Script# Prototype.
-
Compiler Warnings vs Code Analysis
public class Team{private IList<Athlete> athletes;...}Compiler Warning: Field Team.athletes is never assigned to, and will always have its default value null.( its assigned to in my mapper layer )public class Team{public Team(){athletes = null;}private IList<Athlete> athletes;...}Code Analysis Warning: Team.Team() initializes field entries of type System.Collections.Generic.IList<Athlete> to null. Remove this initialization as it will be done automatically by the runtime.What am I doing wrong here? Initializing athletes in the Team constructor to a new List<Athlete>() seems like a waste since its being set/initialized in my factory. -
USB Barcode Scanners
Mike Hall posted about how easy it is to use WEPOS and a USB barcode scanner. Which got me thinking about a project I have coming on the horizon. I will be looking for a decent handheld barcode scanner(s) (maybe wireless), anyone recommend a good hand held scanner to work with WEPOS? Or maybe integrates with .NET somehow? Plug and Play? I dont think I want a "wedge" type.