How is OOPs implemented in .NET?

  • Thread starter Thread starter Vaishali
  • Start date Start date
Vaishali,
A good starting point to start reading may be:

More general:
http://msdn.microsoft.com/netframework/
http://msdn.microsoft.com/netframework/productinfo/default.aspx
http://msdn.microsoft.com/netframework/productinfo/overview/default.aspx

More technical:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/netstart/html/sdkstart.asp

These may not directly answer your question, however they should give you a
good start.

Unless you have a more specific question.

Hope this helps
Jay
 
..Net is based on objects, everything is a class. It
supports inheritance, polymorphism.
Is this the reason to say that .Net has implemented OOPs
or are there some other unique features?
 
Back
Top