473,387 Members | 1,572 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

C# becoming proficient

I have been working with Delphi since its inception (10+ years but only
up to v5) and am now tackling C#.
I find it immense in depth with an enormous amount to learn.
This is just a comment but i would like to know how long it has taken
some of you obviously proficient programmers to get up to speed.
I read 4 C# books and am now converting a rather complex delhi project
to C# and can see the advantages of it (it is a must do as client says
cannot use delphi.net).

Main question is do others also find C# challenging (or am i
experiencing ealy onset alzeimer).

rgds,Steve
Oct 16 '06 #1
9 1878
Steve wrote:
I have been working with Delphi since its inception (10+ years but
only up to v5) and am now tackling C#.
I find it immense in depth with an enormous amount to learn.
This is just a comment but i would like to know how long it has
taken some of you obviously proficient programmers to get up to speed.
I read 4 C# books and am now converting a rather complex delhi
project to C# and can see the advantages of it (it is a must do as
client says cannot use delphi.net).

Main question is do others also find C# challenging (or am i
experiencing ealy onset alzeimer).
I think it depends on your background. Most coming from a C++ or Java
background find C# to be straightforward and easy to learn - and I would
expect the same for Delphi.

Of course, it's important to separate the C# language, which is relatively
simple and easy to learn, from the .NET framework, which is vast, in some
places complex, and takes at least a year or two to master.

-cd
Oct 16 '06 #2
Hello namesake,

Well firstly, I couldn't tell you how long it took me personally.
And to be honest, the learning never stops. Once you learn the syntax
of the language, you have to learn some of the code base classes and
methods, and then you start to learn how the framework works in
general, then its assemblies, and IL, and design patterns, and blah and
blah and blah.

Why not shift some of your core functionality into a Delphi.NET
assembly, and then write the rest of the app in C#? I mean, that's one
of the reasons for having a "Common Language Runtime" so that you can
use a language you know, and write something that is interoperable with
other languages.

I don't know for sure, but is (non .net) Delphi a procedural language?
Maybe its more the OO concepts that are catching you out, rather than
the language specifics.

I think if you've read 4 books already then perhaps book reading is not
your best learning style. This means nothing about you personally;
everyone learns differently. Thats why people spend years doing a PhD
writing about learning methodologies and pedagogy. I personally learn
better by viewing examples and trying to recreate my own applications
implementing that particular concept. Perhaps you just need to identify
your best learning style? Then maybe the language will come easier.
Main question is do others also find C# challenging (or am i
experiencing ealy onset alzeimer).
I find C# liberating! And to my knowledge, alzeimers doesn't inhibit
your ability to learn; only your ability to remember. So don't worry,
learning the language probably isn't your real problem... its
remembering what you learnt!

Oh, also this news group is probably a great learning tool for most
people. Sometimes I just read questions and answers to gain insight
into things. Feel free to post about anything, not matter how silly it
might seem. As long as you make a reasonable attempt to solve it
yourself first, most people won't mind helping out.

Steven

Oct 16 '06 #3
"Steve" <cc******@bigpond.net.auwrote in message
news:PN*******************@news-server.bigpond.net.au...
I have been working with Delphi since its inception (10+ years but only
up to v5) and am now tackling C#.
I find it immense in depth with an enormous amount to learn.
This is just a comment but i would like to know how long it has taken
some of you obviously proficient programmers to get up to speed.
I read 4 C# books and am now converting a rather complex delhi project
to C# and can see the advantages of it (it is a must do as client says
cannot use delphi.net).

Main question is do others also find C# challenging (or am i
experiencing ealy onset alzeimer).
I started on vb.net the day the full release came out and switched to c#
soon after that. After a few months I thought I was proficient but going
over some of the stuff I wrote about a year after I started I'm amazed at
what I didn't know. In many cases I went to a huge amount of trouble to
write what was already in the framework or just plain ignored some
*extremely* useful features and did things a much harder way.

Michael
Oct 16 '06 #4
"Carl Daniel [VC++ MVP]" <cp*****************************@mvps.org.nospam >
wrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
[...]
Of course, it's important to separate the C# language, which is relatively
simple and easy to learn, from the .NET framework, which is vast, in some
places complex, and takes at least a year or two to master.
A year or two? Yikes! I'm way behind then.

I've been doing Windows since Windows 3.0. I can't even keep up with the
API fast enough...they add things more quickly than I can find reasons to
use them and the time to learn how. And .NET includes most of what's in
Windows, along with a bunch of stuff unique to .NET.

Anyone who has mastered .NET in even two years, they need to go do something
important, like solving world hunger or creating global peace. Their genius
is being wasted on programming!

Pete
Oct 16 '06 #5
Hi,

Peter Duniho wrote:
"Carl Daniel [VC++ MVP]" <cp*****************************@mvps.org.nospam >
wrote in message news:%2****************@TK2MSFTNGP05.phx.gbl...
>[...]
Of course, it's important to separate the C# language, which is relatively
simple and easy to learn, from the .NET framework, which is vast, in some
places complex, and takes at least a year or two to master.

A year or two? Yikes! I'm way behind then.

