Tagged Questions
0
votes
3answers
267 views
Python: Inheriting builtin types dict and list [closed]
I have always been confused and falling over the minute details while inheriting the builtin types in Python e.g. list and dict.
Can you please point to the tutorials and docs which give a ...
4
votes
2answers
1k views
Is there a function to check if an object is a builtin data type?
I would like to see if an object is a builtin data type in C#
I don't want to check against all of them if possible.
That is, I don't want to do this:
Object foo = 3;
Type ...