IKVM.NET: Interaction between C# and Java
A nice project, everyone coming from Java and migrating to C#: IKVM.NET Home Page It is a JVM implemented in .NET, contains a .NET implementation of a lot classes from the Java class libraries (JDK),...
View ArticleMicrosoft: Shared Source Common Language Infrastructure 2.0 Release
Just came accross this: seems like Microsoft has released some parts of the CLI under one of their “free” licenses. Download details: Shared Source Common Language Infrastructure 2.0 Release Update...
View ArticleVisualStudio.NET: Text-Editor Guide at 80
It is still considered good style to keep code-lines within a certain bound (e.g. 80 characters). IDEs like Eclipse offer to display a red guiding line at the chosen offset to help developers keep...
View Article.NET strings are not always immutable!
Strings are immutable. If you want to modify a sequence of characters, use StringBuilder. At least, that’s whats officially said. But in the framework there is at least one method that does modify a...
View Article