English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have a string called Month, a string called Balance, and a string called Interest. I want to put them together inside a textbox called Amortize.

What's the correct syntax in c#?

2006-09-19 08:31:30 · 1 answers · asked by Anonymous in Computers & Internet Programming & Design

1 answers

OK this is similar to my other answer.
String temp;
temp = Month + Balance + Interest;
Amortize.Text = temp;
That should do the trick

2006-09-19 09:32:45 · answer #1 · answered by yairs2000 3 · 0 0

fedest.com, questions and answers