Click here to Skip to main content
15,887,267 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# Excel- Paste HTML table in excel sheet Pin
raesark17-May-13 2:29
raesark17-May-13 2:29 
GeneralRe: C# Excel- Paste HTML table in excel sheet Pin
Richard MacCutchan17-May-13 3:00
mveRichard MacCutchan17-May-13 3:00 
GeneralRe: C# Excel- Paste HTML table in excel sheet Pin
raesark17-May-13 3:10
raesark17-May-13 3:10 
Questionreplace a Text in winword within a range Pin
Cyrus-IRA16-May-13 20:38
Cyrus-IRA16-May-13 20:38 
AnswerRe: replace a Text in winword within a range Pin
BillWoodruff16-May-13 21:38
professionalBillWoodruff16-May-13 21:38 
QuestionHow to verify the signature signed by Java? Pin
Jun Du16-May-13 11:16
Jun Du16-May-13 11:16 
AnswerRe: How to verify the signature signed by Java? Pin
Abhinav S16-May-13 16:50
Abhinav S16-May-13 16:50 
QuestionAtomicity in C# Pin
gggustafson16-May-13 9:14
mvagggustafson16-May-13 9:14 
I am programming a bit counter, a method that returns a List < int > of the positions of the bits that are "on" in a UInt32. I was reviewing the code when I encountered
C#
position--;
bit >>= 1;

To my mind these two statements need to be atomic. To achieve at least the notion of atomicity in C#, I would change the code to
C#
position--; bit >>= 1;

I am fiercely against this in a statement body. But in this case I think it signals atomicity. Is there a better way to do this?
Gus Gustafson

AnswerRe: Atomicity in C# Pin
dusty_dex16-May-13 9:30
dusty_dex16-May-13 9:30 
SuggestionRe: Atomicity in C# Pin
Matt T Heffron16-May-13 9:44
professionalMatt T Heffron16-May-13 9:44 
GeneralRe: Atomicity in C# Pin
dusty_dex16-May-13 10:15
dusty_dex16-May-13 10:15 
GeneralRe: Atomicity in C# Pin
gggustafson16-May-13 11:43
mvagggustafson16-May-13 11:43 
QuestionRe: Atomicity in C# Pin
Matt T Heffron16-May-13 10:34
professionalMatt T Heffron16-May-13 10:34 
AnswerRe: Atomicity in C# Pin
gggustafson16-May-13 11:45
mvagggustafson16-May-13 11:45 
AnswerRe: Atomicity in C# Pin
Matt T Heffron16-May-13 12:05
professionalMatt T Heffron16-May-13 12:05 
GeneralRe: Atomicity in C# Pin
gggustafson17-May-13 5:32
mvagggustafson17-May-13 5:32 
GeneralRe: Atomicity in C# Pin
Dave Kreskowiak17-May-13 7:49
mveDave Kreskowiak17-May-13 7:49 
GeneralRe: Atomicity in C# Pin
gggustafson17-May-13 7:59
mvagggustafson17-May-13 7:59 
GeneralRe: Atomicity in C# Pin
Dave Kreskowiak17-May-13 9:40
mveDave Kreskowiak17-May-13 9:40 
GeneralRe: Atomicity in C# Pin
gggustafson17-May-13 10:11
mvagggustafson17-May-13 10:11 
AnswerRe: Atomicity in C# Pin
AspDotNetDev16-May-13 12:02
protectorAspDotNetDev16-May-13 12:02 
GeneralRe: Atomicity in C# Pin
gggustafson17-May-13 6:14
mvagggustafson17-May-13 6:14 
GeneralRe: Atomicity in C# Pin
PIEBALDconsult16-May-13 12:18
mvePIEBALDconsult16-May-13 12:18 
GeneralRe: Atomicity in C# Pin
gggustafson17-May-13 6:20
mvagggustafson17-May-13 6:20 
GeneralRe: Atomicity in C# Pin
Matt T Heffron17-May-13 6:48
professionalMatt T Heffron17-May-13 6:48 

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.