AssemblyExtensions.cs 271 B

1234567891011121314
  1. using System;
  2. using System.IO;
  3. using System.Reflection;
  4. namespace System.Runtime.Loader
  5. {
  6. public static class AssemblyExtensions
  7. {
  8. public static Type[] GetTypes(this Assembly assembly)
  9. {
  10. return assembly.GetTypes ();
  11. }
  12. }
  13. }