The text of this blog could not be loaded. Read it on the old site: notes
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.
shihPosted Dec 24, 2008, 1:32 AM
Value Types: Simple Types (char, int..); Enum types; Struct types Stack-allocated or allocated inline in a structure Directly contain their data Each has its own copy of data Operations on one cannot affect another Reference Types: Class types; Interface types; Delegate types; Array types Heap-allocated Store references to their data (known as objects) Two reference variables can reference same object Operations on one can affect another