Beispiel #1
0
 public void Subscribe(SimConnectProperty property)
 {
     if (!_subscriptions.Contains(property))
     {
         _subscriptions.Add(property);
         LatestData.Add(property, SimConnectPropertyValue.EmptyValue);
     }
 }
Beispiel #2
0
 public bool Equals(SimConnectProperty other)
 {
     return(Key == other.Key && Name == other.Name && Unit == other.Unit);
 }