A language feature is a distinct aspect of a programming language, such as binding rules, lexical design, or facets of the type system.
Questions tagged [language-features]
618 questions
0
votes
1 answer
Extending sealed intrinsic datatypes using CompilerServices.Extensions-No way to reuse?
I defined the following extension of the Date? data type
'Nullable Date Extensions
_
Public Function ToObject(ByVal thisInstance As Date?) As Object
Return If(thisInstance.HasValue,…

Chad
- 23,658
- 51
- 191
- 321
0
votes
1 answer