DEV Community

Ricky White
Ricky White

Posted on

From Python to C#

It looks like I'll be helping a friend with a contract he has, and I'd be the main developer, which is great. But it's a .NET / Winforms gig, and I'm a Python developer.

So I need to get up to speed quickly. Can anyone name any good resources, aside from msdn/channel 9/MVA? Not looking for hand holding type stuff, a quick pace is fine.

Cheers in advance.

Top comments (9)

Collapse
 
tux0r profile image
tux0r

You'll have to jump quite widely from Python to C#. But chances are you'll stay. LINQ is a wonderful thing and I find it sad that no non-Lisp language has something that comes close.

Collapse
 
endlesstrax profile image
Ricky White

Thanks. I did dabble in .net core 1.1 when it came out, so it's not entirely new to me. But I probably remember less than I think. 😂

Any resources you'd recommend?

Collapse
 
tux0r profile image
tux0r

MSDN, actually.

Collapse
 
alanmbarr profile image
Alan Barr

The official docs are pretty good especially anything at docs.microsoft.com the old docs at msdn are hit and miss.

Collapse
 
saint4eva profile image
saint4eva

dot.net or docs.microsoft.com. Those are good resources to start with .NET/ C#

Collapse
 
sam_ferree profile image
Sam Ferree

Pluralsight has a lot of C# (and a ten day free trial)... They have a couple courses on winforms but one of them is in VB.NET

Collapse
 
endlesstrax profile image
Ricky White

Thanks. I have access to pluralsight, so I'll definitely check them out further.

Collapse
 
desizoy profile image
connect

for x in range(len(ans)):
if x!=len(ans)-1:
print (ans[x],end=" ")
else :
print (ans[x])

Some comments may only be visible to logged-in visitors. Sign in to view all comments.