Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Detecting method in sub class
Message
From
31/03/2015 11:56:16
 
 
To
31/03/2015 11:53:27
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
VB 9.0
OS:
Windows 8.1
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01617154
Message ID:
01617506
Views:
16
>>Passing type works fine (as far as I can test).
>>
>>But if you go back to your original code then surely this will always end up with the object type.:
While loType <> GetType(Object)
>>            loType = loType.BaseType
>>End While
Seems to me it should be:
While loType.BaseType <> GetType(Object)
>>            loType = loType.BaseType
>>End While
>
>Could it be possible the code I originally got was assuming only one level of sub class to verify with?

Could be. But in that case there would be no point in looping. If the initial BaseType wasn't object then you'd know it was a child class.


>If that is the case, the change you suggested would then work on multiple levels.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform