MM2Randomizer.Patcher.Patch.GetStringSortedByAddress C# (CSharp) Method

GetStringSortedByAddress() public method

public GetStringSortedByAddress ( ) : void
return void
        public void GetStringSortedByAddress()
        {
            var sortDict = from kvp in Bytes orderby kvp.Key ascending select kvp;
            foreach (KeyValuePair<int, ChangeByteRecord> kvp in sortDict)
            {
                ChangeByteRecord b = kvp.Value;
                System.Diagnostics.Debug.WriteLine(
                    "0x{0:X6}\t{1:X2}\t{2}",
                    b.Address,
                    b.Value,
                    b.Note);
            }
        }