-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is still in development? #9
Comments
@LuisRGameloft I'm also interested in the project. If you do fork it or start something similar, can you update here? |
it is missing only native implementation which I am not implementing and I do not have plans to do it. |
Unfortunately Alexander don't want to continue working on this project. In addition it is not true that it misses only native implementation. What it does for example wrong is name hiding - in C++ are very different rules compared to CSharp (accessibility and visibility are indepent in C++). This sample would just not compile: class A
{
public void Do(int i)
{
System.Console.Write("A :");
System.Console.WriteLine(i);
}
}
class B : A
{
private new void Do(int i)
{
System.Console.Write("B: ");
System.Console.WriteLine(i);
}
}
struct TestClass
{
static void Main()
{
B b = new B();
b.Do(12);
}
} |
once I have finished ts2c++ I will have a look with fresh view what I can update in the project |
Many people have been trying to port C # library to C ++ |
Hi @ASDAlexander77 Your project It seems very interesting, but I did notice there is not changes or commits since Aug 3, 2017, is still on development?, I would do like to continue your project, but I don't know if it you have a guide, flow or something to help me how to understand the magic of this converter, because we are supporting a new platform and our project was made using C# with some C++ native libraries
Best Regards.
The text was updated successfully, but these errors were encountered: