C#-like properties in native C++?

后端 未结 11 1868
南笙
南笙 2020-11-29 04:46

In C# / .NET you can do something like this:

someThing.text = \"blah\";
String blah = someThing.text;

However, the above code does not actu

11条回答
  •  有刺的猬
    2020-11-29 05:13

    Why not to use C# language instead of C++ for native development? For that you can use IL2BC utility to generate native code from C# source and/or MSIL byte-code?

    IL2BC can be found at this site

    http://csnative.codeplex.com

提交回复
热议问题