Writing Object Oriented Software with C#

Writing Object Oriented Software with C#C# and OOP
- C# is designed for the .NET Framework
+The .NET Framework is Object Oriented
- In C#
+Your access to the OS is through objects
+You have the ability to create first class objects
+The FCL is designed for extension and integration by your code

aAccessibility
- In C#, private is the default accessibility
- Accessibilities options
- public - Accessible to all
- private - Accessible to containing class
- protected - Accessible to containing or derived classes
- internal - Accessible to code in same assembly
- protected internal - means protected or internal
- Classes can be marked as public or internal
- By default they are private
- Accessible only to code in the same source module

Website: www.dcl.hpi.uni-potsdam.de | Filesize: 162kb
No of Page(s): 24
Click here to download Writing Object Oriented Software with C#.

Related Tutorial

Tags: ,

Comments

Leave a Reply