Window.Content = "Chandru" + "Guna" + "Kalai";
when i run this program the result like this ChandruGunaKalai.
so i want to print the each string value in line by line.
like this
Chandru
Guna
Kalai
please help me
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Window.Content = “Chandru” + Environment.NewLine + “Guna” + Environment.NewLine + “Kalai”;
That how to print a new line. Or you can use a
StackPaneland set theOrientationto Vertical and put 3 seperateTextBlocks in it.