コード例 #1
0
ファイル: User.cs プロジェクト: bryce-harrington/T-Notes
        public List <string> openNote(int note_id)
        {
            List <List <string> > response = new List <List <string> >();

            response = connection.getNoteById(note_id);
            Console.WriteLine("Retrieved");
            List <string> note = response.ElementAt(0);

            return(note);
        }