From Python to C#
Ricky White

Ricky White @endlesstrax

About: 💻 Developer 📚 Author & Writer 🥋 Martial Artist 👊 #Spondylitis Warrior 🌲 Bonsai Addict

Location:
Washington D.C. Metro
Joined:
Apr 17, 2018

From Python to C#

Publish Date: Aug 27 '18
10 9

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.

Comments 9 total

  • Ricky White
    Ricky WhiteAug 27, 2018

    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?

  • Alan Barr
    Alan BarrAug 28, 2018

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

  • Sam Ferree
    Sam FerreeAug 28, 2018

    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

    • Ricky White
      Ricky WhiteAug 28, 2018

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

  • saint4eva
    saint4evaAug 29, 2018

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

  • connect
    connectJun 9, 2019

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

  • oneglash
    oneglashJun 8, 2020

    import telnyx

    telnyx.api_key = "YOUR_API_KEY"

    your_telnyx_number = "+13115552368"
    destination_number = "+13115552367"

    telnyx.Message.create(
    from_=your_telnyx_number,
    to=destination_number,
    text="Hello, world!",
    )

Add comment