Click here to Skip to main content
15,914,109 members
Home / Discussions / C#
   

C#

 
AnswerRe: data exchange Pin
Christian Graus24-Mar-07 6:50
protectorChristian Graus24-Mar-07 6:50 
Questiontextbox autocomplete return character keypress problem Pin
Karl 200024-Mar-07 6:10
Karl 200024-Mar-07 6:10 
AnswerRe: textbox autocomplete return character keypress problem Pin
Mudsoad24-Mar-07 9:01
Mudsoad24-Mar-07 9:01 
GeneralRe: textbox autocomplete return character keypress problem Pin
Karl 200024-Mar-07 11:32
Karl 200024-Mar-07 11:32 
AnswerRe: textbox autocomplete return character keypress problem Pin
Karl 200024-Mar-07 19:16
Karl 200024-Mar-07 19:16 
QuestionHow to invoke cmd.exe through a winform and get the output on the the GUI Pin
pashitech24-Mar-07 5:16
pashitech24-Mar-07 5:16 
AnswerRe: How to invoke cmd.exe through a winform and get the output on the the GUI Pin
Stefan Troschuetz24-Mar-07 5:43
Stefan Troschuetz24-Mar-07 5:43 
AnswerRe: How to invoke cmd.exe through a winform and get the output on the the GUI Pin
Jimmanuel24-Mar-07 6:21
Jimmanuel24-Mar-07 6:21 
QuestionSoftware Updating Pin
freshonlineMax24-Mar-07 5:00
freshonlineMax24-Mar-07 5:00 
AnswerRe: Software Updating Pin
Christian Graus24-Mar-07 5:48
protectorChristian Graus24-Mar-07 5:48 
QuestionBug? Pin
Ranger4924-Mar-07 4:28
Ranger4924-Mar-07 4:28 
AnswerRe: Bug? Pin
Christian Graus24-Mar-07 4:34
protectorChristian Graus24-Mar-07 4:34 
GeneralRe: Bug? Pin
Ranger4924-Mar-07 5:38
Ranger4924-Mar-07 5:38 
GeneralRe: Bug? Pin
Christian Graus24-Mar-07 5:46
protectorChristian Graus24-Mar-07 5:46 
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 

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.