12 Şubat 2018 Pazartesi

DebuggerBrowsableAttribute Anotasyonu

Giriş
Üye alanın debugger penceresinden nasıl görüneceğini belirtir.

Örnek
Şöyle yaparız.
class Foo
{
  [DebuggerBrowsable(DebuggerBrowsableState.Never)]
  int bar;  // this one will be hidden
  int baz;  // but this one will be visible like normal
}

Hiç yorum yok:

Yorum Gönder