본문 바로가기

C#/수업 내용

수업 3 - 2

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            ConsoleKeyInfo info = Console.ReadKey();
            Console.WriteLine("info.Key : {0}", info.Key);
            Console.WriteLine("info.KeyChar {0}", info.KeyChar);
            int number = Convert.ToInt32(info.KeyChar);
            Console.WriteLine("ASCII : {0}", number);
        }
    }
}

'C# > 수업 내용' 카테고리의 다른 글

수업 3  (0) 2021.08.18
수업 2 - 5  (0) 2021.08.17
수업 2 - 4  (0) 2021.08.17
수업 2 - 3  (0) 2021.08.17
수업 2 - 2  (0) 2021.08.17