VAGSuite.frmMain.AddChecksum C# (CSharp) Метод

AddChecksum() приватный Метод

private AddChecksum ( byte allBytes ) : UInt32
allBytes byte
Результат System.UInt32
        private UInt32 AddChecksum(byte[] allBytes)
        {
            UInt32 retval = 0;
            foreach (byte b in allBytes)
            {
                retval += b;
            }
            return retval;
        }
frmMain