Click here to Skip to main content
15,892,161 members
Home / Discussions / C#
   

C#

 
Questionvb convert c#, passing parameter crystal rpts Pin
steve1_rm200026-Jan-06 5:40
steve1_rm200026-Jan-06 5:40 
AnswerRe: vb convert c#, passing parameter crystal rpts Pin
J4amieC26-Jan-06 5:53
J4amieC26-Jan-06 5:53 
NewsRe: vb convert c#, passing parameter crystal rpts Pin
steve1_rm200027-Jan-06 1:05
steve1_rm200027-Jan-06 1:05 
QuestionThe network Problem is Solved but..... Pin
snouto26-Jan-06 4:08
snouto26-Jan-06 4:08 
AnswerRe: The network Problem is Solved but..... Pin
J4amieC26-Jan-06 5:46
J4amieC26-Jan-06 5:46 
AnswerRe: The network Problem is Solved but..... Pin
leppie26-Jan-06 6:36
leppie26-Jan-06 6:36 
QuestionBinary converting byte to sbyte Pin
Marco [Stinger]26-Jan-06 3:45
Marco [Stinger]26-Jan-06 3:45 
AnswerRe: Binary converting byte to sbyte Pin
Guffa26-Jan-06 7:45
Guffa26-Jan-06 7:45 
You can just convert it, ignoring overflow, as there is no data loss.

byte source = -42;<br />
sbyte dest;<br />
<br />
unsafe { dest = (sbyte)source; }



---
b { font-weight: normal; }

GeneralRe: Binary converting byte to sbyte Pin
Marco [Stinger]26-Jan-06 11:13
Marco [Stinger]26-Jan-06 11:13 
GeneralRe: Binary converting byte to sbyte Pin
leppie26-Jan-06 11:39
leppie26-Jan-06 11:39 
AnswerRe: Binary converting byte to sbyte Pin
Guffa27-Jan-06 7:58
Guffa27-Jan-06 7:58 
GeneralRe: Binary converting byte to sbyte Pin
Marco [Stinger]27-Jan-06 22:21
Marco [Stinger]27-Jan-06 22:21 
GeneralRe: Binary converting byte to sbyte Pin
Saravanan_article26-Jan-06 19:00
Saravanan_article26-Jan-06 19:00 
QuestionThreadPool and Application Exit Pin
MrEyes26-Jan-06 3:39
MrEyes26-Jan-06 3:39 
AnswerRe: ThreadPool and Application Exit Pin
leppie26-Jan-06 6:39
leppie26-Jan-06 6:39 
Questionwhere is the windows namespace? Pin
GDavy26-Jan-06 2:41
GDavy26-Jan-06 2:41 
AnswerRe: where is the windows namespace? Pin
J4amieC26-Jan-06 3:11
J4amieC26-Jan-06 3:11 
GeneralRe: where is the windows namespace? Pin
GDavy26-Jan-06 3:39
GDavy26-Jan-06 3:39 
QuestionC# TcpListener connection problem Pin
Johan Glysing26-Jan-06 1:41
Johan Glysing26-Jan-06 1:41 
AnswerRe: C# TcpListener connection problem Pin
snouto26-Jan-06 4:19
snouto26-Jan-06 4:19 
GeneralRe: C# TcpListener connection problem Pin
Johan Glysing26-Jan-06 20:35
Johan Glysing26-Jan-06 20:35 
GeneralRe: C# TcpListener connection problem Pin
snouto26-Jan-06 23:28
snouto26-Jan-06 23:28 
QuestiongetFunctionPointer() Pin
winx26-Jan-06 1:36
winx26-Jan-06 1:36 
AnswerRe: getFunctionPointer() Pin
winx26-Jan-06 1:41
winx26-Jan-06 1:41 
GeneralRe: getFunctionPointer() Pin
James Gupta26-Jan-06 5:16
professionalJames Gupta26-Jan-06 5:16 

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.