Exemplo n.º 1
0
 private void RawAdd(int address, IReadOnlyLabel alias)
 {
     dataGridView1.Rows.Add(Util.ToHexString6(address), alias.Name, alias.Comment);
 }
Exemplo n.º 2
0
    private static void OutputCsvLine(TextWriter sw, int labelSnesAddress, IReadOnlyLabel label)
    {
        var outputLine = $"{Util.ToHexString6(labelSnesAddress)},{label.Name},{label.Comment}";

        sw.WriteLine(outputLine);
    }