The runtime-type tag has no wiki summary.
5
votes
5answers
325 views
When to use run-time type information?
If I have various subclasses of something, and an algorithm which operates on instances of those subclasses, and if the behaviour of the algorithm varies slightly depending on what particular subclass ...
2
votes
2answers
126 views
Get *value* of custom property on object instance?
Using .NET 4, C#
Let's say I have class Info that extends CustomTypeDescriptor. An instance of class Info has a dictionary of <string, object> pairs, loaded at runtime.
I'd like to be able to ...
0
votes
1answer
181 views
runtime determine type for C
If the type of a variable must be determined as runtime in C but the variable name is fixed and given, is there any way to reuse the code that involves the variable?
Actually I am asking about the C ...