From 316b2cfc1af848abef7561f0b0f56a6a07e57f1f Mon Sep 17 00:00:00 2001 From: stumpyfr Date: Fri, 26 Apr 2013 17:44:15 +0300 Subject: [PATCH] Update README.md --- README.md | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7340148..fd45481 100644 --- a/README.md +++ b/README.md @@ -14,28 +14,29 @@ You can use our Interfaces or Abstract Classes to get some tools like: Implemented on Windows Phone 8 and WinRT (*StorageManager* classes) Allows you to manage your file and settings in a easy way - - Task SaveSettingAsync(string key, object data) - Task LoadSettingAsync(string key) - Task ClearSettingAsync(string key) - Task SaveDataAsync(string path, object data) - Task LoadDataAsync(string path) - Task ClearDataAsync(string path) - +```csharp +Task SaveSettingAsync(string key, object data) +Task LoadSettingAsync(string key) +Task ClearSettingAsync(string key) +Task SaveDataAsync(string path, object data) +Task LoadDataAsync(string path) +Task ClearDataAsync(string path) +``` ##ILocationManager Implemented on Windows Phone 8 and WinRT (*LocationManager* classes) Allows you to manage geoposition in a easy way - - GeoPosition LastKnowPosition { get; set; } - Task GetLocationAsync(); - Task AskForRightAsync(); - +```csharp +GeoPosition LastKnowPosition { get; set; } +Task GetLocationAsync(); +Task AskForRightAsync(); +``` ##ANetworkManager Implemented on Windows Phone 8 and WinRT (*NetworkManager* classes) Allows you to know if network is available - - bool IsNetworkAvailable { get; } \ No newline at end of file +```csharp +bool IsNetworkAvailable { get; } +```