diff --git a/src/ObjectExplorer/ObjectSearch.cs b/src/ObjectExplorer/ObjectSearch.cs index 4c02896..fd783ef 100644 --- a/src/ObjectExplorer/ObjectSearch.cs +++ b/src/ObjectExplorer/ObjectSearch.cs @@ -131,7 +131,10 @@ namespace UnityExplorer.ObjectExplorer { string text; if (m_context == SearchContext.Class) - text = SignatureHighlighter.Parse(currentResults[index] as Type, true); + { + var type = currentResults[index] as Type; + text = $"{SignatureHighlighter.Parse(type, true)} ({type.Assembly.GetName().Name})"; + } else text = ToStringUtility.ToStringWithType(currentResults[index], currentResults[index]?.GetActualType());