Assembly.cs 910 B

1234567891011121314151617181920212223242526272829303132333435
  1. namespace System.Reflection
  2. {
  3. partial class Assembly
  4. {
  5. public static Assembly LoadFrom (string assemblyFile)
  6. {
  7. throw new NotImplementedException ();
  8. }
  9. public static Assembly GetCallingAssembly () { throw null; }
  10. public static Assembly Load (byte[] rawAssembly, byte[] rawSymbolStore)
  11. {
  12. throw new NotImplementedException ();
  13. }
  14. public static Assembly GetEntryAssembly ()
  15. {
  16. throw new NotImplementedException ();
  17. }
  18. public static Assembly GetExecutingAssembly () { throw null; }
  19. public static Assembly Load (AssemblyName assemblyRef) { throw null; }
  20. public static Assembly LoadFile (string path) { throw null; }
  21. public static Assembly LoadFrom (string assemblyFile, byte[] hashValue, System.Configuration.Assemblies.AssemblyHashAlgorithm hashAlgorithm) { throw null; }
  22. public static Assembly Load (string unused)
  23. {
  24. throw new NotImplementedException ();
  25. }
  26. }
  27. }