投稿

6月, 2024の投稿を表示しています

Updated Manual Page for VB to C# Conversion Service

イメージ
We've updated the manual page for our VB to C# conversion service . We've also added descriptions of two new modes: Automatic Detection Mode and Declaration Mode. These modes make it even easier to convert VB code to C# code.

VB to C# Conversion Gets a Boost with Declaration Conversion

イメージ
We're excited to announce a new feature in our VB to C# conversion service : declaration-section conversion! This means you can now convert not only code blocks but also module-level variables and user-defined type (Type) definitions. Here's a breakdown of what the new feature offers: User-defined types converted to C# classes : Your VB code with custom types will be automatically translated into equivalent C# classes. LSet() and ToLSet() methods: The conversion process might generate methods named LSet() and ToLSet(). These are created to potentially maintain compatibility with VB's LSet statement. However, feel free to remove them if they're unnecessary for your C# code. Module-level variables as member variables: Variables originally defined at the module level in VB will be converted to member variables within the Program class in C#. You can easily adjust this by changing the class name or removing the variable def...