0
votes
Timeout when using WCF host on IIS 6
I wrote a few posts that explain why this happens in regard to IDisposable and
…
0
votes
WCF client consuming multiple asmx service that uses HTTP Cookies
If you enabled asp.net compatibility mode, you can access the http session from within your WCF service, so you shouldn't need to add any cookies to do this.
…
0
votes
What is the best way to create a Factory Method when using WCF?
You cannot really provide factories unless you provide libraries for each of your consumers in their native languages.
Instead of a factory that returns a grouping object, consider filter adding s …
0
votes
How to avoid File Blocking
This could happen if one thread was attempting to read from the file while another was writing. To avoid this type of situation where you want multiple readers but only one writer at a time, make u …
0
votes
catching exceptions from another thread
Use the BackgroundWorker class in the .NET framework instead. It is the best practice for performing UI work on a different thread.
…
0
votes
Suspending and notifying threads when there is work to do
Use ManualResetEvent for cases where you want all worker threads to proceed when a state is met (looks like what you are wanting here). Use AutoResetEvent in cases where you only want to signal a s …
1
vote
.NET - What’s the best way to implement a “catch all exceptions handler”
You can monitor most exceptions in that handler even in multithreaded apps, but .NET (starting with 2.0) won't allow you to cancel unhandled exceptions unless you enable the 1.1 compatibility mode. …
0
votes
“CLR detected an invalid program.” when calling Generic Methods
Updated due to me misinterpreting the code example.
Try wrapping the delegate with a MethodInvoker:
…
1
vote
C++ performance vs. Java/C#
Actually, C# does not really run in a virtual machine like Java does. IL is compiled into assembly language, which is entirely native code and runs at the same speed as native code. You can pre-JIT …
0
votes
Linq to Entities with WCF
If you want to do it the "proper" way, you should be creating special classes for your messages that are going across the wire, rather than trying to reuse business entities or data objects as mess …
1
vote
Why IEnumerable<T> inherits from IEnumerable?
This is so that it will work with classes that do not support generics. Additionally, .NET generics don't let you do things like cast IList<long> as IList<int>, so non generic versions of int …
3
votes
Converting a sbyte to char cls-compliantly
System.Buffer.BlockCopy can be used to convert sbyte arrays to byte arrays. Then, you can use the System.Text.ASCIIEncoding to do the conversion of the byte array to ASCII text.
…
2
votes
Converting a sbyte to char cls-compliantly
Now that you changed the question :) Sbyte is not cls compliant to begin with. Make the wrapper use byte.
…
0
votes
Variable declaration in c# switch statement
The variables do share scope in the C# compiler, however scope doesn't exist in the same way in IL. As for actual creation / initialization... the .NET memory model lets the compiler move reads / w …
0
votes
ServiceProvider, cache etc. done with generics without cast
There is not a good way to do this without casting. Don't get hung up on the casting cost. Focus on things that actually impact performance... for example, hashing isn't free to begin with. You sho …
