📚 Update CHANGELOG.md

This commit is contained in:
Oliver Booth 2020-04-21 04:17:28 +01:00
parent a591b91c6c
commit cf317d30a8
No known key found for this signature in database
GPG Key ID: 0D7F2EF1C8D2B9C0
1 changed files with 5 additions and 0 deletions

View File

@ -9,6 +9,11 @@
- Add `string.IsUpper`
- Determines if all alpha characters in this string are considered uppercase
- Various extension methods with regards to reflection:
- `GetDefaultValue` and `GetDefaultValue<T>` - gets the value stored in the member's `DefaultValue` attribute
- `GetDescription`- gets the value stored in the member's `Description` attribute
- `SelectFromCustomAttribute<T1, T2>` - Internally calls `GetCustomAttribute<T1>` and passes it to a `Func<T1, T2>` so that specific members may be selected
### Changed
- n/a