TerrificNet.ViewEngine.Globalization.JsonLabelService.Remove C# (CSharp) Method

Remove() public method

public Remove ( string key ) : void
key string
return void
		public void Remove(string key)
		{
			var data = Load();
			data.Remove(key);
			Save(data);
		}

Usage Example

コード例 #1
0
		public void Init()
		{
			_fileSystem = new FileSystem();
			_service = new JsonLabelService(_fileSystem);
			_service.Remove(TestKey);
			_service.Remove(TestPathKey);
		}
All Usage Examples Of TerrificNet.ViewEngine.Globalization.JsonLabelService::Remove