#1,011 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of C# 5.0 Unleashed

Sentiment score: 3
Reddit mentions: 3

We found 3 Reddit mentions of C# 5.0 Unleashed. Here are the top ones.

C# 5.0 Unleashed
Buying options
View on Amazon.com
or
    Features:
  • NEMA 14-30P to NEMA 6-15/20R
  • NEMA 14-30P, 30 Amp, 125/250 Volts, 4-Prong Male Plug
  • NEMA 6-20R, 15/20 Amp, 250 Volt, T-blade Female Connector
  • Maximum Operation Wattage 5000 Watts
  • 5-Year Limited Warranty
Specs:
Height9 Inches
Length7 Inches
Number of items1
Weight4.71568778418 Pounds
Width2 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 3 comments on C# 5.0 Unleashed:

u/Aaron64Lol · 3 pointsr/csharp

Open these in tabs, and leave them open. Spend your bored time reading around.

https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/introduction

https://docs.microsoft.com/en-us/dotnet/api/?view=netframework-4.8

Buy this:

https://www.amazon.com/C-5-0-Unleashed-Bart-Smet/dp/0672336901/ref=sr_1_1?keywords=c%23+5.0+unleashed&qid=1565226579&s=gateway&sr=8-1

It's a little old now, but the only .net book I recommend. Old means it's cheap. De Smet is a treasure, and his book will give you a solid foundation that no other book I'm aware of will. It's an unapologetic programming book that will take you from basic to advanced in a logical progression. Some stuff has been added since 5.0; you can learn about that stuff on MSDN.

Download visual studio 2019 community and get practicing. Spend a lot of time practicing. However much time you are spending practicing isn't enough; you should be practicing more. This process will change your brain, that takes a lot of exposure, and a lot of active application. Watch a documentary about ballerinas... you should be practicing that much. STOP LOOKING AT STACK OVERFLOW. Look at MSDN. MSDN is documentation, stack overflow is not. NEVER copy and paste code. ALWAYS retype if you need someone else's code. Think about everything you're typing, look up what you don't understand on MSDN, and read until you understand. Come up with ideas, and try them out. Microsoft often provides a lot of ways to do the same thing, try them out to figure out how they are different. Explore the space. Revisit your old projects every 6 months or so so you can make fun of yourself and re-write them with what you've learned since then. Oh, and practice a lot.

Please show your copy of the book to your future CS professor, so they can compliment my recommendation. Give the book away to someone starting out when you don't need it anymore (it will be a while).

u/OwnNoise · 2 pointsr/computerscience

Free:
Microsoft Virtual Academy (not bad, depends on a course),
Channel 9

Paid but with free trial:
Pluralsight.com(the best!),
Udemy,
Wintellect.com

Books:
IMO, the best for beginners C# 5.0 Unleashed by Bart De Smet
https://www.amazon.com/C-5-0-Unleashed-Bart-Smet/dp/0672336901

then:

C# book: C# in Depth by Jon Skeet
.Net book: CLR via C# by Jeffrey Richter

And there is always StackOverflow.com

u/oasisguy · 1 pointr/Unity3D

I'd recommend C# 5.0 Unleashed (https://www.amazon.com/C-5-0-Unleashed-Bart-Smet/dp/0672336901/). It might look daunting, but if you're serious about learning C#, I think this is the one to get, because it not only teaches you the language, it explains why it is the way it is, which I think is an excellent way to deeper understanding. Depending on the version of Unity you're using, and your target platform / scripting backend, you might not be able to take advantage of everything C# 5.0 has to offer. And 5.0 is not even the latest version of the language. That aside, this book is excellent.

What it doesn't do, though, is walk you through projects, in a let's-build-this-game-step-by-step kind of way, which as others wrote might be helpful at first. I'd still recommend you buy this book and use it to read about the interesting details of whatever you learn elsewhere or through tutorials.