I've been doing Windows since Windows 3.0. I can't even keep up with the
API fast enough...they add things more quickly than I can find reasons to
use them and the time to learn how. And .NET includes most of what's in
Windows, along with a bunch of stuff unique to .NET.

Anyone who has mastered .NET in even two years, they need to go do something
important, like solving world hunger or creating global peace. Their genius
is being wasted on programming!

Pete
IMHO, noone ever "masters" the framework. What you need to master is the
documentation, in order to find the specific class that you need at a
specific moment to solve a specific issue ;-)

The key in learning "modern" languages like Java and C#, I think, is to
learn to use the documentation.

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Oct 16 '06 #6
"Steven Nagy" <le*********@hotmail.coma écrit dans le message de news:
11**********************@k70g2000cwa.googlegroups. com...

| I don't know for sure, but is (non .net) Delphi a procedural language?
| Maybe its more the OO concepts that are catching you out, rather than
| the language specifics.

Delphi has always been a very good OO language, but that doesn't mean that
people have used it in an OO way :-) I have been one of the most vociferous
OO design evangelists in the UK and on these groups for many years now and
still come across people who use Delphi, C++, VB, even C#, as if they were
procedural languages.

| Oh, also this news group is probably a great learning tool for most
| people. Sometimes I just read questions and answers to gain insight
| into things. Feel free to post about anything, not matter how silly it
| might seem. As long as you make a reasonable attempt to solve it
| yourself first, most people won't mind helping out.

Maybe I am not meant to display my TeamB tag here, but I do so to let people
like yourself know that there are folks around who have knowledge of how to
migrate from Delphi to C#, or the other way, if necessary.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Oct 16 '06 #7
Agreed :-). You can, however, master the general pattern in time. Reading
the design guidlines and everything else, you get to a point where you
expect what the api should look like before you use it - even one you have
not seen (because the .Net framework pretty much has the same look and feel
across api).

--
William Stacey [C# MVP]

| IMHO, noone ever "masters" the framework. What you need to master is the
| documentation, in order to find the specific class that you need at a
| specific moment to solve a specific issue ;-)
|
| The key in learning "modern" languages like Java and C#, I think, is to
| learn to use the documentation.
|
| HTH,
| Laurent
Oct 16 '06 #8
Hi Steve,

I don't think it's the C# language that you're having difficulty in learning
(although there is certainly a good bit to learn with C#), but the Common
Language Runtime Library, a vast collection of thousands of classes.

If you have 10+ years of Delphi experience, I don't think that learning the
C# language is going to take more than a few months. As for the CLR, you
will probably never learn all of it. I just keep a local copy of the .Net
SDK open on my local machine, and maintain a large collection of Favorites.
I probably spend an hour a day reading it, after 5 years of working with it.

The .Net SDK is a free download from Microsoft:

http://msdn2.microsoft.com/en-us/net.../aa731542.aspx

--
HTH,

Kevin Spencer
Microsoft MVP
Chicken Salad Shooter
http://unclechutney.blogspot.com

A man, a plan, a canal, a palindrome that has.. oh, never mind.

"Steve" <cc******@bigpond.net.auwrote in message
news:PN*******************@news-server.bigpond.net.au...
I have been working with Delphi since its inception (10+ years but only
up to v5) and am now tackling C#.
I find it immense in depth with an enormous amount to learn.
This is just a comment but i would like to know how long it has taken
some of you obviously proficient programmers to get up to speed.
I read 4 C# books and am now converting a rather complex delhi project
to C# and can see the advantages of it (it is a must do as client says
cannot use delphi.net).

Main question is do others also find C# challenging (or am i
experiencing ealy onset alzeimer).

rgds,Steve

Oct 16 '06 #9
"Laurent Bugnion" <ga*********@bluewin.chwrote in message
news:uA**************@TK2MSFTNGP04.phx.gbl...
IMHO, noone ever "masters" the framework. What you need to master is the
documentation, in order to find the specific class that you need at a
specific moment to solve a specific issue ;-)

The key in learning "modern" languages like Java and C#, I think, is to
learn to use the documentation.
Pity the documentation is so poor and usually only states the bleeding
obvious.

Michael
Oct 16 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

19
by: Arthur | last post by:
Did I hallucinate something about __name__ becoming read-write? Not in alpha2. Can't find the reference to this I thought I read - that it was concluded to be necessary in connection with...
6
by: gong | last post by:
hi i recently looked at alexandrescu's book on c++, and i found it pretty much unintelligible. i have a few points which i wonder about. 1. as a developer, it is important, from a bottom line...
7
by: Curious Student | last post by:
I've for long known the C syntax and I like it very much. I can easily understand C programs and I've myself written lots and lots of Win32 API code. However, since my mainstay has been VB, I'm not...
7
by: Jim Michaels | last post by:
This is a simple coding tip I learned to prevent comparisons from becoming assignments (and this becoming a hair-pulling session during debugging): in comparisons, try to put your constants on...
16
by: Singulus | last post by:
Hello all, I've searched for similar threads, I've found some bit of useful info here and there, but nevertheless I want to post my questions...So, how can I (we, in fact the forum can benefit...
43
by: jaysome | last post by:
When we are looking to hire C programmers, we inevitably receive resumes from people who claim they are "proficient at C", or something to that extent. For those who claim they are "proficient...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.