Click here to Skip to main content
15,924,507 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Add Excel worksheet to form ? Pin
Dan Neely22-Jul-05 3:03
Dan Neely22-Jul-05 3:03 
GeneralRe: Add Excel worksheet to form ? Pin
f_n_d22-Jul-05 3:37
f_n_d22-Jul-05 3:37 
Generaldll can't register Pin
bondguru20-Jul-05 23:33
bondguru20-Jul-05 23:33 
Questionwhat exactly does the operation >> do Pin
Stephan_Wright20-Jul-05 22:22
Stephan_Wright20-Jul-05 22:22 
AnswerRe: what exactly does the operation >> do Pin
Corinna John20-Jul-05 23:51
Corinna John20-Jul-05 23:51 
GeneralRe: what exactly does the operation >> do Pin
Stephan_Wright21-Jul-05 1:41
Stephan_Wright21-Jul-05 1:41 
GeneralRe: what exactly does the operation >> do Pin
DavidNohejl23-Jul-05 18:00
DavidNohejl23-Jul-05 18:00 
AnswerRe: what exactly does the operation >> do Pin
Vega0221-Jul-05 19:26
Vega0221-Jul-05 19:26 
It's a standard shift. There is no circular shifting.

Keep in mind, though, that right-shifting is performed *with sign extensions*! That is, there are three cases:

1) The number to be shifted is unsigned (i.e. byte, ushort, uint, ulong). In this case, the bit shifted in from the left is '0'. For example, (byte) 10010010 >> 2 = 00100100.

2) The number to be shifted is signed (i.e. sbyte, short, int, long) and the MSB is 0. Then the bit shifted in from the left is '0'. For example, (sbyte) 01001000 >> 2 = 00010010.

3) The number to be shifted is signed and the MSB is 1. Then the bit shifted in from the left is '1'. For example, (sbyte) 10010010 >> 2 = 11100100.

Hope this helps!
GeneralWindows Services Pin
20-Jul-05 18:26
suss20-Jul-05 18:26 
GeneralRe: Windows Services Pin
Christian Graus20-Jul-05 18:36
protectorChristian Graus20-Jul-05 18:36 
GeneralRe: Windows Services Pin
Laji5920-Jul-05 20:26
Laji5920-Jul-05 20:26 
GeneralRe: Windows Services Pin
Christian Graus21-Jul-05 13:23
protectorChristian Graus21-Jul-05 13:23 
GeneralRe: Windows Services Pin
Laji5924-Jul-05 18:59
Laji5924-Jul-05 18:59 
GeneralRe: Windows Services Pin
Christian Graus24-Jul-05 19:02
protectorChristian Graus24-Jul-05 19:02 
GeneralRe: Windows Services Pin
Laji5924-Jul-05 20:45
Laji5924-Jul-05 20:45 
General(Exclusively) Diagonally resizable forms. Pin
Anonymous20-Jul-05 11:23
Anonymous20-Jul-05 11:23 
GeneralRe: (Exclusively) Diagonally resizable forms. Pin
Rob Graham20-Jul-05 12:43
Rob Graham20-Jul-05 12:43 
Generalcan't stop window service Pin
merlynml19-Jul-05 23:03
merlynml19-Jul-05 23:03 
GeneralRe: can't stop window service Pin
Colin Angus Mackay20-Jul-05 12:56
Colin Angus Mackay20-Jul-05 12:56 
GeneralRe: can't stop window service Pin
merlynml20-Jul-05 14:19
merlynml20-Jul-05 14:19 
GeneralAn Introduction to Windows Services Pin
Laji5919-Jul-05 21:10
Laji5919-Jul-05 21:10 
GeneralRe: An Introduction to Windows Services Pin
Corinna John20-Jul-05 23:53
Corinna John20-Jul-05 23:53 
GeneralUrgently need help for inserting value from .net CF to SQL CE database Pin
19-Jul-05 8:38
suss19-Jul-05 8:38 
GeneralSend SNMP Trap Pin
pahluwalia19-Jul-05 8:36
pahluwalia19-Jul-05 8:36 
GeneralWindows Services Pin
Laji5918-Jul-05 17:27
Laji5918-Jul-05 17:27 

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.