강의

멘토링

커뮤니티

Inflearn Community Q&A

gjtnwls73863156's profile image
gjtnwls73863156

asked

WinForms C# .NET Framework 0.5 to 3 Years Experience (Part 1)

3. Asynchronous, synchronous

델리게이트 관련

Written on

·

267

0

아래와 같이 Form1_Load 함수에 델리게이트 식 표현을 할 경우, str이 출력되지 않습니다. (강의내용 09:30초 참고)

label.Text=str; 이 부분 출력되지 않는 이유를 여쭤보고싶습니다.

 

private void Form1_Load(object sender, EventArgs e)

{

label1.Text += MySetting;

}

 

 

감사합니다!

C#.NET

Answer 1

1

vmproductor0202님의 프로필 이미지
vmproductor0202
Instructor

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

label1.Text += MySetting;

label1.Text 문자열에 함수를 +=으로 연결할 수 없습니다.

감사합니다.

gjtnwls73863156님의 프로필 이미지
gjtnwls73863156
Questioner

답변 감사드려요 ^^

gjtnwls73863156's profile image
gjtnwls73863156

asked

Ask a question