Exemplo n.º 1
0
    void PrintRawHistory()
    {
        string[] list = Notes.HistoryNotes.Select(x => x.Note).ToArray();
        string   str  = "";

        for (int i = list.Length - 1; i > 0; i--)
        {
            str += $"{list[i]}\n";
        }
        NoteListTexBox.Show(str);
    }
Exemplo n.º 2
0
    public static void Show(string message)
    {
        NoteListTexBox window = GetWindow <NoteListTexBox>();

        window.str = message;
    }