P
Paul W
Hi - what's best:
ResourceName = CType(dtr("ResourcePoolName"), String)
or
ResourceName = dtr("ResourcePoolName").ToString
or
ResourceName = dtr.GetString(dtr.GetOrdinal("ResourcePoolName"))
or ....?
I guess my main criteria is runtime performance. I don't want to use
dtr.getString(0) in case the field orders change.
Thanks,
Paul.
ResourceName = CType(dtr("ResourcePoolName"), String)
or
ResourceName = dtr("ResourcePoolName").ToString
or
ResourceName = dtr.GetString(dtr.GetOrdinal("ResourcePoolName"))
or ....?
I guess my main criteria is runtime performance. I don't want to use
dtr.getString(0) in case the field orders change.
Thanks,
Paul.