How can I determine by reflection if the type of an object is defined by a class in my own assembly or by the .NET Framework?
I dont want to supply the name of my ow
obj.GetType().Assembly == System.Reflection.Assembly.GetExecutingAssembly()
Checks if the type is declared in the current assembly.