Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 3, 2023 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/b81913e923152cca90581b8a125baee8 to your computer and use it in GitHub Desktop.
Save bjoerntx/b81913e923152cca90581b8a125baee8 to your computer and use it in GitHub Desktop.
<ul class="list-group">
@{
Type type = typeof(SimpleMergeData);
PropertyInfo[] properties = type.GetProperties();
foreach (PropertyInfo property in properties) {
<li class="drag list-group-item">@property.Name</li>
}
}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment