Exemplo n.º 1
0
 public void Remove(ZServerBase item) =>
 ZSynchronizationWrapper.Send <ZServerBase>((s) => Collection.Remove(s), item);
Exemplo n.º 2
0
 public void Flush() => ZSynchronizationWrapper.Send <object>((s) => Collection.Clear());
Exemplo n.º 3
0
 public void Add(ZServerBase item) => ZSynchronizationWrapper.Send <ZServerBase>((s) => Collection.Add(s), item);