Click here to Skip to main content
15,903,854 members
Home / Discussions / C#
   

C#

 
QuestionReading Active Directory user password? Pin
devvvy21-Nov-05 16:01
devvvy21-Nov-05 16:01 
AnswerRe: Reading Active Directory user password? Pin
mav.northwind21-Nov-05 20:29
mav.northwind21-Nov-05 20:29 
GeneralRe: Reading Active Directory user password? Pin
devvvy21-Nov-05 20:35
devvvy21-Nov-05 20:35 
GeneralRe: Reading Active Directory user password? Pin
mav.northwind21-Nov-05 21:32
mav.northwind21-Nov-05 21:32 
GeneralRe: Reading Active Directory user password? Pin
devvvy21-Nov-05 21:43
devvvy21-Nov-05 21:43 
QuestionConfused about shallow and deep copy in C# Pin
Johny Ng21-Nov-05 13:00
Johny Ng21-Nov-05 13:00 
AnswerRe: Confused about shallow and deep copy in C# Pin
Joshua Quick21-Nov-05 14:14
Joshua Quick21-Nov-05 14:14 
AnswerRe: Confused about shallow and deep copy in C# Pin
ABC_Developer21-Nov-05 18:26
ABC_Developer21-Nov-05 18:26 
the example you shown is shallow copy.

To achieved deep copy you need to create an object for arraylist and not a reference to it
ArrayList b = new ArrayList().

int i = 0
while (i < b.count)
{
a[i] = b[i];
i++;
}


shallow copy mean two pointers pointing at the same piece of memory.
Question[very urgent]!! combobox question Pin
Sam 200621-Nov-05 12:26
Sam 200621-Nov-05 12:26 
AnswerRe: [very urgent]!! combobox question Pin
enjoycrack21-Nov-05 12:48
enjoycrack21-Nov-05 12:48 
AnswerRe: [very urgent]!! combobox question Pin
cshaaaa21-Nov-05 19:09
cshaaaa21-Nov-05 19:09 
Questionbarcode: code 128 from c# Pin
grahamcere21-Nov-05 12:02
grahamcere21-Nov-05 12:02 
AnswerRe: barcode: code 128 from c# Pin
Christian Graus21-Nov-05 14:53
protectorChristian Graus21-Nov-05 14:53 
GeneralRe: barcode: code 128 from c# Pin
grahamcere22-Nov-05 5:15
grahamcere22-Nov-05 5:15 
QuestionHow to display a pdf file in a aspx form Pin
Aricardo21-Nov-05 12:00
Aricardo21-Nov-05 12:00 
AnswerRe: How to display a pdf file in a aspx form Pin
enjoycrack21-Nov-05 12:42
enjoycrack21-Nov-05 12:42 
QuestionEasiest way to parse a data packet Pin
Tom Wright21-Nov-05 11:26
Tom Wright21-Nov-05 11:26 
AnswerRe: Easiest way to parse a data packet Pin
KaptinKrunch21-Nov-05 13:41
KaptinKrunch21-Nov-05 13:41 
GeneralRe: Easiest way to parse a data packet Pin
Tom Wright22-Nov-05 6:10
Tom Wright22-Nov-05 6:10 
GeneralRe: Easiest way to parse a data packet Pin
KaptinKrunch23-Nov-05 6:53
KaptinKrunch23-Nov-05 6:53 
QuestionI have string[] names = {&quot;name1&quot;, &quot;name2&quot;} ... Pin
Anthony Mushrow21-Nov-05 10:58
professionalAnthony Mushrow21-Nov-05 10:58 
AnswerRe: I have string[] names = {&amp;quot;name1&amp;quot;, &amp;quot;name2&amp;quot;} ... Pin
enjoycrack21-Nov-05 12:37
enjoycrack21-Nov-05 12:37 
AnswerRe: I have string[] names = {&amp;quot;name1&amp;quot;, &amp;quot;name2&amp;quot;} ... Pin
André Ziegler21-Nov-05 12:39
André Ziegler21-Nov-05 12:39 
QuestionUnmanaged Thread Unsafe Library Pin
BenjaminWalker21-Nov-05 10:49
BenjaminWalker21-Nov-05 10:49 
Questiona common serialization question Pin
mattraffel21-Nov-05 10:43
mattraffel21-Nov-05 10:43 

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.