c# Programming Glossary: releases
c# and excel automation - ending the running instance http://stackoverflow.com/questions/1041266/c-sharp-and-excel-automation-ending-the-running-instance It simply stores a reference to the wrapped COM object and releases it explicitly using ReleaseComObject in its Dispose method...
Free C# metrics calculation library (DLL) http://stackoverflow.com/questions/1052269/free-c-sharp-metrics-calculation-library-dll here The code source is available on github Packaged releases are also available It works both on Windows and Mono share..
Avoiding the woes of Invoke/BeginInvoke in cross-thread WinForm event handling? http://stackoverflow.com/questions/1364116/avoiding-the-woes-of-invoke-begininvoke-in-cross-thread-winform-event-handling and Invoke . The problem here is that after the lock releases on threadCallbackList a new entry can be inserted before the..
C# producer/consumer http://stackoverflow.com/questions/1656404/c-sharp-producer-consumer have to wait for another pulse. while queue.Count 0 This releases listLock only reacquiring it after being woken up by a call..
Operator Overloading with C# Extension Methods http://stackoverflow.com/questions/172658/operator-overloading-with-c-sharp-extension-methods features. This is still on our radar for future releases. What will help is if we get a good amount of compelling scenarios..
What is the best buffer size when using BinaryReader to read big files (>1GB)? http://stackoverflow.com/questions/19558435/what-is-the-best-buffer-size-when-using-binaryreader-to-read-big-files-1gb IO. We expect this problem will be addressed in later releases of the .NET framework. If you do your own buffering use large..
Best practices for assembly naming and versioning? http://stackoverflow.com/questions/199823/best-practices-for-assembly-naming-and-versioning the major or minor versions In some cases I have seen releases going straight from version 1.0 to 3.0. In other cases it seems..
C# Object Pooling Pattern implementation http://stackoverflow.com/questions/2510975/c-sharp-object-pooling-pattern-implementation available sessions that callers become blocked waiting for releases. This isn't really applicable since the sessions can be shared.. it so that when we Dispose this object it automatically releases itself back to the pool. Except when the pool has already been..
Fields of class, are they stored in the stack or heap? http://stackoverflow.com/questions/2565331/fields-of-class-are-they-stored-in-the-stack-or-heap not guaranteed to follow the same behavior nor are further releases from Microsoft. But yes fields of a class are stored on the..
using statement vs try finally http://stackoverflow.com/questions/278902/using-statement-vs-try-finally a class which acquires the lock in its constructor and releases in its Dispose method. I'm using read write locks in a lot of..
Detect Windows 7 in .net http://stackoverflow.com/questions/2819934/detect-windows-7-in-net you need for distinguishing most Windows OS major releases but not all. It consists of three components which map to the..
What are the differences between various threading synchronization options in C#? http://stackoverflow.com/questions/301160/what-are-the-differences-between-various-threading-synchronization-options-in-c thread enters the semaphore and incremented when a thread releases the semaphore. When the count is zero subsequent requests block..
Starting and stopping IIS Express programmatically http://stackoverflow.com/questions/4772092/starting-and-stopping-iis-express-programmatically release documentation and is subject to change in future releases . So I decided to take a look at what IISExpressTray.exe is..
Database Deployment Strategies (SQL Server) http://stackoverflow.com/questions/504909/database-deployment-strategies-sql-server deployments and keep the database scripts in line with releases. Currently we have a fairly decent way of deploying our source..
How to render pdfs using C# http://stackoverflow.com/questions/518878/how-to-render-pdfs-using-c-sharp ActiveX but it may be out of date easily broken by new releases and its legality is murky basically it's ok for internal use..
How does lock work exactly? http://stackoverflow.com/questions/6029804/how-does-lock-work-exactly Exit the current thread will block until the other thread releases the object. It is legal for the same thread to invoke Enter..
Using the using statment in c# [duplicate] http://stackoverflow.com/questions/614959/using-the-using-statment-in-c-sharp .NET Framework common language runtime CLR automatically releases the memory used to store objects that are no longer required...
Zip folder in C# http://stackoverflow.com/questions/905654/zip-folder-in-c-sharp From the DotNetZip help file http dotnetzip.codeplex.com releases using ZipFile zip new ZipFile zip.UseUnicodeAsNecessary true..
How do I determine the HResult for a System.IO.IOException? http://stackoverflow.com/questions/991537/how-do-i-determine-the-hresult-for-a-system-io-ioexception appropriate action to take here. If the locking process releases the byte range lock quickly then I can proceed reading the file...
|