CodePorting.Native.Cs2Cpp.PortingControl
22.5.0
Install-Package CodePorting.Native.Cs2Cpp.PortingControl -Version 22.5.0
dotnet add package CodePorting.Native.Cs2Cpp.PortingControl --version 22.5.0
<PackageReference Include="CodePorting.Native.Cs2Cpp.PortingControl" Version="22.5.0" />
paket add CodePorting.Native.Cs2Cpp.PortingControl --version 22.5.0
#r "nuget: CodePorting.Native.Cs2Cpp.PortingControl, 22.5.0"
// 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
- Website: www.codeporting.com
- Product Home: CodePorting.Native Cs2Cpp
- Download: Install CodePorting.Native Cs2Cpp
- Documentation: CodePorting.Native Cs2Cpp Documentation
- Free Support Forum: CodePorting.Native Cs2Cpp Free Support Forum
- Blog: CodePorting.Native Cs2Cpp Blog
Product | Versions |
---|---|
.NET Framework | net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
-
.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 | 68 | 5/16/2022 |
22.4.0 | 83 | 4/12/2022 |
22.3.0 | 54 | 3/21/2022 |
22.2.0 | 77 | 2/15/2022 |
22.1.0 | 85 | 1/18/2022 |
21.12.0 | 114 | 12/17/2021 |
21.11.0 | 152 | 11/13/2021 |
21.10.1 | 170 | 10/21/2021 |
21.10.0 | 133 | 10/14/2021 |
21.9.0 | 172 | 9/15/2021 |
21.8.0 | 163 | 8/16/2021 |
21.7.0 | 160 | 7/16/2021 |
21.6.0 | 211 | 6/16/2021 |
21.5.0 | 152 | 5/12/2021 |
21.4.0 | 185 | 4/14/2021 |
21.3.0 | 194 | 3/15/2021 |
21.2.0 | 182 | 2/12/2021 |
21.1.0 | 214 | 1/21/2021 |
20.12.0 | 225 | 12/18/2020 |
20.11.0 | 220 | 11/16/2020 |
20.10.0 | 242 | 10/19/2020 |
20.9.0 | 268 | 9/17/2020 |
20.8.0 | 331 | 8/13/2020 |
20.7.0 | 277 | 7/16/2020 |
20.6.0 | 324 | 6/15/2020 |
20.5.0 | 272 | 5/19/2020 |
20.4.0 | 281 | 4/20/2020 |
20.3.0 | 291 | 3/16/2020 |