The struct Range constructor parameter names mismatch the official documentation:
defined in the Polyfill as:
readonly record struct Range(Index Start, Index End)
- parameter names are capitalized
in the MS doc:
public Range(Index start, Index end);
- all parameter names are lowercase.
When named parameters are used in code - it causes CS1739 (expectedly).
Regards.
The struct Range constructor parameter names mismatch the official documentation:
defined in the Polyfill as:
readonly record struct Range(Index Start, Index End)in the MS doc:
public Range(Index start, Index end);When named parameters are used in code - it causes CS1739 (expectedly).
Regards.