plinth

9,112
reputation
462 views

Registered User

name plinth
member for 1 year
seen 11 mins ago
website
location Massachusetts
age 43
Big banger, exception handler.
1d
comment C#: How do I do simple math, with rounding, on integers?
Multiplication ends up shifting digits to the left. Division shifts to the right. If the multiplication doesn't result in overflow, no precision is lost. Division is highly likely to lose precision since you will lose bits (if you divide by 2, you lose 1 bit, if you divide by 16 you lose 4, etc).
2d
accepted C# TypeConverters and IsValid
2d
revised Replacing a function definition in C
added 1 characters in body
Dec
7
answered C# TypeConverters and IsValid
Dec
7
answered On declarative programming in C++
Dec
6
awarded  Mortarboard
Dec
4
answered including .h file from a different application/directory
Dec
4
answered passing string as an argument in C
Dec
3
awarded  Nice Answer
Dec
3
comment storing two shorts in one short
@dtrosset - noted and changed.
Dec
3
revised storing two shorts in one short
added 57 characters in body
Dec
3
accepted storing two shorts in one short
Dec
3
answered storing two shorts in one short
Dec
3
answered P/Invoke problem marshalling parameter
Dec
3
answered Dynamically creating functions in c
Dec
3
revised Random playlist algorithm
deleted 8 characters in body
Dec
3
comment Tab versus space indentation in C#
If you have false diffs from different tabbing, your diff tool sucks.
Dec
2
revised Random playlist algorithm
added 3059 characters in body
Dec
2
answered Random playlist algorithm
Dec
2
answered How should I inherit IDisposable?
Dec
2
revised Windows Mobile: Is there any library to build attractive interfaces?
typo
Dec
2
answered C++ frontend only compiler (convert C++ to C).
Dec
2
comment How to measure the pixel width of a digit in a given font / size (C#)
Careful with MeasureString - it also pads: "The MeasureString method is designed for use with individual strings and includes a small amount of extra space before and after the string to allow for overhanging glyphs." Also, be aware that measuring an individual glyph may not give accurate results out of context. The sum of widths of characters of a string is not always the width of the string, due to kerning.
Dec
1
answered Why writing CLS compliance code?
Dec
1
accepted Unicode string literals in C# vs C++/CLI
Dec
1
answered Unicode string literals in C# vs C++/CLI
Dec
1
revised int array to string
bulider -> builder typo
Nov
30
answered How can I generate this pattern of numbers?
Nov
30
answered How to spot empty parking spaces?
Nov
25
accepted Creating a Form In C++
Nov
25
answered Creating a Form In C++
Nov
24
comment Turing Machine Code Golf
You can drop 4 chars by using #include <string> and #include <stdio>
Nov
23
answered Efficient ways to determine tilt of an image
Nov
20
comment Equivalent of the php fmod in C#
CORRECTION: do not use this. Use the built-in modulus operator, it works correctly for all numeric types. Pinvoking to fmodf will add unnecessary overhead.
Nov
20
comment Equivalent of the php fmod in C#
I stand corrected - msdn says that modulus is defined for all numeric types, and % for doubles is fmod.
Nov
20
comment Equivalent of the php fmod in C#
You will always have that dll.
Nov
20
comment Equivalent of the php fmod in C#
fmod works on floating point numbers - the fmod(10.0, 3.1) is different from (double)((int)10.0 % (int)3.1). "The fmod function calculates the floating-point remainder f of x / y such that x = i * y + f, where i is an integer, f has the same sign as x, and the absolute value of f is less than the absolute value of y."
Nov
20
comment Equivalent of the php fmod in C#
fmod is totally different.
Nov
20
answered Equivalent of the php fmod in C#
Nov
20
answered Assembly code as an argument to inline assembler in Visual Studio
Nov
17
revised I need high performance. Will there be a difference if I use C or C++?
typo
Nov
17
comment Using foreach to iterate over immutable value-type collections
what language? Do you want to link to the document in question?
Nov
17
revised Dynamically loading a dll in C#
added 283 characters in body
Nov
17
comment Dynamically loading a dll in C#
noted and added.
Nov
17
revised Dynamically loading a dll in C#
added getprocaddress
Nov
17
answered Dynamically loading a dll in C#
Nov
17
answered Rapid switch to Java for an experienced C++ developer
Nov
16
accepted How to name a method that has an out parameter?
Nov
16
answered How to name a method that has an out parameter?
Nov
16
revised How to name a method that has an out parameter?
edited title