Are all of these equal? Under what circumstances should I choose each over the others?
var.ToString()
CStr(var)
CType(var,
According to the certification exam you should use Convert.ToXXX() whenever possible for simple conversions because it optimizes performance better than CXXX conversions.