C# Class BingMaps.StorageStuff

Methods for reading and writing to isolated storage.
显示文件 Open project: dideler/gps-tower-defense

Public Methods

Method Description
LoadFromFile ( string fileName ) : string

Read data from a file.

SaveToFile ( string fileName, string content ) : void

Write content to a file in the user store.

Method Details

LoadFromFile() public method

Read data from a file.
public LoadFromFile ( string fileName ) : string
fileName string The file to be read.
return string

SaveToFile() public method

Write content to a file in the user store.
public SaveToFile ( string fileName, string content ) : void
fileName string Name of the file ot be accessed.
content string The file's data.
return void