Click here to Skip to main content
15,891,253 members
Home / Discussions / C#
   

C#

 
GeneralRe: Bug? Pin
Ranger4924-Mar-07 6:28
Ranger4924-Mar-07 6:28 
GeneralRe: Bug? Pin
Christian Graus24-Mar-07 6:52
protectorChristian Graus24-Mar-07 6:52 
GeneralRe: Bug? Pin
Ranger4924-Mar-07 7:15
Ranger4924-Mar-07 7:15 
AnswerRe: Bug? Pin
joon vh.24-Mar-07 6:35
joon vh.24-Mar-07 6:35 
GeneralRe: Bug? Pin
Ranger4924-Mar-07 6:43
Ranger4924-Mar-07 6:43 
GeneralRe: Bug? Pin
Christian Graus24-Mar-07 6:53
protectorChristian Graus24-Mar-07 6:53 
JokeRe: Bug? Pin
joon vh.24-Mar-07 7:01
joon vh.24-Mar-07 7:01 
AnswerRe: Bug? Pin
joon vh.24-Mar-07 6:59
joon vh.24-Mar-07 6:59 
There are very few C# 'masters' if you ask me. If everyone who started c# would master it eventually, this site wouldn't be as popular.

Anyway, you don't need to understand errrrrrrrrrrrvrything.
This is important though, to start using any SDK.

1. An assembly reference is telling your project that you're using a certain SDK, or another resource. You can do this by rightclicking your project in solution explorer, and choose Add Reference...
2. You should first check your project if it already has the assemblies referenced. Open your project in solution explorer and open the references folder. If it already has, then that's good. If it has an exclamation mark next to it, or isn't there, that's bad. Remove it (if possible) and continue.
3. Open the Add Reference window. Take a look around, and I think you should eventually find the XNA Dll's that you need. Don't know where as I'm not really familiar with the package. This might be noted in
4. Now, in every code file where you use any XNA related stuff, you need to tell Visual Studio that this is what you're trying to do. This is done by a using directive. You say [I Will be] using Microsoft.XNA.Framework;
5. Now there shouldn't be any more errors on missing assemblies.

Hope this helps at all.

In short:
An assembly reference, is telling the project (not the solution) you're using a certain assembly (can be an SDK, or another type of resource)
A using directive is telling a certain code file that you will be using a certain assembly, that is referenced. You can't use a using directive for an unreferenced assembly.





Visual Studio can't evaluate this, can you?
public object moo<br />
        {<br />
__get { return moo; }<br />
__set { moo = value; }<br />
}

QuestionArrayList of Structures Pin
Saikek24-Mar-07 4:08
Saikek24-Mar-07 4:08 
AnswerRe: ArrayList of Structures Pin
Stefan Troschuetz24-Mar-07 4:20
Stefan Troschuetz24-Mar-07 4:20 
AnswerRe: ArrayList of Structures Pin
Christian Graus24-Mar-07 4:52
protectorChristian Graus24-Mar-07 4:52 
GeneralRe: ArrayList of Structures Pin
Saikek24-Mar-07 6:15
Saikek24-Mar-07 6:15 
QuestionI need to change the font size of text using listbox in richtextbox Pin
Ahmed R El Bohoty24-Mar-07 3:24
Ahmed R El Bohoty24-Mar-07 3:24 
AnswerRe: I need to change the font size of text using listbox in richtextbox Pin
Christian Graus24-Mar-07 4:45
protectorChristian Graus24-Mar-07 4:45 
AnswerRe: I need to change the font size of text using listbox in richtextbox Pin
darkelv24-Mar-07 5:00
darkelv24-Mar-07 5:00 
Questiontransparent Pin
Saikek24-Mar-07 3:18
Saikek24-Mar-07 3:18 
AnswerRe: transparent Pin
Stefan Troschuetz24-Mar-07 3:41
Stefan Troschuetz24-Mar-07 3:41 
GeneralRe: transparent Pin
Saikek24-Mar-07 4:07
Saikek24-Mar-07 4:07 
AnswerRe: transparent Pin
joon vh.24-Mar-07 6:37
joon vh.24-Mar-07 6:37 
AnswerRe: transparent Pin
malharone25-Mar-07 6:46
malharone25-Mar-07 6:46 
QuestionData set issue Pin
Tauseef A24-Mar-07 3:12
Tauseef A24-Mar-07 3:12 
AnswerRe: Data set issue Pin
kubben24-Mar-07 4:17
kubben24-Mar-07 4:17 
QuestionSetting up a C# Programming Club/Study Class Pin
DanFraser224-Mar-07 3:11
DanFraser224-Mar-07 3:11 
AnswerRe: Setting up a C# Programming Club/Study Class Pin
Christian Graus24-Mar-07 4:36
protectorChristian Graus24-Mar-07 4:36 
GeneralRe: Setting up a C# Programming Club/Study Class Pin
DanFraser224-Mar-07 6:02
DanFraser224-Mar-07 6:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.