Since I have option strict on in all my work, I find that I'm converting and casting constatly because of it. Pulling data out of a datareader, whats the diference between these two??

VB Code:
  1. 'Should I do it this way??
  2. Acct.AcctPass = CStr(r("AcctPass"))
  3.  
  4. 'Or this way??
  5. Acct.AcctPass = CType(r("AcctPass"), String)