Click here to Skip to main content
15,889,858 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to join a .NET dll and .NET exe into a Signle Exe? Pin
leppie12-Mar-03 4:06
leppie12-Mar-03 4:06 
GeneralRe: How to join a .NET dll and .NET exe into a Signle Exe? Pin
J0hn12-Mar-03 13:55
J0hn12-Mar-03 13:55 
GeneralRe: How to join a .NET dll and .NET exe into a Signle Exe? Pin
leppie13-Mar-03 3:58
leppie13-Mar-03 3:58 
GeneralRe: How to join a .NET dll and .NET exe into a Signle Exe? Pin
J0hn13-Mar-03 14:40
J0hn13-Mar-03 14:40 
QuestionC# and comm port... How? Pin
nikulin_andrey11-Mar-03 23:43
nikulin_andrey11-Mar-03 23:43 
AnswerRe: C# and comm port... How? Pin
Victor Vogelpoel13-Mar-03 8:51
Victor Vogelpoel13-Mar-03 8:51 
QuestionCollections - what is the assignment? Pin
Anonymous11-Mar-03 23:16
Anonymous11-Mar-03 23:16 
AnswerRe: Collections - what is the assignment? Pin
Nathan Blomquist12-Mar-03 5:41
Nathan Blomquist12-Mar-03 5:41 
In your example of using Queues, the operator "=" will do a reference assignment. Meaning, any changes to q2 will also show up in q1 and vice versa.

You will need to do explicit copying of the elements in order to duplicate the queues. Or you can do something like this:

q2 = new Queue( q1 );

This will do the duplicating for you.

Hope this helps,
Nathan

---------------------------
Hmmm... what's a signature?
GeneralRe: Collections - what is the assignment? Pin
Don Miguel12-Mar-03 19:41
Don Miguel12-Mar-03 19:41 
GeneralRe: Collections - what is the assignment? Pin
Nathan Blomquist13-Mar-03 3:12
Nathan Blomquist13-Mar-03 3:12 
GeneralRe: Collections - what is the assignment? Pin
Don Miguel13-Mar-03 3:16
Don Miguel13-Mar-03 3:16 
Questionhow to add reference to Project Pin
henrykao11-Mar-03 18:34
henrykao11-Mar-03 18:34 
AnswerRe: how to add reference to Project Pin
Paul Riley12-Mar-03 7:14
Paul Riley12-Mar-03 7:14 
GeneralRe: how to add reference to Project Pin
henrykao12-Mar-03 15:00
henrykao12-Mar-03 15:00 
Generalwhy can not find particular reference in the project/Add reference Pin
henrykao11-Mar-03 18:08
henrykao11-Mar-03 18:08 
GeneralRe: why can not find particular reference in the project/Add reference Pin
Craig Collier12-Mar-03 12:13
Craig Collier12-Mar-03 12:13 
GeneralRe: why can not find particular reference in the project/Add reference Pin
henrykao12-Mar-03 15:07
henrykao12-Mar-03 15:07 
GeneralRe: why can not find particular reference in the project/Add reference Pin
Danny Blanchard12-Mar-03 19:23
Danny Blanchard12-Mar-03 19:23 
GeneralI have a question about MDI window Pin
JiangHaiLong11-Mar-03 17:48
JiangHaiLong11-Mar-03 17:48 
GeneralRe: I have a question about MDI window Pin
LongRange.Shooter13-Mar-03 7:17
LongRange.Shooter13-Mar-03 7:17 
GeneralDataGrid Heading Display Pin
hkl11-Mar-03 17:47
hkl11-Mar-03 17:47 
GeneralRe: DataGrid Heading Display Pin
Zek3vil11-Mar-03 21:28
Zek3vil11-Mar-03 21:28 
GeneralRe: DataGrid Heading Display Pin
hkl12-Mar-03 11:29
hkl12-Mar-03 11:29 
GeneralScrolling records from Access Pin
Baatezu_Not_Home11-Mar-03 11:21
sussBaatezu_Not_Home11-Mar-03 11:21 
GeneralRe: Scrolling records from Access Pin
Mark Sanders11-Mar-03 11:35
Mark Sanders11-Mar-03 11:35 

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.