32d5a9 No.4418
Do you guys have any guide to learn C# / Visual Studio?
I'm just out of HS and we learned Java but I don't like it, it's a bit too reclusive and I heard C# with VS is more sugary (also more jobs for it here).
____________________________
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
32d5a9 No.4419
I've been learning c# for some time now and have never found a great guide for it. You'll probably want to use multiple sources to get the best results. I've never used anything for just learning VS itself, I just pick things up from using it for C#/C++.
This is alright if you want to learn basic syntax. It also has some quizzes and tests, although I can't speak for how great they are:
https://www.tutorialspoint.com/csharp/index.htm
These two are more focused on Windows Forms, which is nice to know for learning the language but mostly obsolete compared to WPF these days. The videos also go a bit slow but aren't that long:
http://www.homeandlearn.co.uk/csharp/csharp.html
https://www.youtube.com/playlist?list=PL0EE421AE8BCEBA4A
For learning WPF, these are okay:
https://www.youtube.com/playlist?list=PL8m4NUhTQU48LI4hMrzdiLxfSY4-QcJ3l
http://www.wpf-tutorial.com/
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
32d5a9 No.4420
Are you willing to get actual books? Get Microsoft Press "C# Step by Step". requiresJust as a word of caution, the most recent editon focuses on Universal Windows Platform development with VS 2015 and Windows 10. If you only have Windows 7, you probably want to look for an earlier edition (from a quick search this may mean the 2010 edition; yes it uses VS 2010, but most things about the IDE will carry over and WPF is worth learning, probably more so than UWP).
>>4419
I wouldn't use WinForms for developing commercial software, but it still works great and allows you to quickly throw together GUI applications, so it works great for personal projects and LOB programs. It also has the benefit over WPF of being supported by Mono.
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
32d5a9 No.4423
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.
32d5a9 No.4424
Using IDEs like visual studio or meant to develope prototypes, getting a working program together quickly. But because of the generated code, it's better to develop 3 tier programs from scratch while using the prototype as a guide
Disclaimer: this post and the subject matter and contents thereof - text, media, or otherwise - do not necessarily reflect the views of the 8kun administration.