Added `DebuggerDisplayAttribute` to `IndirectString`

pull/350/head
David Hall 2022-10-11 09:42:01 -06:00
parent 680892bf5c
commit ba6791b91c
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
using System;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Diagnostics;
using System.Globalization;
using System.Runtime.InteropServices;
using System.Text;
@ -11,6 +12,7 @@ namespace Vanara.Windows.Shell
{
/// <summary>Wraps a string resource reference used by some Shell classes.</summary>
[TypeConverter(typeof(IndirectStringTypeConverter))]
[DebuggerDisplay("{RawValue} => {Value}")]
public class IndirectString : IndirectResource
{
/// <summary>Initializes a new instance of the <see cref="IndirectString"/> class.</summary>