POCO stands for "Plain Old CLR Object" Here CLR means Common Language Rutime that includes dotnet supported languages like C#, VB etc.
A Plain Old CLR Objects (POCO) is a class that doesn't depend on any framework-specific base class. It is like any other normal .Net class; that is why they are called “Plain Old CLR Objects”. These POCO entities support most of the same LINQ...
Showing posts with label Dotnet. Show all posts
Showing posts with label Dotnet. Show all posts
Friday, 6 May 2016
Saturday, 19 September 2015
Why String Are Value Types Csharp Dotnet
The distinction between reference types and value types are basically a performance tradeoff in the design of the language. Reference types have some overhead on construction and destruction and garbage collection, because they are created on the heap. Value types on the other hand have overhead on method calls , because the whole object is copied rather than just a pointer.
Because...
Boxing And Unboxing in DotNet

Boxing and unboxing
I Recommend to Go to this link to Read about Value Types and Reference Types Before Going To Understand the concept of Boxing and Unboxing
Value Types Vs Reference Types Dotnet
http://geeksprogrammings.blogspot.in/2015/09/value-types-vs-reference-types-dotnet.html
Boxing...
Subscribe to:
Posts (Atom)
Followers
Popular Posts
-
Sqlite Database is the best way of providing portability...
-
Necessity is the advent of everything today while doing...
-
Quick Sort is a Sorting Algorithm based on Divide And...