help translate code

I need translate this code to C#

can helpme please.


Code:
typedef struct _valor_Actual {
    LPSTR valor1;
    DWORD Flags;
    DWORD ValueSize;
    LPBYTE Value;
}
valor_Actual,*Pvalor_Actual;




Code:
#pragma comment(lib, "Cdclc2.lib")



any idea sorry



Answer this question

help translate code

  • rootschopf

    C# does not support array of pointers or pointer references so it's almost impossible to transalate this in C# from C++/CIL.I say "almost" as it can be done, if you refactor the whole code..


  • mvinod

    Sad

  • Pav

    Only Delegates could be considered as a "form" of pointers..


  • help translate code