namespace Cobilas.Numeric { /// Indicates the direction where the operation numbers will be obtained. public enum SignalOrientation : byte { /// None none = 0, /// 2<+>2=4 Need two numbers on the sign side. both = 1, /// 2<sqr=4 You need the numbers on the left side of the sign. left = 2, /// sqr>2=4 You need the numbers on the right side of the sign. right = 3 } }