'

alswlek의 이미지
shint의 이미지


정확한 사용방법은 MSDN 문서나. C# 책을 보시기 바랍니다.

1.
value 에서 v를 소문자로 쓰셨습니다.

2.
int n = 0;
n = n + numericUpDown1.Value * 7000;
n = n + numericUpDown2.Value * 7000;
n = n + numericUpDown3.Value * 7000;
textBox4.Text = n + "원"; //이렇게 사용해도 되나 ㅇ_ㅇ??

C#에서도 int를 사용하네요.
http://lfactory.net/40208091179

C# 문자를 숫자로 파싱하는 방법
http://hongjinhyeon.tistory.com/70
string s1 = "1234";
result = Int32.Parse(s1); //-- 1234
result = Convert.ToInt32(s1); //-- 1234

C# 숫자를 문자로 변환
http://blog.naver.com/tion419?Redirect=Log&logNo=220457926317
int aa =0;
string bb = aa.ToString();

string bb="1";
int aa = int.Parse(bb);

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com