Use expression bodies for properties

This commit is contained in:
Clemens 2022-08-06 11:04:49 +02:00
parent 74ba508e26
commit 209833561e
6 changed files with 19 additions and 29 deletions

View file

@ -34,8 +34,8 @@ namespace MapControl.MBTiles
public string File
{
get { return (string)GetValue(FileProperty); }
set { SetValue(FileProperty, value); }
get => (string)GetValue(FileProperty);
set => SetValue(FileProperty, value);
}
/// <summary>