File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ private BoxedValue()
8080 /// Unboxes the value.
8181 /// </summary>
8282 /// <param name="boxedValue">The boxed representation of the value.</param>
83- public static implicit operator T ( BoxedValue < T > boxedValue ) => boxedValue . Value ;
83+ public static implicit operator T ( BoxedValue < T > boxedValue ) => boxedValue . value ;
8484
8585 /// <summary>
8686 /// Converts a value type to an object reference.
@@ -118,5 +118,5 @@ private BoxedValue()
118118 /// <param name="boxedValue">Boxed value.</param>
119119 /// <returns>Mutable reference to the boxed value.</returns>
120120 public static implicit operator ValueReference < T > ( BoxedValue < T > boxedValue )
121- => new ( boxedValue , ref boxedValue . Value ) ;
121+ => new ( boxedValue , ref boxedValue . value ) ;
122122}
You can’t perform that action at this time.
0 commit comments