Bilibili 유철망간 C#02

3600 단어
솔루션: 솔루션, 최고 수준,하나 이상의 프로젝트 프로젝트를 포함할 수 있습니다. 구체적인 문제를 해결하는 데 사용되는 Visual Studio 버전은 고급일수록 프로젝트 템플릿이 많고 지원하는 개발 기술이 많습니다.10가지 기술로 "HelloWorld"프로그램을 작성: 1.Console – 콘솔
using System;

namespace HelloWorld_01
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
            Console.ReadLine();
        }
    }
}


2. WinForm WindowsForm Application(Windows 창 응용 프로그램(.NET Framework)(WindowsForm Application)
using System;
using System.Windows.Forms;

namespace WindowsFormsAppHelloWorld
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void btnHW_Click(object sender, EventArgs e)
        {
            tbxHW.Text = "HelloWorld";
        }
    }
}


3. WPF Application 사용법과 2는 기본적으로 유사합니다.

좋은 웹페이지 즐겨찾기