|
|
-
|
|
What is UML (Unified Modeling Language)?
The Unified Modeling Language (UML) is a standard language for specifying, visualizing, constructing, and documenting the artifacts of software systems, as well as for business modeling and other non-software systems. The UML represents a collection of best......
|
|
-
|
|
Multithreading requires careful programming. For most tasks, you can reduce complexity by queuing requests for execution by thread pool threads. This topic addresses more difficult situations, such as coordinating the work of multiple threads, or handling threads that block. Deadlocks and Race Cond......
|
|
-
|
|
Volatile variable and Thread.MemoryBarrier method use in condition when you want to access variable across threads without putting lock. You can read more about Volatile and Thread.MemoryBarrier on MSDN. Volatile keyword: Excerpts from MSDN The volatile modifier is usually used for a field tha......
|
|
-
|
|
Uses of Threads Foreground and Background Threads By default threads are foreground and if application is trying to close and if any foreground thread is running then application will close only after closing of all foreground threads, while background threads will automatically abort when all for......
|
|
-
|
|
Synchronization Concepts There are different strategies to make your thread safe or synchronize. Some of features are below: Basic Synchronization Thread .Sleep : Blocks execution for provided time period. Thread.Sleep(0) ; //will do context switch Thread.Sleep(100); // will block execution fo......
|
|
-
|
|
I am listing here some useful methods of JqGrid (Jquery data grid plugin). you can read more about JqGrid here. You can also see demo of this grid here. Html tag to declare JqGrid on web page "></table> <div id="pager1"></div> Grid Hide & Show $('#<nameofgrid>').hide(); $('#<......
|
|
-
|
|
This post will give you brief about FIX and basic Implementation of messages using QuickFix dotnet library. First of All we need to know what is FIX protocol. What is FIX protocol? It is a series of messaging specifications for the electronic communication of trade-related messages. It has been d......
|
|
-
|
|
Handling exceptions in WCF service is different than usual exceptions handling in .Net. If service raise exception it should propagate to clients and properly handle by client application. Since Exception object is .Net specific so it cannot propagate to clients because clients can be of different t......
|
|
-
|
|
It is a good list of interview questions: http://dotnetrobert.com/?q=node/254......
|
|
-
|
|
Here is list of WCF free training videos. This is topic wise listing of videos: Topics URL Creating Your First WCF Service Video Configuring WCF Services with......
|
|