Click here to Skip to main content
15,903,362 members
Home / Discussions / C#
   

C#

 
GeneralRe: Class properties Pin
1nsp1r3d3-Jul-05 21:12
1nsp1r3d3-Jul-05 21:12 
GeneralAnd Another One question Pin
Rassul Yunussov3-Jul-05 19:20
Rassul Yunussov3-Jul-05 19:20 
GeneralRe: And Another One question Pin
S. Senthil Kumar3-Jul-05 19:37
S. Senthil Kumar3-Jul-05 19:37 
GeneralPaging in Datagrid Pin
skrishnasarma3-Jul-05 19:06
skrishnasarma3-Jul-05 19:06 
GeneralRe: Paging in Datagrid Pin
WillemM4-Jul-05 0:12
WillemM4-Jul-05 0:12 
GeneralBigEndian Format Pin
Rassul Yunussov3-Jul-05 19:04
Rassul Yunussov3-Jul-05 19:04 
GeneralRe: BigEndian Format Pin
S. Senthil Kumar3-Jul-05 19:18
S. Senthil Kumar3-Jul-05 19:18 
GeneralRe: BigEndian Format Pin
Kri53-Jul-05 22:17
Kri53-Jul-05 22:17 
Small correction...if you loop 4 times you drop bytes off the right hand side of the reversed integer, so it should be like this (note also use of unsigned):

<br />
<br />
   unsigned int reversed = 0;<br />
<br />
   for (int i = 0; i<3; i++)   // loop 3 times...<br />
   {<br />
      reversed |= (BYTE)(original & 0x000000FF);<br />
      reversed = reversed << 8;<br />
      original = original >> 8;<br />
   }<br />
<br />
<br />
   // ...and then just place last byte on left-hand side of resulting integer<br />
   reversed |= (BYTE)(original & 0x000000FF);<br />

GeneralRe: BigEndian Format Pin
S. Senthil Kumar3-Jul-05 23:42
S. Senthil Kumar3-Jul-05 23:42 
GeneralRe: BigEndian Format Pin
S. Senthil Kumar3-Jul-05 23:40
S. Senthil Kumar3-Jul-05 23:40 
Questionnetworking ? Pin
Anonymous3-Jul-05 17:05
Anonymous3-Jul-05 17:05 
AnswerRe: networking ? Pin
Yulianto.3-Jul-05 18:32
Yulianto.3-Jul-05 18:32 
GeneralOutlook express add in Pin
Wessam Fathi3-Jul-05 14:15
Wessam Fathi3-Jul-05 14:15 
GeneralRe: Outlook express add in Pin
Carsten Zeumer3-Jul-05 22:16
Carsten Zeumer3-Jul-05 22:16 
GeneralFree resources Pin
Libor Tinka3-Jul-05 13:15
Libor Tinka3-Jul-05 13:15 
GeneralRe: Free resources Pin
Dave Kreskowiak3-Jul-05 16:21
mveDave Kreskowiak3-Jul-05 16:21 
GeneralC# and ASP.NET Pin
valvet3-Jul-05 12:59
valvet3-Jul-05 12:59 
GeneralRe: C# and ASP.NET Pin
Guffa3-Jul-05 13:35
Guffa3-Jul-05 13:35 
GeneralRe: C# and ASP.NET Pin
valvet4-Jul-05 3:01
valvet4-Jul-05 3:01 
Generalrich text box problems Pin
snouto3-Jul-05 12:40
snouto3-Jul-05 12:40 
Generalcontrols Pin
Anonymous3-Jul-05 11:20
Anonymous3-Jul-05 11:20 
GeneralRe: controls Pin
Christian Graus3-Jul-05 11:53
protectorChristian Graus3-Jul-05 11:53 
GeneralSplash Screen Architecture Pin
1nsp1r3d3-Jul-05 10:24
1nsp1r3d3-Jul-05 10:24 
GeneralRe: Splash Screen Architecture Pin
Christian Graus3-Jul-05 11:55
protectorChristian Graus3-Jul-05 11:55 
GeneralRe: Splash Screen Architecture Pin
1nsp1r3d3-Jul-05 12:34
1nsp1r3d3-Jul-05 12:34 

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.