Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
GeneralRe: string declare Pin
DaveyM695-Jun-09 1:20
professionalDaveyM695-Jun-09 1:20 
GeneralRe: string declare Pin
I Believe In GOD5-Jun-09 1:34
I Believe In GOD5-Jun-09 1:34 
QuestionHow to make a network connection at this case? Pin
Majid_grok5-Jun-09 0:04
Majid_grok5-Jun-09 0:04 
AnswerRe: How to make a network connection at this case? Pin
stancrm5-Jun-09 0:37
stancrm5-Jun-09 0:37 
GeneralRe: How to make a network connection at this case? Pin
Majid_grok5-Jun-09 1:36
Majid_grok5-Jun-09 1:36 
GeneralRe: How to make a network connection at this case? Pin
stancrm5-Jun-09 1:39
stancrm5-Jun-09 1:39 
QuestionCan we use pointers or similar in C# ? Pin
Otex4-Jun-09 23:53
Otex4-Jun-09 23:53 
AnswerRe: Can we use pointers or similar in C# ? Pin
0x3c05-Jun-09 0:01
0x3c05-Jun-09 0:01 
You're referring to unsafe code. Yes, you can. It's not recommended because of the potential for memory leaks, but it's possible. You wrap the code using pointers in an unsafe block, like so:
unsafe
{
    //Your code goes here
}

Then you have to coerce VS into compiling it. Project properties->Build->Allow unsafe code

Between the idea
And the reality
Between the motion
And the act
Falls the Shadow

GeneralRe: Can we use pointers or similar in C# ? Pin
Otex5-Jun-09 0:15
Otex5-Jun-09 0:15 
GeneralRe: Can we use pointers or similar in C# ? Pin
0x3c05-Jun-09 0:21
0x3c05-Jun-09 0:21 
AnswerRe: Can we use pointers or similar in C# ? Pin
Christian Graus5-Jun-09 0:12
protectorChristian Graus5-Jun-09 0:12 
QuestionOutlook 2003 VSTO Addin deployment on Windows Vista - Registry and other issues - How to Pin
Chaitanya Joshi4-Jun-09 23:28
Chaitanya Joshi4-Jun-09 23:28 
AnswerRe: Outlook 2003 VSTO Addin deployment on Windows Vista - Registry and other issues - How to Pin
led mike5-Jun-09 4:37
led mike5-Jun-09 4:37 
GeneralRe: Outlook 2003 VSTO Addin deployment on Windows Vista - Registry and other issues - How to Pin
Chaitanya Joshi7-Jun-09 23:26
Chaitanya Joshi7-Jun-09 23:26 
GeneralRe: Outlook 2003 VSTO Addin deployment on Windows Vista - Registry and other issues - How to Pin
led mike8-Jun-09 5:37
led mike8-Jun-09 5:37 
QuestionBatch Insert Problem with SqlBulkCopy. Pin
hdv2124-Jun-09 22:33
hdv2124-Jun-09 22:33 
AnswerRe: Batch Insert Problem with SqlBulkCopy. Pin
Manas Bhardwaj4-Jun-09 22:41
professionalManas Bhardwaj4-Jun-09 22:41 
GeneralRe: Batch Insert Problem with SqlBulkCopy. Pin
hdv2124-Jun-09 23:45
hdv2124-Jun-09 23:45 
GeneralRe: Batch Insert Problem with SqlBulkCopy. Pin
Manas Bhardwaj4-Jun-09 23:49
professionalManas Bhardwaj4-Jun-09 23:49 
GeneralRe: Batch Insert Problem with SqlBulkCopy. Pin
hdv2125-Jun-09 0:41
hdv2125-Jun-09 0:41 
AnswerRe: Batch Insert Problem with SqlBulkCopy. Pin
I Believe In GOD5-Jun-09 2:04
I Believe In GOD5-Jun-09 2:04 
QuestionHow to install Microsoft.mshtml.dll in GAC Pin
svt gdwl4-Jun-09 22:28
svt gdwl4-Jun-09 22:28 
AnswerRe: How to install Microsoft.mshtml.dll in GAC Pin
Christian Graus4-Jun-09 23:05
protectorChristian Graus4-Jun-09 23:05 
QuestionWMI Pin
arkiboys4-Jun-09 22:21
arkiboys4-Jun-09 22:21 
AnswerRe: WMI Pin
Pete O'Hanlon4-Jun-09 23:05
mvePete O'Hanlon4-Jun-09 23:05 

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.