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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -