Okay, so I understand this C# program I was given to analyze, and now I am being told that I need to convert the entire program into C++, just my luck.
So there are several features that at the moment I do not understand how to convert over.
If there is someplace where I can find all of these solution pieces I would deeply appreciated it.
using namespace System
I cant seem to get this to work, i tried importing the following to make this available, but i ran into an error and according to this error it is not supported at the moment...
#using <mscorlib.dll>
Next:
internal class UserFeedback
{
public static void Error(Exception e)
{
How do i do an internal class in C++? i read something about public private: but i am not really sure....
public static void class XXXXXXX
I assume I can convert this to
public:
static void class XXXXXXX
instead, getting some answers on these things would be a great help to me and a good start, especially the system error I am running into, I am trying to access the Console commands. Any help is appreciated :)