codechef

Stories kicked by codechef

ScottGu on extension methods in C# 3 and VB 9(weblogs.asp.net)

submitted by JudahGabrielJudahGabriel(814) 5 years, 2 months ago

Scott provides numerous examples of extension methods and how they are useful when dealing with in-memory data, XML data, and database data. read more...

1 comment |category: |Views: 12

tags: another

New Orcas Language Feature: Extension Methods(weblogs.asp.net)

submitted by steele27steele27(115) 5 years, 2 months ago

Extension methods allow developers to add new methods to the public contract of an existing CLR type, without having to sub-class it or recompile the original type. Extension Methods help blend the flexibility of "duck typing" support popular within dynamic languages today with the performance and compile-time validation of strongly-typed languages. read more...

add a comment |category: |Views: 77

tags: another

System.Internal - A Strange Class(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 5 years, 3 months ago

A strange class that I have found while searching for IsNullableType method. read more...

add a comment |category: |Views: 5

tags: another

Universal data type checker(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 3 months ago

A method that checks what types a string can be converted into. It could be integers, guids, booleans, enums etc. read more...

add a comment |category: |Views: 5

tags: another

C# Heap(ing) Vs Stack(ing) in .NET(c-sharpcorner.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 3 months ago

Having a basic understanding of how memory management works will help explain the behavior of the variables we work with in every program we write. In this article I'll cover some of the behaviors we need to be aware of when passing parameters to methods. read more...

add a comment |category: |Views: 47

tags: another