NET Framework

 

  • At the end of the course, students will be able to:
  •  List the major elements of the .NET Framework and explain how they fit into the .NET platform.
  •  Explain the main concepts behind the common language runtime and use the features of the .NET Framework to create a simple application.
  •  Create and use components in Windows Forms-based and ASP.NET-based applications.
  •  Use the deployment and versioning features of the .NET runtime to deploy multiple versions of a component.
  •  Create, use, and extend types by understanding the Common Type System architecture.
  •  Create classes and interfaces that are functionally efficient and appropriate for given programming scenarios.
  •  Use the .NET Framework class library to efficiently create and manage strings, arrays, collections, and enumerators.
  •  Use delegates and events to make an event-sender object signal the occurrence of an action to an event-receiver object.
  •  Describe and control how memory and other resources are managed in the .NET Framework.
  •  Read from and write to data streams and files.
  •  Use the basic request/response model to send and receive data over the Internet.

 

Create a class called Employee that includes three pieces of information as data members 
- a first name (type string), a last name (type string) and a monthly salary (type floating point).  
Your class should have a constructor that initializes the three data members.  
Provide a set and get functions for each data member.  
Create two Employee objects and display each object's yearly salary. 
 Then give each Employee a 10% raise and display each Employee's yearly salary again