Tag: Development

Community

Working with DataReaders

(Jim Mischel) In ADO.NET, a DataReader provides a forward-only, read-only stream of data from a database. When you first hear of it you might think, “what good is that?” It turns out to be incredibly useful. Why? Because the underlying implementations of descendant classes take advantage of the know

Community

Option Strict [On|Off|SortOf]

(Jonathan Aneja) Yesterday I got a question from a developer asking whether or not we could add something called “Option Strict Warn” to the language. This would give a developer a warning when using something like late binding or an implicit conversion, rather than disabling it altogether (through

Community

Working with .NET access modifiers

(Tony Patton) An important aspect of any development platform is security and controlling access to resources. There are many facets to security, beginning with controlling application access to defining how code can be used. You can use access modifiers to define the declared accessibility of code.