namespace System.Reflection
{
#pragma warning disable CS1591 // O comentário XML ausente não foi encontrado para o tipo ou membro visível publicamente
public static class FieldInfo_CB_Extension {
#pragma warning restore CS1591 // O comentário XML ausente não foi encontrado para o tipo ou membro visível publicamente
///
/// Determines whether the field is a background field used by automatic properties.
///
/// Target field.
/// Returns true when it is a background field and false when it is not a background field.
public static bool IsBackingField(this FieldInfo F)
=> F.Name.Contains(">k__BackingField");
}
}