목록프로그래밍/C# (13)
뭐라도 쓰겠지
25.03.20 / C# HelloWorld
유니티 게임 개발을 배우기 전 먼저 C#을 배우기 시작했다. 처음해보는 객체 지향 언어이기도 하고 유니티에 쓸 생각을 하니 기대가 된다.// See https://aka.ms/new-console-template for more informationConsole.WriteLine("Hello, World!"); Hello, World!비주얼 스튜디오에서 처음 콘솔 앱 용 프로젝트를 만들면 저게 딱 적혀있다. 저것만 실행해도 출력은 되지만, 링크를 타고 들어가보면 더 자세한 코드를 알 수 있다.using System;namespace MyApp{ internal class Program { static void Main(string[] args) { ..
프로그래밍/C#
2025. 3. 20. 14:50