Click here to Skip to main content
15,891,529 members
Home / Discussions / C#
   

C#

 
GeneralRe: Compiler for native code - Open-source project challenge! Pin
Roger Alsing17-Jun-05 10:51
Roger Alsing17-Jun-05 10:51 
GeneralRe: Compiler for native code - Open-source project challenge! Pin
Daniel Turini20-Jun-05 4:40
Daniel Turini20-Jun-05 4:40 
GeneralRe: Compiler for native code - Open-source project challenge! Pin
DavidNohejl17-Jun-05 13:59
DavidNohejl17-Jun-05 13:59 
GeneralRe: Compiler for native code - Open-source project challenge! Pin
Daniel Turini17-Jun-05 22:37
Daniel Turini17-Jun-05 22:37 
GeneralRe: Compiler for native code - Open-source project challenge! Pin
DavidNohejl18-Jun-05 2:26
DavidNohejl18-Jun-05 2:26 
GeneralRe: Compiler for native code - Open-source project challenge! Pin
Daniel Turini18-Jun-05 4:01
Daniel Turini18-Jun-05 4:01 
GeneralTo maintain hyperlinks while converting from smart doc to pdf Pin
Member 188835217-Jun-05 3:00
Member 188835217-Jun-05 3:00 
Generalc++ to c# and marshalling Pin
savage_16-Jun-05 23:41
savage_16-Jun-05 23:41 
#define hextobin(c) ((c)>='a'&&(c)<='f' ? (c)-'a'+10 : (c)>='A'&&(c)<='F' ? (c)-'A'+10 : (c)-'0')

unsigned char BinKey[16];
for(int i=0; i < KeyEdit->Text->Length; i=i+2)
{
BinKey[i>>1] = (unsigned int)(hextobin(KeyEdit->Text->get_Chars(i)) << 4) + hextobin(KeyEdit->Text->get_Chars(i+1));
}

converted c#

string hexKey = "ffffffffffffffffffffffffffffffff"; //32 f s'
int byteLength = hexKey.Length/2;
byte[] bytes = new byte[byteLength];
int j=0;
string binKey = "";
for (int i=0; i
GeneralRe: c++ to c# and marshalling Pin
tom_dx17-Jun-05 2:20
tom_dx17-Jun-05 2:20 
GeneralSize Of a Managed Object Pin
Andre Trollip16-Jun-05 20:58
Andre Trollip16-Jun-05 20:58 
GeneralRe: Size Of a Managed Object Pin
S. Senthil Kumar16-Jun-05 23:51
S. Senthil Kumar16-Jun-05 23:51 
GeneralRe: Size Of a Managed Object Pin
Andre Trollip17-Jun-05 0:30
Andre Trollip17-Jun-05 0:30 
GeneralRe: Size Of a Managed Object Pin
DavidNohejl17-Jun-05 3:40
DavidNohejl17-Jun-05 3:40 
GeneralInstaller CustomAction in managed code Pin
mav.northwind16-Jun-05 20:49
mav.northwind16-Jun-05 20:49 
Generalon using dataset Pin
ppp00116-Jun-05 19:05
ppp00116-Jun-05 19:05 
GeneralWeb Service - Query Pin
Sumit Domyan16-Jun-05 18:56
Sumit Domyan16-Jun-05 18:56 
GeneralApplication Shell then create modules Pin
misticat16-Jun-05 16:51
misticat16-Jun-05 16:51 
Generaldrop excel to winform Pin
Ista16-Jun-05 15:14
Ista16-Jun-05 15:14 
QuestionGood tree and PropertyGrid controls? Pin
David Thielen16-Jun-05 13:06
David Thielen16-Jun-05 13:06 
AnswerRe: Good tree and PropertyGrid controls? Pin
Ista16-Jun-05 15:46
Ista16-Jun-05 15:46 
GeneralRe: Good tree and PropertyGrid controls? Pin
Roger Alsing20-Jun-05 20:55
Roger Alsing20-Jun-05 20:55 
GeneralRe: Good tree and PropertyGrid controls? Pin
Ista20-Jun-05 21:02
Ista20-Jun-05 21:02 
QuestionCan i change the look of a progress bar? Pin
Anthony Mushrow16-Jun-05 12:10
professionalAnthony Mushrow16-Jun-05 12:10 
AnswerRe: Can i change the look of a progress bar? Pin
Christian Graus16-Jun-05 12:28
protectorChristian Graus16-Jun-05 12:28 
AnswerRe: Can i change the look of a progress bar? Pin
tom_dx16-Jun-05 15:17
tom_dx16-Jun-05 15:17 

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.