Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Well, the difference is what you're using for the alternate value. He was using "Nothing" (I think) which requires that VB use the Is and IsNot operators, while String.Empty or "" requires that you use the = and <> operators (which get set by using the value type). So, if you want to use Nothing as your alternate value, then use reference type, but if you want to use String.Empty or "", then use the value type because it will change the operators that are used in the test.
|