0
votes
A “regex for words” (semantic replacement) - any example syntax and libraries?
If you aren't tied to a particular language, Haskell has Aarne Ranta's Grammatical Framework:
http://www.cs.chalmers.se/~aarne/ …
11
votes
Why doesn’t multithreading in c# reach 100% CPU?
The problem is the COM object.
Most COM objects run in the context of a 'single-threaded apartment'. (You may have seen a [STAThread] annotation on the main method of a .NET application fro …
3
votes
C#, return statement in a lock procedure, inside or outside?
It depends,
I am going to go against the grain here. I generally would return inside of the lock.
Usually the variable mydata is a local variable. I am fond of declaring local vari …
3
votes
Is it possible to write Quake’s fast InvSqrt() function in C#?
You should be able to use the StructLayout and FieldOffset attribute to fake a union for plain old data like floats and ints.
[StructLayout(LayoutKind.Explicit, Size=4)]
private st …
6
votes
Why do we need new keywords for Covariance and Contravariance in C#?
Well, the main problem is that if you have a class hierarchy like:
class Foo { .. }
class Bar : Foo { .. }
And you have an IEnumerator<Bar> …
1
vote
Can you detect if a C# field has been assigned a default value?
What about making a generic struct that contains a value and an initialized flag?
public struct InitializationKnown<T> {
private T m_value;
private bool m_initialized; …
2
votes
Computing π to “infinite” binary precision in C#
By far my favorite Haskell spigot for pi comes from Jeremy Gibbons:
pi = g(1,0,1,1,3,3) where
g(q,r,t,k,n,l) =
if 4*q+r-t<n*t
then n : g(10*q,10*(r-n*t),t,k, …
