Skip to main content

Home/ .Net Developers/ Group items tagged msdn

Rss Feed Group items tagged

1More

The MSDN Library - 0 views

  •  
    This is the the biggest source almost all .net developers benefits from.
2More

Calling Synchronous Methods Asynchronously - 0 views

  • If the asynchronous call has not completed, EndInvoke blocks the calling thread until it completes
  •  
    This article simply shows how to call Synchronous methods Asyncly.
2More

Anonymous Methods (C# Programming Guide) - 0 views

  • Creating anonymous methods is essentially a way to pass a code block as a delegate parameter
  •  
    How to pass anon methods via Delegate. This article shows this in an easy way.
2More

Tips & Tricks for ASP.NET, IIS, and Visual Web Developer : Tip#100: Did you k... - 1 views

  •  
    How to enable tracking and track the page in web.config level as well as page level. This tips shows how to achieve this convenience.
  •  
    Another "Did you know" tips from CodePlex vice president :)
3More

lock Statement (C# Reference) - 0 views

  • The lock keyword marks a statement block as a critical section by obtaining the mutual-exclusion lock for a given object, executing a statement, and then releasing the lock
  • The expression reference type in lock(expression) should not be null.
  •  
    The lock keyword ensures that one thread does not enter a critical section of code while another thread is in the critical section. If another thread tries to enter a locked code, it will wait, block, until the object is released. The section Threading (C# Programming Guide) discusses threading. The lock keyword calls Enter at the start of the block and Exit at the end of the block.
2More

Math.Pow Method (System) - 0 views

  •  
    This shows power of a number. For example it helps you to distinguish whether it is negative or positive. (NegativeInfinity or PositiveInfinity)
  •  
    How to know power of a number represented in C# language ? Use Math Class of course with Power static member.
2More

Lazy Initialization - 0 views

  • Basic) methods for lazy init
  •  
    Lazy initialization is primarily used to improve performance, avoid wasteful computation, and reduce program memory requirements
1 - 10 of 10
Showing 20 items per page