Newbie question on dotnet - OOP

M

Mr. X.

Hello.

I would like some examples on using OOP with dotnet developing tools
(For VB & VC), please.

Also what are the main difference of version 3.0 and priors (2 & 1.1).

Need some samples, and tutorials please.

Thanks :)
 
M

Mr. Arnold

Mr. X. said:
Hello.

I would like some examples on using OOP with dotnet developing tools
(For VB & VC), please.

Also what are the main difference of version 3.0 and priors (2 & 1.1).

Need some samples, and tutorials please.

Thanks :)

http://www.lhotka.net/Default.aspx

MODEL-VIEW-PRESENTER

http://www.polymorphicpodcast.com/

click 'Shows'

click 'Design Patterns Bootcamp: Model View * Patterns*

view parts 1-5

You can use Google to get more information about this or find books.

You should also understand an object's Public accessor properties of Get/Set
in C# or Let/Get in VB.Net.
 
M

Marc Gravell

Also what are the main difference of version 3.0 and priors (2 & 1.1).

..Net 3.0 (WinFX) is a set of additional assemblies that introduce WCF
(unified communications layer), WF (workflow), WPF (next generation
UI) and cardspace

http://msdn2.microsoft.com/en-us/netframework/aa663309.aspx

..Net 3.5 (commonly associated with VS2008 (Orcas) and C# 3) is aimed
mainly at LINQ; a set of technologies for providing a unified query
model (against database, xml, objects, etc); there are a number of
related language enhancements in C# 3 (anonymous types, extension
methods, etc) that assist with this.

Marc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Questions of dotnet. 3
OOP with C# 4
dotNet 3.0 4
Converting to C# - Syntax 2
OOP vb.net 7
OOP Design Question 7
Developing a cross platform 2D game engine framework 0
OOP question --- theoretically speaking.... 7

Top