Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jindeveloper/adb484ff1fc7059ed9ded67b473223c0 to your computer and use it in GitHub Desktop.

Select an option

Save jindeveloper/adb484ff1fc7059ed9ded67b473223c0 to your computer and use it in GitHub Desktop.
[Fact]
public void Test_GetAll_AttributeTargets()
{
var targets = Enum.GetNames(typeof(AttributeTargets));
foreach (var target in targets)
{
this._output.WriteLine($"AttributeTargets.{target}");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment