Click here to Skip to main content
16,017,100 members
Home / Discussions / C#
   

C#

 
GeneralRe: Curciut problem Pin
Niklas Ulvinge3-Sep-05 5:33
Niklas Ulvinge3-Sep-05 5:33 
QuestionNow, how to extract low nibble and high nibble from a byte? Pin
bouli3-Sep-05 3:15
bouli3-Sep-05 3:15 
AnswerRe: Now, how to extract low nibble and high nibble from a byte? Pin
Colin Angus Mackay3-Sep-05 3:21
Colin Angus Mackay3-Sep-05 3:21 
AnswerRe: Now, how to extract low nibble and high nibble from a byte? Pin
Guffa3-Sep-05 6:09
Guffa3-Sep-05 6:09 
QuestionPlease Heeeeeeeeelp: Problem with Pinvoke??? Pin
E6AD3-Sep-05 2:46
E6AD3-Sep-05 2:46 
Questionlooping statement Pin
Anonymous3-Sep-05 1:53
Anonymous3-Sep-05 1:53 
QuestionRe: looping statement Pin
Guffa3-Sep-05 2:10
Guffa3-Sep-05 2:10 
AnswerRe: looping statement Pin
Libor Tinka3-Sep-05 2:42
Libor Tinka3-Sep-05 2:42 
Non-recursive version (not tested):
-----------------------------------
<br />
int Calc(int i) {<br />
<br />
  int fact = 1;<br />
  for (int j = i; j > 1; j--)<br />
    fact *= j;<br />
<br />
  return fact;<br />
}<br />


Recursive version (from MSDN):
------------------------------
<br />
int Calc(int i) { <br />
  return((i <= 1) ? 1 : (i * Calc(i-1))); <br />
}<br />

AnswerRe: looping statement Pin
Colin Angus Mackay3-Sep-05 3:23
Colin Angus Mackay3-Sep-05 3:23 
QuestionMy C++ MFC-app into a dll -&gt; to be used in .NET app&#8230; Pin
anderslundsgard3-Sep-05 1:25
anderslundsgard3-Sep-05 1:25 
QuestionHow to concatenate 2 nibbles in 1 byte? Pin
bouli3-Sep-05 1:22
bouli3-Sep-05 1:22 
AnswerRe: How to concatenate 2 nibbles in 1 byte? Pin
Guffa3-Sep-05 2:10
Guffa3-Sep-05 2:10 
GeneralRe: How to concatenate 2 nibbles in 1 byte? Pin
bouli3-Sep-05 2:11
bouli3-Sep-05 2:11 
AnswerRe: How to concatenate 2 nibbles in 1 byte? Pin
leppie3-Sep-05 2:11
leppie3-Sep-05 2:11 
GeneralRe: How to concatenate 2 nibbles in 1 byte? Pin
bouli3-Sep-05 2:12
bouli3-Sep-05 2:12 
AnswerRe: How to concatenate 2 nibbles in 1 byte? Pin
Anonymous3-Sep-05 2:13
Anonymous3-Sep-05 2:13 
GeneralRe: How to concatenate 2 nibbles in 1 byte? Pin
bouli3-Sep-05 2:16
bouli3-Sep-05 2:16 
QuestionNeed help! - accessing disposed object Pin
Libor Tinka3-Sep-05 0:35
Libor Tinka3-Sep-05 0:35 
AnswerRe: Need help! - accessing disposed object Pin
if_mel_yes_else_no3-Sep-05 8:47
if_mel_yes_else_no3-Sep-05 8:47 
GeneralRe: Need help! - accessing disposed object Pin
Libor Tinka3-Sep-05 9:06
Libor Tinka3-Sep-05 9:06 
QuestionHow Can I Use Visual Studio Code Editor? Pin
2-Sep-05 22:45
suss2-Sep-05 22:45 
AnswerRe: How Can I Use Visual Studio Code Editor? Pin
leppie3-Sep-05 2:13
leppie3-Sep-05 2:13 
QuestionHow to Develope Independent Clock Pin
Suseel kumar P2-Sep-05 21:42
Suseel kumar P2-Sep-05 21:42 
AnswerRe: How to Develope Independent Clock Pin
Libor Tinka3-Sep-05 0:14
Libor Tinka3-Sep-05 0:14 
QuestionSystem.Type --&gt; Instance Pin
peterchen2-Sep-05 21:42
peterchen2-Sep-05 21:42 

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.