Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags

4 Posted Topics

Member Avatar for khess

We need Linux (in all its flavors), we need Windows, we need Apple, and we could use still other choices. When ATT had a monopoly on the telephone you had a black, dial phone with lousy acoustics and lousy service. You would still have it today if the monopoly was …

Member Avatar for AtomFusion
-2
2K
Member Avatar for max1million

I have a method that takes an object as an argument. The method needs to identify the type of object. This is easily accomplished for simple types like String and Double[], etc. I simply access the myObject.GetType().Name property. But for generics like List<String[]>, etc. the Name property is always "List`1". …

Member Avatar for nick.crane
0
100
Member Avatar for max1million

At [URL="http://www.random.org/analysis/"]http://www.random.org/analysis/[/URL] About half-way down the page they present a bitmap representation of a true random sequence and a pseudo-random process. What is the pattern repeat interval for the .net Random() function? I realize I could write a program to determine this but does anyone know already?

0
52
Member Avatar for max1million

I need to bit reverse 8-bit integers. eg 208 (11010000) becomes 11 (00001011) This works but it's too slow: [CODE] private short MyReverse(short a) { int[] order = new int[8]; for (int i = 0; i < 8; i++) { if ((a & Convert.ToInt32((Math.Pow(2, i)))) != 0) { order[7-i] = …

Member Avatar for ddanbe
0
220

The End.