mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-04 22:18:56 +00:00
Use expression bodies for properties
This commit is contained in:
parent
74ba508e26
commit
209833561e
6 changed files with 19 additions and 29 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue