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
537 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 ...
In this page
We run two levels of C# training, as explained below!
Our two-day introduction to C# course will teach you the basics of Visual C# programming, covering:
Creating variables
Writing conditions
Using arrays
Looping
Using lists
Basic read/write properties
Here's an example of the sort of thing you'll be able to write on this course:
private void btnShowAge_Click(object sender, EventArgs e)
{
//read two dates to compare into variables
DateTime DateOfBirth = this.dtpDateOfBirth.Value;
DateTime DateToday = DateTime.Today;
//work out the user's age
TimeSpan span;
span = DateToday - DateOfBirth;
Int64 Age = Convert.ToInt16(span.TotalDays/365.25);
//display it
MessageBox.Show("You are " + Age.ToString() + " years old");
}
A quick introductory course might include creating basic classes within the course contents (as always, much depends on the speed and enthusiasm of your fellow delegates, of whom there will be at most 5 people).
In addition, we also run a two-day intermediate C# course, concentrating on classes and using LINQ to get information out of databases using entity framework models. If you're wondering what a class is, here's an example:
class Customer
{
// fields (private to this class)
private string firstName;
private string lastName;
// property giving first name
public string FirstName {
get { return firstName; }
set { firstName = value; }
}
// property giving last name
public string LastName
{
get { return lastName; }
set { lastName = value; }
}
}
Brave people might choose to book our three-day fast-track C# course, which aims to cover the above two courses in only 3 days.
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.