CSPspEmu.Debugger.GdbServerConnectionBase.checksum C# (CSharp) Method

checksum() protected method

protected checksum ( string text ) : byte
text string
return byte
        protected byte checksum(string text)
        {
            byte checksum = 0;
            foreach (var c in text) checksum += (byte)c;
            return checksum;
        }