// Token: 0x060008FF RID: 2303 RVA: 0x0000BD94 File Offset: 0x0000AD94
        public unsafe void SetSpeedLabel(string value)
        {
            int byteCount = Encoding.ASCII.GetByteCount(value);

            byte[] array = new byte[byteCount + 1];
            Encoding.ASCII.GetBytes(value, 0, byteCount, array, 0);
            array[byteCount] = 0;
            fixed(byte *ptr = array)
            {
                CarStatistics._EASharpBinding_901(this.mSelf, (sbyte *)ptr);
            }
        }