Front View plug-in does not init if no sensor added.
Fixing some format to make strings shorter.
Now trying to start SoundGraphAccess.exe process from same directory.
Packed mode now can display three sensors along with the current time.
2 namespace OxyPlot.WindowsForms {
4 using System.Collections.Generic;
7 public class HashSet<T> {
9 private readonly Dictionary<T, object> set = new Dictionary<T, object>();
11 public bool Add(T value) {
12 if (set.ContainsKey(value))
19 public bool Contains(T value) {
20 return set.ContainsKey(value);