File tree 2 files changed +11
-11
lines changed
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1
1
# Release notes
2
2
3
+ ## What's new in 1.4.1 September 2 2019
4
+ ### Fixes:
5
+ * Properly handle null parameter for Copy and TryCopy (return null).
6
+
7
+ ### Changes:
8
+ * Copy and TryCopy consider string and Type as copyable types and return themselves if asked.
9
+
3
10
## What's new in 1.4.0 September 1 2019
4
11
### New:
5
12
* Add an access to the Declaring Type directly through ImmediateType, ImmediateProperty and ImmediateField.
Original file line number Diff line number Diff line change @@ -39,19 +39,12 @@ See benchmarks here: https://kernelith.github.io/ImmediateReflection/documentati
39
39
40
40
<IsPackable >true</IsPackable >
41
41
<PackageId >ImmediateReflection</PackageId >
42
- <PackageReleaseNotes >➟ Release 1.4.0
43
- New:
44
- - Add an access to the Declaring Type directly through ImmediateType, ImmediateProperty and ImmediateField.
45
- - Add an access to the Base Type directly through ImmediateType.
46
- - Add CopyConstructorDelegate delegate.
47
- - Add the possibility to call Copy constructor in a faster way than Activator from ImmediateType.
48
- - Add a type extension to check if a type has a default constructor.
49
- - Add type extensions to check if a type has a copy constructor and to directly call it.
50
- - Add object extensions to check if an instance can be copied by a copy constructor and to directly call it.
42
+ <PackageReleaseNotes >➟ Release 1.4.1
43
+ Fixes:
44
+ - Properly handle null parameter for Copy and TryCopy (return null).
51
45
52
46
Changes:
53
- - Globally optimize the library by reducing the number of redundant null checks.
54
- - Slightly optimize the branching in generated code.</PackageReleaseNotes >
47
+ - Copy and TryCopy consider string and Type as copyable types and return themselves if asked.</PackageReleaseNotes >
55
48
<PackageTags >C# Reflection Fast Immediate Performance Delegate Dynamic</PackageTags >
56
49
57
50
<PublishRepositoryUrl >true</PublishRepositoryUrl >
You can’t perform that action at this time.
0 commit comments