Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / acceptance-tests / GCStressTests / AssemblyExtensions.cs
1 using System;
2 using System.IO;
3 using System.Reflection;
4
5 namespace System.Runtime.Loader
6 {
7     public static class AssemblyExtensions
8     {
9         public static Type[] GetTypes(this Assembly assembly)
10         {
11             return assembly.GetTypes ();
12         }
13     }
14 }