Implemented Assembly.ToString().

This commit is contained in:
jfrijters 2012-04-18 09:19:53 +00:00
Родитель 3563bf2809
Коммит b5a5a34abc
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,11 @@ namespace IKVM.Reflection
this.universe = universe;
}
public sealed override string ToString()
{
return FullName;
}
public abstract Type[] GetTypes();
public abstract AssemblyName GetName();
public abstract string ImageRuntimeVersion { get; }