¡@

Home 

c# Programming Glossary: grained

WinForm Application UI Hangs during Long-Running Operation

http://stackoverflow.com/questions/1216791/winform-application-ui-hangs-during-long-running-operation

complex and isn't necessary unless you need really fine grained control over the thread. See the MSDN page on the Thread class..

Asynchronous Delegates Vs Thread/ThreadPool?

http://stackoverflow.com/questions/1837962/asynchronous-delegates-vs-thread-threadpool

and background threads tweaking the thread priority fine grained control over thread execution etc. share improve this answer..

The need for volatile modifier in double checked locking in .NET

http://stackoverflow.com/questions/1964731/the-need-for-volatile-modifier-in-double-checked-locking-in-net

are implemented with a MemoryBarrier . They may be finer grained on other systems. my answer is only correct if you are using..

Whats the main difference between int.Parse() and Convert.ToInt32

http://stackoverflow.com/questions/199470/whats-the-main-difference-between-int-parse-and-convert-toint32

user Int32.TryParse since it allows you more fine grained control over the situation when the user enters in invalid input...

Cannot set some HTTP headers when using System.Net.WebRequest

http://stackoverflow.com/questions/239725/cannot-set-some-http-headers-when-using-system-net-webrequest

I'd like to know if there's a way to get a finer grained control over modifying headers with a request for a remote resource...

How to avoid Dependency Injection constructor madness?

http://stackoverflow.com/questions/2420193/how-to-avoid-dependency-injection-constructor-madness

to Aggregate Services . In short create a new more coarse grained interface that hides the interaction between some or all of.. that hides the interaction between some or all of the fine grained dependencies you currently require. share improve this answer..

Lock-free multi-threading is for real threading experts

http://stackoverflow.com/questions/2528969/lock-free-multi-threading-is-for-real-threading-experts

that is lock free is that your locks are very fine grained . This decreases the chance that two concurrent threads access.. This makes your locking oh sorry non locking very fine grained without introducing additional memory or resource requirements... memory or resource requirements. Making it more fine grained decreases the probability of waits. Making it as fine grained..

Is there a reason Image.FromFile throws an OutOfMemoryException for an invalid image format?

http://stackoverflow.com/questions/2610416/is-there-a-reason-image-fromfile-throws-an-outofmemoryexception-for-an-invalid-i

file. No way that a library's error reporting can be fine grained enough to cover them all. The fact that these error codes were..

Re-entrant locks in C#

http://stackoverflow.com/questions/391913/re-entrant-locks-in-c-sharp

Driven Design concept of aggregate roots and apply coarse grained locks where possible. The idea being that if you can write your..

App pool identity versus impersonation identity?

http://stackoverflow.com/questions/5046420/app-pool-identity-versus-impersonation-identity

Pool the app is running under it's just a more fine grained method to control identity on the app level vs. the ApplicationPool..

How to optimize MySQL Boolean Full-Text Search? (Or what to replace it with?) - C#

http://stackoverflow.com/questions/6034976/how-to-optimize-mysql-boolean-full-text-search-or-what-to-replace-it-with

your own inverted index you gain far greater and finer grained control over search. Step 3. Query the Inverted Index Using..

Strongly-Typed ASP.NET MVC with Entity Framework

http://stackoverflow.com/questions/899734/strongly-typed-asp-net-mvc-with-entity-framework

Index The ObjectStateEntry also allows you to apply finer grained state change data via the SetModifiedProperty. If you call SetModified..

.Net TPL: Limited Concurrency Level Task scheduler with task priority?

http://stackoverflow.com/questions/9315937/net-tpl-limited-concurrency-level-task-scheduler-with-task-priority

provides priorities concurrency limits fairness and fine grained control over the type and priorities of the threads used. Of..