Пример #1
0
 /// <summary>
 /// Removes state data stored in the local state with the specified key.
 /// </summary>
 /// <typeparam name="T">The type of data to remove.</typeparam>
 /// <param name="key">An object representing the unique key with which the data was stored.</param>
 public void Remove <T>(object key)
 {
     _state.Remove <T>(key);
 }