16

DebuggerDisplay 属性を定義するクラスがいくつかあります。ある DebuggerDisplay 属性を別の属性に基づいて定義する方法があるかどうかを知りたいです。次のクラスがある場合:

[DebuggerDisplay ("Text = {Text}")]
class A
{
    public string Text {get;set;}
}

[DebuggerDisplay ("Property = {Property}")]
class B
{
    public A Property {get; set;}
}

クラス A の DebuggerDisplay 属性で定義されているように、B のインスタンスで A クラスを確認したいと思います。その代わりに、クラス B のオブジェクトを表示しているときに、クラス A の ToString() メソッドをデバッガーに取得しています。

4

3 に答える 3

6

あなたの問題を正しく理解しているかどうかはわかりませんが、試してみてください:

[DebuggerDisplay("Property = {Property.Text}")]
public class B
{
    public A Property { get; set; }
}

これにより、A の Text プロパティが表示されます。

より複雑な制御が必要な場合は、DebuggerTypeProxyAttributeを使用できます

于 2011-12-30T09:33:09.813 に答える
2

https://blogs.msdn.microsoft.com/jaredpar/2011/03/18/debuggerdisplay-attribute-best-practices/から(条件付きコンパイル ディレクティブを追加しました)

#if DEBUG
    [DebuggerDisplay("{DebuggerDisplay}")]
    public sealed class Student {
    public string FirstName { get; set; }
    public string LastName { get; set; }
    private string DebuggerDisplay {
        get { return string.Format("Student: {0} {1}", FirstName, LastName);}
    }
}
#endif

これは、ToString() をオーバーライドする必要のないMickey Perlstein の回答 (デバッガーの文字列をフォーマットするプロパティをクリアする) に似ています (結局、別の目的で必要になる可能性があります)。

ソースには、パフォーマンスに関する考慮事項など、DebuggerDisplay に関するその他の優れたヒントも多数含まれています。

編集


とにかくこれはコードのデバッグなので、OOP (外部からのプライベート プロパティへのアクセス) に違反することはそれほど悪くはありませんが、ここではかなり違反しています。

private string DebuggerString {
    get {
        StringBuilder sb = new StringBuilder();
        sb.Append("Whatever you want your Parent class' Debugger Text To Say");

        var properties = typeof(GroupQuote).GetProperties()
            //get the properties with the DebuggerDisplay attribute and our property
            .Where(x =  > x.PropertyType.IsDefined(typeof(DebuggerDisplayAttribute))
                     && x.PropertyType.GetProperties(BindingFlags.NonPublic | BindingFlags.Instance).Any(y =  > y.Name == "DebuggerString"));

        foreach(PropertyInfo property in properties) {
            object itemWithProperty = property.GetValue(this);
        //we have to check our property for null, otherwise trying to get its DebuggerString property will throw an exception
        if (itemWithProperty != null) {
                PropertyInfo privateDebuggerProperty = property.PropertyType.GetProperty("DebuggerString", BindingFlags.NonPublic | BindingFlags.Instance);
                sb.Append(privateDebuggerProperty.GetValue(itemWithProperty)as string);
            }
        }
        return sb.ToString();
    }
}

例

私が書いてこれをテストしたコードでは、親クラスのいくつかのプロパティがあり、DebuggerDisplay が定義されていないのに定義されていることを示していました (おそらく継承の問題ですか?)。実際に DebuggerString を持つプロパティでのみ DebuggerString を探すように、追加のチェックを追加しました。

于 2016-03-02T20:15:18.313 に答える
1

これが「正しいコーディング」ではないことはわかっていますが、エンティティをチェーンできないため、古い方法に戻ることにしました。ToString() メソッドをオーバーライドするだけです。その後、連鎖は簡単です。

    public partial class Tld
{
    public override string ToString()
    {
        return this.Name;
    }    
}

public partial class Domain
{
    public override string ToString()
    {
        return this.DomainName + "." +this.Tld.ToString();
    } 

    public  Domain (string domain, string tld):this( domain, new Tld(tld))
    {

    }
    public Domain(string domain, Tld tld):this()
    {
        this.DomainName = domain;
        this.Tld = tld;

    }
}


public partial class Url
{
    public override string ToString()
    {
        return this.Scheme + "://" + this.Subdomain + this.Domain.ToString() + ((string.IsNullOrWhiteSpace(this.Path)) ? "" :  this.Path);
    }
    public Url (string scheme, string subdomain, string domain, string tld, string path):this(new Tld(tld),domain, subdomain,scheme,path){}

    public Url(Tld tld, string domainName, string subdomain, string scheme, string path): this(new Domain(domainName, tld),subdomain,scheme,path){}

     public Url(Domain domain, string subdomain, string scheme, string path):this()
    {
        this.Domain = domain;
        this.Path = path;
        this.Scheme = scheme;
        this.Subdomain = subdomain;

    }

}


public void Domain_Create_GOOD()
    {
     Domain expected = new Domain("google","co.nz");

    }
于 2012-06-27T16:55:03.487 に答える