What does Assembly.GetExportedTypes() do? How is it different from Assembly.GetTypes()
Can you explain with example?
GetExportedTypes() returns only types which are visible outside the assembly in question. "Visible" means public types and public types nested within other public types.
GetExportedTypes()