Identifying Late binding in VB.NET -
i have application had been migrated vb vb.net. in few places in vb there code written using trim operation on non-string datatype. code runs in vb same produce error on migrated code in vb.net.following code snippet
dr["n0"].trim() ----where "no" integer or non-string datatype
i want identify these places in migrated vb.net code base. how can without minimal effort? efficient idea or technique?
just gate these typeof http://msdn.microsoft.com/en-us/library/0ec5kw18.aspx, use debug.alert(); you're going through program alerted (in debug mode).
Comments
Post a Comment