mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-04 22:18:56 +00:00
Fixed ArgumentExceptions
This commit is contained in:
parent
87ff5043f6
commit
d4f5456dd5
10 changed files with 36 additions and 35 deletions
|
|
@ -39,7 +39,7 @@ namespace MapControl.Projections
|
|||
get { return coordinateSystem; }
|
||||
set
|
||||
{
|
||||
coordinateSystem = value ?? throw new ArgumentNullException("The property value must not be null.");
|
||||
coordinateSystem = value ?? throw new ArgumentNullException(nameof(value));
|
||||
|
||||
var transformFactory = new CoordinateTransformationFactory();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue