Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IStackElement.cs
2{
3 internal interface IStackElement
4 {
5 //note to implementor: implement this property publicly
6 double StackSpacing { get; }
7
8 //note to implementor: but implement this method explicitly
9 void OnStackSpacingPropertyChanged(double OldValue, double NewValue);
10 }
11}