I was reading More Joel on Software when I came across Joel Spolsky saying something about a particular type of programmer knowing the difference between an i
i
In C#, int is just an alias for System.Int32, string for System.String, double for System.Double etc...
System.Int32
System.String
System.Double
Personally I prefer int, string, double, etc. because they don't require a using System; statement :) A silly reason, I know...
using System;