Apostrophe Systems EPC Generator 2.0

DoD Addition Operator 

+ operator allows the addition of an integer to an DoD

public static DoD operator +(
   DoD epc,
   uint val
);

Parameters

epc
Left Hand Side DoD
val
Value to add by

Return Value

A new DoD with he incremented Serial Number

Example

DoD dod = new DoD(96);
//provide DoD-14, Filter, and Serial Number 1
dod.Encode(1234567890,12345,1);
//Add 1 to dod for a new DoD with a serial number of 2
dod+=1;

See Also

DoD Class | Apostrophe.EPC Namespace | DoDAddition Operator Overload List