Sometimes I need to convert a piece of code or an entire project from VB.NET to C# or viceversa. Unfortunately the code conversion sometimes cannot be automatically done because of the intrisic language differences. I am referring for example to keywords like yield available in C# and not in VB.NET or viceversa XML Literals available in VB.NET and not in C#.
My question is then if you ever consider the portability of source code when you write a .NET project or do you take full advantage of the language-specifics?