Click here to Skip to main content
16,007,126 members
Home / Discussions / C#
   

C#

 
GeneralRe: XML Formatted String and Collection with dynamic value types Pin
S. Senthil Kumar3-Nov-05 18:01
S. Senthil Kumar3-Nov-05 18:01 
AnswerRe: XML Formatted String and Collection with dynamic value types Pin
Jon Rista4-Nov-05 16:53
Jon Rista4-Nov-05 16:53 
QuestionGeting data from another program Pin
JJDIII3-Nov-05 8:57
JJDIII3-Nov-05 8:57 
AnswerRe: Accepting a string from another program Pin
Dave Kreskowiak3-Nov-05 14:13
mveDave Kreskowiak3-Nov-05 14:13 
GeneralRe: Accepting a string from another program Pin
JJDIII4-Nov-05 2:24
JJDIII4-Nov-05 2:24 
GeneralRe: Accepting a string from another program Pin
Dave Kreskowiak4-Nov-05 12:07
mveDave Kreskowiak4-Nov-05 12:07 
Questionchanging references for different configurations Pin
BlackDice3-Nov-05 8:23
BlackDice3-Nov-05 8:23 
AnswerRe: changing references for different configurations Pin
.NetRocker3-Nov-05 10:26
.NetRocker3-Nov-05 10:26 
Yes, You have to have the reference in your project. There is no way to remove the reference for just one configuration.

What you can do is, in the properties of the project, select the type of configuration(debug, release, etc what ever you defined) and go to "configuration properties". Then in the configuration in which you need the reference, go to "Build" category add another condition compilation constant eg: "CLASS_LIBRARY"

Modify your code for the using statement.
Only for the reference object do this.

#if CLASS_LIBRARY
using addyourreference;
#endif

This will add your reference conditionally.
QuestionStruct Pin
budidharma3-Nov-05 7:54
budidharma3-Nov-05 7:54 
AnswerRe: Struct Pin
.NetRocker3-Nov-05 10:28
.NetRocker3-Nov-05 10:28 
GeneralRe: Struct Pin
Christian Graus3-Nov-05 11:16
protectorChristian Graus3-Nov-05 11:16 
AnswerRe: Struct Pin
Christian Graus3-Nov-05 11:11
protectorChristian Graus3-Nov-05 11:11 
GeneralRe: Struct Pin
budidharma3-Nov-05 12:44
budidharma3-Nov-05 12:44 
AnswerRe: Struct Pin
Guffa3-Nov-05 13:16
Guffa3-Nov-05 13:16 
GeneralRe: Struct Pin
S. Senthil Kumar3-Nov-05 18:25
S. Senthil Kumar3-Nov-05 18:25 
GeneralRe: Struct Pin
Guffa3-Nov-05 22:10
Guffa3-Nov-05 22:10 
GeneralRe: Struct Pin
budidharma4-Nov-05 13:04
budidharma4-Nov-05 13:04 
GeneralRe: Struct Pin
Guffa6-Nov-05 21:00
Guffa6-Nov-05 21:00 
QuestionImage to ICO Pin
jgallen233-Nov-05 7:52
jgallen233-Nov-05 7:52 
AnswerRe: Image to ICO Pin
enjoycrack3-Nov-05 13:08
enjoycrack3-Nov-05 13:08 
GeneralRe: Image to ICO Pin
jgallen233-Nov-05 13:11
jgallen233-Nov-05 13:11 
QuestionHTML Format Pin
zaboboa3-Nov-05 6:58
zaboboa3-Nov-05 6:58 
Questionfile monitoring low level Pin
UgoDeschamps3-Nov-05 6:44
UgoDeschamps3-Nov-05 6:44 
AnswerRe: file monitoring low level Pin
.NetRocker3-Nov-05 10:18
.NetRocker3-Nov-05 10:18 
GeneralRe: file monitoring low level Pin
UgoDeschamps3-Nov-05 10:36
UgoDeschamps3-Nov-05 10:36 

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.