Changeset 2534
- Timestamp:
- 3/17/2012 1:29:37 AM (14 months ago)
- File:
-
- 1 edited
-
trunk/eraser/Eraser/Settings.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser/Eraser/Settings.cs
r2516 r2534 331 331 public static Settings Get() 332 332 { 333 Instance.SetValue("Test", new int[5] { 1, 7, 9, 5, 1 });334 object test = Instance.GetValue<ICollection<int>>("Test");335 Instance.SetValue("Test", new string[5] { "A", "b", "C", "d", "E" });336 test = Instance.GetValue<ICollection<string>>("Test");337 Instance.SetValue("Test", new List<string>(new string[5] { "A", "b", "C", "d", "E" }));338 test = Instance.GetValue<ICollection<string>>("Test");339 333 return Instance; 340 334 }
Note: See TracChangeset
for help on using the changeset viewer.
