Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
551 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Software ==> | Visual C# (55 exercises) |
Topic ==> | Properties in C# (3 exercises) |
Level ==> | Relatively easy |
Subject ==> | C# training |
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
To avoid having to draw the form needed for this exercise, right-click on the name of your project in Solution Explorer then choose Add --> Existing Item... (you can also press SHIFT + ALT + A to do the same thing).
Choose only the file called frmOldies.cs in the above folder to import it into your project, then edit Program.cs to make this the default form. When you run your application, you should now see this:
When someone types in their name/age and clicks on the button, they should see confirmation of their name, age and status (read on for what this means!).
Create the following properties for your application form for this senior citizens' dating agency (motto: It's never too late to date!):
Property | Type | Contains |
---|---|---|
PersonName | Read-only | The name of the applicant |
Age | Read-only | The age of the applicant |
Status | Read-only | Senior citizen if over 65; adult if over 18; child otherwise |
IfEligible | Read-only | Whether this person can join (they must be over 65 to do so) |
If you've written these properties correctly, you should be able to attach the following code to the Show details button to show a summary of this applicant's status in the output or immediate window:
// print out details of this person (must reference
// System.Diagnostics namespace at top of code)
Debug.WriteLine("PROPERTY VALUES");
Debug.WriteLine(" ");
Debug.Indent();
Debug.WriteLine("Name = " + personName);
Debug.WriteLine("Age = " + age.ToString());
Debug.WriteLine("Status = " + status);
Debug.WriteLine((IfEligible ? "Eligible" : "Not eligibile"));
Debug.Unindent();
Here's what your output should look like when you enter a couple of people's details (here we're showing this by using the Debug.WriteLine command):
Here we've entered the details of two people at the opposite ends of life. Which one do you suppose is the more content?
Close down your application and any open forms.
You can find other training resources for the subject of this exercise here:
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.