Tagged Questions
35
votes
8answers
2k views
Why are many ports of languages to .net prefixed with 'Iron'?
Was discussing over lunch why several ports of languages to the .net framework are prefixed with 'Iron'.
e.g.
IronPython
IronRuby
IronLisp
IronScheme
IronPHP
Anyone out there know?
(language ...
8
votes
1answer
138 views
.NET: What is the object header used for?
In .NET there are 8 bytes of overhead for each object. 4 bytes are a pointer to the object's type. What are the other 4 bytes, known as the object header, used for?
1
vote
4answers
131 views
.net AppSettings historical trivia
One of the previous developers where I work habitually, consistently used:
ConfigurationSettings.AppSettings["Foo"].ToString()
It twigs me a bit since AppSettings collection items are already ...