newie. Any pointers?

F

flo

Hi,

I m trying to learn C# and the dot net framework and I am a bit
daunted by the size.
I ve been developing software for the last 3 or 4 years with delphi
never had the chance to get into .net
I ve been reading about the CLR and other things that sound really
handy, but I don't know where to start
What can you guys recommend ?

Cheers


flo
 
L

Lloyd Dupont

What can you guys recommend ?

Hello World?

then, next, a general purpose customer relation management desktop software?
 
M

Michael Nemtsev

Hello Flo,

Try to start from
"C# 2.0: The Complete Reference" by Herbert Schildt

F> Hi,
F>
F> I m trying to learn C# and the dot net framework and I am a bit
F> daunted by the size.
F> I ve been developing software for the last 3 or 4 years with delphi
F> never had the chance to get into .net
F> I ve been reading about the CLR and other things that sound really
F> handy, but I don't know where to start
F> What can you guys recommend ?
F> Cheers
F>
F> flo
F>
---
WBR, Michael Nemtsev [C# MVP].
My blog: http://spaces.live.com/laflour
Team blog: http://devkids.blogspot.com/

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
 
C

Carl Daniel [VC++ MVP]

flo said:
Hi,

I m trying to learn C# and the dot net framework and I am a bit
daunted by the size.
I ve been developing software for the last 3 or 4 years with delphi
never had the chance to get into .net
I ve been reading about the CLR and other things that sound really
handy, but I don't know where to start
What can you guys recommend ?

Start with something you're interested in and need a solution for.
Something small, but not so small as to be trivial. Use your needs to guide
your exploration of the .NET library - it's way too big to have much success
at learning "the whole thing".

The C# language is syntactically nearly identical to Java, and both are
derived heavily from C and C++ (syntax-wise, that is). You should be able
to map your delphi language experience almost directly to C# with little but
syntax changes (note that mapping your delphi library knowledge is not going
to be so easy).

As others have said, I'd start with a book on C# to teach you the syntax,
the build environment, etc., and then learn the library "as you go".

-cd
 

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

Top