BananaPiOLEDMonitor.NetNfo.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : NetNfo
return NetNfo
        public static NetNfo operator -(NetNfo a, NetNfo b)
        {
            return new NetNfo(a.Dev)
            {
                Received = a.Received - b.Received,
                Transmitted = a.Transmitted - b.Transmitted
            };
        }