Skip to main content

Home/ .Net Developers/ Contents contributed and discussions participated by Tarik Guney

Contents contributed and discussions participated by Tarik Guney

Tarik Guney

Lazy loading - Wikipedia, the free encyclopedia - 0 views

  • Lazy loading is a design pattern commonly used in computer programming to defer initialization of an object until the point at which it is needed. It can contribute to efficiency in the program's operation if properly and appropriately used. The opposite of lazy loading is Eager Loading.
Tarik Guney

Closure Compiler - Google Code - 1 views

  • The Closure Compiler is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls.
Tarik Guney

Great programming quotes - Stack Overflow - 0 views

  • Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.
  • Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live
  • It works on my machine.
  •  
    The best code QA method.
Tarik Guney

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.
Tarik Guney

The MSDN Library - 0 views

  •  
    This is the the biggest source almost all .net developers benefits from.
Tarik Guney

Expectations from Net .NET Framework 4.0 - 0 views

.net framework
started by Tarik Guney on 31 Oct 09 no follow-up yet
  • Tarik Guney
     
    What were your expectations from Microsoft's new framework ?
‹ Previous 21 - 27 of 27
Showing 20 items per page