강의

멘토링

커뮤니티

Inflearn Community Q&A

No author

This post's author information has been deleted.

WinForms C#.NetFramework 0.5 to 3 years of experience (Part 1)

3. Asynchronous, synchronous

3강에서

Written on

·

217

0

3강에서

build 후 실행시 문제가 없이 출력되나,

debug로 실행 시 오류가 나는 부분에서

 

build 후 실행시 문제가 발생되어 문의글을 남깁니다.

build후 실행하는 방법이

ctrl+alt+b 후 F5 로 수행하는 것 맞을까요 ??

답변 부탁드립니다.

 

 

 

public partial class Form1 : Form

{

public Form1()

{

InitializeComponent();

}

delegate void MySettingDelegate(string str);

private void Form1_Load(object sender, EventArgs e)

{

MySettingDelegate mySettingDelegate = MySetting;

mySettingDelegate.BeginInvoke("비긴인보크", null, null);

}

private void MySetting(string str)

{

label1.Text = str;

}

}

 

 

감사합니다

 

C#.NET

Answer 1

0

vmproductor0202님의 프로필 이미지
vmproductor0202
Instructor

안녕하세요.개발자park입니다.

Build 단축 키는 CTRL+SHIFT+B키입니다.

감사합니다.

No author

This post's author information has been deleted.

Ask a question