Fixing incompatibility with old versions

This commit is contained in:
Eugene Sadovoi 2021-06-01 17:35:18 -07:00
Родитель 2b99c9686b
Коммит ebd9308a5f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -49,7 +49,7 @@ namespace Unity.Injection
/// </summary>
/// <param name="debug">Indicates if member is rendered in Debug mode</param>
/// <returns>String representation on the member</returns>
protected abstract string ToString(bool debug = false);
protected virtual string ToString(bool debug = false) => base.ToString();
}
[DebuggerDisplay("{ToString(true)}")]