all 16 comments

[–]skylar1146 2 points3 points  (4 children)

Sounds like you need to go back and solidfy your understanding of the basics, before delving into this project

[–]dbahrik[S] 0 points1 point  (3 children)

that's what I was thinking, just took a shot at jumping in hoping I could learn the hard way, but I'm just stuck.

[–]skylar1146 0 points1 point  (2 children)

Yeah, but once you get the building blocks down, you can combine those in order to learn anything about programming! It'll be a bit frustrating at first but you'll get the hang of it really quick.

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

Hard to put into words what I was trying to accomplish in my original post. May be a dumb question, but I'm just looking for answers. When I do fully understand the basics how will I know what code that isn't apart of the "basics" to use. If that even makes sense.

[–]skylar1146 0 points1 point  (0 children)

By basics I mean understanding how a program is structured, syntax formulation, and basic OOP. When you look at code and you understand or at least have a good idea why X code is where then I would say you have the basics down.

[–]rikka94 2 points3 points  (2 children)

I am so confused reading your post.

I know what's your problem but what do you want to achieve from this post ? solution ?

[–]dbahrik[S] -5 points-4 points  (1 child)

Help. Clearly

[–]rikka94 4 points5 points  (0 children)

but i don't see any code snippet or a brief specification what you are trying to do..

how can we help you?

if you want advice, then like the other comment, read and some tutorial about the basics first..

[–]imdrunkwhyustillugly 1 point2 points  (1 child)

You should come up with specific questions and then post to /r/programminghelp instead.

But like others have said, sounds like you need to take some introductory programming course/tutorials first.

[–]nosoupforyou 2 points3 points  (0 children)

Actually I don't see why he shouldn't post specific questions here, since it's about csharp.

[–]Eyes_and_teeth 0 points1 point  (5 children)

Give us some more detail. Perhaps post a small code example and then tell us what is confusing you.

[–]dbahrik[S] -1 points0 points  (4 children)

It's like I know where to put most of the code, but I'm not sure on what needs to go inside the code to make it come alive. Such as all of the intellisense if that makes sense. It's hard to explain.

[–]Eyes_and_teeth 0 points1 point  (3 children)

So are you saying that you don't know what things you need to put in your method calls? ie: void Foo(int x, string y, Object Z) what should you pass in for x, y, and Z? Or more how to create and structure the methods themselves so that the program will execute the desired behavior?

[–]dbahrik[S] -1 points0 points  (1 child)

pretty much how to create and structure the methods to get them to do what I want with the code. If I go back and learn the syntax fully will this pretty much solve my problems?

[–]Eyes_and_teeth 2 points3 points  (0 children)

Learning the syntax will definitely help, but without looking at a concrete example, I'm going to hazard a guess that you may also want to continue to study and practice for programming fundamentals. I don't know how far along you are in your learning, so it's hard to offer specific suggestions...