CodePorting.Native.Cs2Cpp.PortingControl 22.5.0

dotnet add package CodePorting.Native.Cs2Cpp.PortingControl --version 22.5.0
NuGet\Install-Package CodePorting.Native.Cs2Cpp.PortingControl -Version 22.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CodePorting.Native.Cs2Cpp.PortingControl" Version="22.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CodePorting.Native.Cs2Cpp.PortingControl --version 22.5.0
#r "nuget: CodePorting.Native.Cs2Cpp.PortingControl, 22.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CodePorting.Native.Cs2Cpp.PortingControl as a Cake Addin
#addin nuget:?package=CodePorting.Native.Cs2Cpp.PortingControl&version=22.5.0

// Install CodePorting.Native.Cs2Cpp.PortingControl as a Cake Tool
#tool nuget:?package=CodePorting.Native.Cs2Cpp.PortingControl&version=22.5.0

Description

CodePorting.Native Cs2Cpp is a framework capable of translating C# code to C++. The resulting code provides the same API original .Net code had and can run in the native (unmanaged) C++ environment.

CodePorting.Native.Cs2Cpp.PortingControl package makes it possible to fine-tune the translated code. There are two ways to do so: attributes and service classes.

Attributes

The attributes defined in the CodePorting.Native.Cs2Cpp.PortingControl package are recognized by the code porter (translator) and affect how the output code looks. It is possible to remove, stub or rename members, use weak pointers instead of shared pointers, move arrays from heap to stack, alter inheritance scheme, change includes list, add C++-specific declarations (such as friend class, constexpr field or const method) and so on. To use these attributes, add reference to this package into the project being ported and use the attributes in the code. See the Attributes guide for more details.

Service classes

There are several service classes provided in the CodePorting.Native.Cs2Cpp.PortingControl package that may be used in the original C# code. When this code gets translated to C++, the porter replaces calls into these classes with calls into C++-specific versions of them, thus providing the means of inserting the C++-specific operations into the C# code. For example, the MemoryManagement class provides the ways to control the lifetime of objects in C++ (this should only be used occasionally, where the default translation doesn't work well) without doing any changes to C# code behavior. The Porter class provides the means to check if the code is being executed in C# or C++. Based on the result, one can choose an appropriate logic at runtime. See The Memory management model for more details.

Usage

Make your project depend on CodePorting.Native.Cs2Cpp.PortingControl:

<PackageReference Include="CodePorting.Native.Cs2Cpp.PortingControl" Version="*" />

Now you can use the attributes and service classes from your code:

using System;
using CsToCppPorter;
using CodePorting.Native.Cs2Cpp;

namespace PortedProject
{
    public abstract class MyClass
    {
        [CppWeakPtr, CppMutable]
        private MyClass Parent;

        [CppConstMethod]
        public void DoSomething()
        {
            Parent = this;
            if (Porter.IsPorted)
                PerformCppSpecificOperations();
            else
                PerformCsSpecificOperations();
        }

        protected abstract void PerformCppSpecificOperations();
        protected abstract void PerformCsSpecificOperations();
    }
}

Now, when you use the CodePorting.Native Cs2Cpp to translate your project to C++, the porter will recognize the attributes or service classes and generate the code accordingly.

Resources

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 3.5

    • No dependencies.
  • .NETFramework 4.7.2

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
22.5.0 503 5/16/2022
22.4.0 436 4/12/2022
22.3.0 392 3/21/2022
22.2.0 411 2/15/2022
22.1.0 427 1/18/2022
21.12.0 268 12/17/2021
21.11.0 308 11/13/2021
21.10.1 324 10/21/2021
21.10.0 287 10/14/2021
21.9.0 326 9/15/2021
21.8.0 322 8/16/2021
21.7.0 315 7/16/2021
21.6.0 370 6/16/2021
21.5.0 305 5/12/2021
21.4.0 329 4/14/2021
21.3.0 341 3/15/2021
21.2.0 329 2/12/2021
21.1.0 361 1/21/2021
20.12.0 387 12/18/2020
20.11.0 372 11/16/2020
20.10.0 397 10/19/2020
20.9.0 408 9/17/2020
20.8.0 478 8/13/2020
20.7.0 432 7/16/2020
20.6.0 489 6/15/2020
20.5.0 438 5/19/2020
20.4.0 435 4/20/2020
20.3.0 451 3/16/2020