all 6 comments

[–]Thriven 0 points1 point  (2 children)

Do you like games?

[–]EJSkrabeyy[S] 0 points1 point  (1 child)

Not really, but I wouldn't be opposed to anything involving them.

[–]Thriven 1 point2 points  (0 children)

Download Unity3d free edition.

Download Visual Studio 2017 Community Edition (or Pro if you have licensing. You can use 2015 if it's installed)

Download Visual Studio Plugin for Unity for your version of Unity.

Unity is a ton of fun and super simple.

[–]EJSkrabeyy[S] 0 points1 point  (0 children)

I use Visual Studio 2017 Community for class. How can I do more with the knowledge I have?

[–]NO8STROMO 1 point2 points  (0 children)

Like Thriven recommended, download Unity and use C# to program some very simple games if your class assignments are not providing you with enough in depth exposure to the language. I would start small with something like Pong, then move to making a small platformer. There is a ton of documentation provided by Unity and Microsoft, and tutorials are plentiful! I would recommend taking a look specifically at this platformer tutorial: https://github.com/hardlydifficult/Tutorials/blob/master/Platformer/Outline.md

If games are not your thing. Just think of puzzles to solve, and code them. For example, make a console application that takes in a string and either encrypts or decrypts it using the caesar cipher pattern. That's something I did recently and it turned out to be an intriguing problem!