Example #1
0
        void UpdateTop()
        {
            uint newHash = Crc32Calculator.Compute(description);

            if (descriptionHash == newHash)
            {
                return;
            }

            descriptionHash = newHash;
            panel.TextTop.SetText(description);
        }