示例#1
0
        private void displayFullInfoHeader(INote note)
        {
            List <string> noteFullHeader = note.GetFullHeader();

            Console.ForegroundColor = note.HeaderColor;
            for (int i = 0; i < noteFullHeader.Count; i++)
            {
                Console.WriteLine(noteFullHeader[i]);
            }
        }