Search Results

9
votes
6answers
2k views

Serializing anonymous delegates in C#

I am trying to determine what issues could be caused by using the following serialization surrogate to enable serialization of anonymous functions/delegate/lambdas. // see http://m …
1
vote
5answers
128 views

Anonymous functions local variable hoisting is getting in the way

I know that with anonymous functions, local stack variables are promoted to a class, are now on the heap etc. So the following does not work: using System; using System.Collections. …
3
votes
2answers
205 views

.NET zlib Stream compatible with Actionscript ByteArray.uncompress

I can't seem to get a stream that Flex 3 want's to decompress. I've tried: System.IO.Compression.GZipStream System.IO.Compression.DeflateStream ICSharpCode.S …
4
votes

Views in separate assemblies in ASP.NET MVC

Essentially this is the same issue as people had with WebForms and trying to compile their UserControl ASCX files into a DLL. I found this …
0
votes

Serializing anonymous delegates in C#

A function map would prevent me from using local state in the action/conditions. The only way around this would work would be to create a class per function that required additional state. …
0
votes

Wait for pooled threads to complete.

Using .NET 4.0 Barrier class: Barrier sync = new Barrier(1); …
1
vote

Best C# solution for multithreaded threadsafe read/write locking?

Small Values For small values (basically any field that can be declared volatile), you can do the following: private static volatile int backingField; public static int F …