Click here to Skip to main content
15,888,313 members
Home / Discussions / C#
   

C#

 
QuestionQuestion about Interfaces Pin
MarkB77729-Aug-08 17:07
MarkB77729-Aug-08 17:07 
AnswerRe: Question about Interfaces Pin
Scott Dorman29-Aug-08 17:57
professionalScott Dorman29-Aug-08 17:57 
GeneralRe: Question about Interfaces Pin
MarkB77729-Aug-08 18:09
MarkB77729-Aug-08 18:09 
GeneralRe: Question about Interfaces Pin
Scott Dorman29-Aug-08 18:19
professionalScott Dorman29-Aug-08 18:19 
GeneralRe: Question about Interfaces Pin
MarkB77729-Aug-08 18:36
MarkB77729-Aug-08 18:36 
GeneralRe: Question about Interfaces Pin
Scott Dorman29-Aug-08 19:15
professionalScott Dorman29-Aug-08 19:15 
QuestionMoving from VSWD Express 2008 to VS2008, Namespace problem Pin
Vodstok29-Aug-08 13:01
Vodstok29-Aug-08 13:01 
QuestionPointer help Pin
jacobjordan29-Aug-08 12:54
jacobjordan29-Aug-08 12:54 
Here's my problem. I have this line of code in an unsafe context:

TreeNode* Current = null;


it gives me an error that says "Cannot take the address of, get the size of, or declare a pointer to a managed type ("System.Windows.Forms.TreeNode")"
The C++ equivalent of that line would be

System::Windows::Forms::TreeNode *Current = 0;


and in C++, i can avoid that error by using the '^' operator like so

System::Windows::Forms::TreeNode^ *Current = 0;


however, i know little to nothing about C++, and i have no idea what the '^' operator does. If anyone knows a way to implement this in C#, please let me know.


void Play() { try { throw Ball(); } catch (Glove) { } finally { Play(); } }

"Failure is only the opportunity to begin again, this time more wisely."
"Don't ask for a light load, but rather ask for a strong back."

AnswerRe: Pointer help Pin
Mark Salsbery29-Aug-08 14:03
Mark Salsbery29-Aug-08 14:03 
AnswerRe: Pointer help Pin
Guffa30-Aug-08 0:08
Guffa30-Aug-08 0:08 
QuestionCuror Pin
netJP12L29-Aug-08 9:12
netJP12L29-Aug-08 9:12 
AnswerRe: Curor Pin
Wendelius29-Aug-08 9:38
mentorWendelius29-Aug-08 9:38 
QuestionGet list of all fields referenced from RDLC XML file Pin
AndrusM29-Aug-08 9:05
AndrusM29-Aug-08 9:05 
AnswerRe: Get list of all fields referenced from RDLC XML file Pin
Wendelius29-Aug-08 9:17
mentorWendelius29-Aug-08 9:17 
GeneralRe: Get list of all fields referenced from RDLC XML file Pin
AndrusM29-Aug-08 9:31
AndrusM29-Aug-08 9:31 
GeneralRe: Get list of all fields referenced from RDLC XML file Pin
Wendelius29-Aug-08 9:59
mentorWendelius29-Aug-08 9:59 
GeneralRe: Get list of all fields referenced from RDLC XML file Pin
AndrusM30-Aug-08 6:59
AndrusM30-Aug-08 6:59 
GeneralRe: Get list of all fields referenced from RDLC XML file Pin
Wendelius30-Aug-08 7:10
mentorWendelius30-Aug-08 7:10 
QuestionVenue booking code in vb.net Pin
masosha29-Aug-08 8:35
masosha29-Aug-08 8:35 
AnswerRe: Venue booking code in vb.net Pin
Pete O'Hanlon29-Aug-08 8:38
mvePete O'Hanlon29-Aug-08 8:38 
GeneralRe: Venue booking code in vb.net Pin
Ashfield29-Aug-08 9:02
Ashfield29-Aug-08 9:02 
AnswerRe: Venue booking code in vb.net Pin
Expert Coming29-Aug-08 9:09
Expert Coming29-Aug-08 9:09 
GeneralRe: Venue booking code in vb.net Pin
Verghese29-Aug-08 10:12
Verghese29-Aug-08 10:12 
GeneralRe: Venue booking code in vb.net Pin
Expert Coming29-Aug-08 10:32
Expert Coming29-Aug-08 10:32 
AnswerRe: Venue booking code in vb.net Pin
Wendelius29-Aug-08 10:31
mentorWendelius29-Aug-08 10:31 

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.