Click here to Skip to main content
15,915,160 members
Home / Discussions / C#
   

C#

 
QuestionRe: Scope of Refereances to Instances Pin
MehmetFurkan26-Mar-07 4:37
MehmetFurkan26-Mar-07 4:37 
Questionget data in background for datagridview Pin
Seishin#26-Mar-07 0:53
Seishin#26-Mar-07 0:53 
AnswerRe: get data in background for datagridview Pin
Hayder Marzouk26-Mar-07 2:23
Hayder Marzouk26-Mar-07 2:23 
AnswerRe: get data in background for datagridview Pin
Seishin#26-Mar-07 3:03
Seishin#26-Mar-07 3:03 
Questionwonder if some one clear the confusion about Generating MS project Pin
fulbright26-Mar-07 0:41
fulbright26-Mar-07 0:41 
QuestionINTEROP PROBLEM (using dll written in c, linked list) Pin
mephy8326-Mar-07 0:32
mephy8326-Mar-07 0:32 
AnswerRe: INTEROP PROBLEM (using dll written in c, linked list) Pin
netJP12L26-Mar-07 4:14
netJP12L26-Mar-07 4:14 
AnswerRe: INTEROP PROBLEM (using dll written in c, linked list) Pin
Leslie Sanford26-Mar-07 5:24
Leslie Sanford26-Mar-07 5:24 
mephy83 wrote:
[StructLayout(LayoutKind.Sequential)]
public struct payload
{
public string name;
public int release;
public string info;
ref payload next; //Compiler error
}


Use IntPtr for the pointer to the next structure:

[StructLayout(LayoutKind.Sequential)]
public struct payload
{
    public string name;
    public int release;
    public string info;
    public IntPtr next;
}


Check this reference[^] for more details. Specifically, look at the "MYPERSON2" example.
Questionunderlying type for enum Pin
blackjack215025-Mar-07 23:40
blackjack215025-Mar-07 23:40 
AnswerRe: underlying type for enum Pin
originSH25-Mar-07 23:48
originSH25-Mar-07 23:48 
GeneralRe: underlying type for enum Pin
blackjack215026-Mar-07 0:01
blackjack215026-Mar-07 0:01 
GeneralRe: underlying type for enum Pin
originSH26-Mar-07 2:12
originSH26-Mar-07 2:12 
AnswerRe: underlying type for enum Pin
Guffa26-Mar-07 2:18
Guffa26-Mar-07 2:18 
QuestionProblems with Console Output from Windows-App Pin
J. Holzer25-Mar-07 23:36
J. Holzer25-Mar-07 23:36 
AnswerRe: Problems with Console Output from Windows-App Pin
m@u26-Mar-07 3:39
m@u26-Mar-07 3:39 
Question.NET out of proc component exposing COM Interface Pin
abhinarulkar25-Mar-07 23:28
abhinarulkar25-Mar-07 23:28 
QuestionHow to check if one type it is .Net type Pin
darkcalin25-Mar-07 22:59
darkcalin25-Mar-07 22:59 
AnswerRe: How to check if one type it is .Net type Pin
Colin Angus Mackay25-Mar-07 23:10
Colin Angus Mackay25-Mar-07 23:10 
GeneralRe: How to check if one type it is .Net type Pin
darkcalin25-Mar-07 23:16
darkcalin25-Mar-07 23:16 
GeneralRe: How to check if one type it is .Net type Pin
Colin Angus Mackay25-Mar-07 23:18
Colin Angus Mackay25-Mar-07 23:18 
GeneralRe: How to check if one type it is .Net type Pin
darkcalin25-Mar-07 23:32
darkcalin25-Mar-07 23:32 
QuestionAdo.net Pin
supre25-Mar-07 22:46
supre25-Mar-07 22:46 
AnswerRe: Ado.net Pin
Colin Angus Mackay25-Mar-07 23:17
Colin Angus Mackay25-Mar-07 23:17 
QuestionDifferent font colors in RichTextBox Pin
johland25-Mar-07 22:29
johland25-Mar-07 22:29 
AnswerRe: Different font colors in RichTextBox Pin
mav.northwind26-Mar-07 6:32
mav.northwind26-Mar-07 6:32 

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.