I am very familiar with C and C++, but I am new to C#. Is there any way of including C++ commands in a C# program? For example:
cout << "Hello world" ;
I realize that C# is a visual language, but it seems like such commands as
Console.WriteLine("Hello world");
is awkward if you just want to send something to the screen.
This example is only one example. I am not trying to say that one language is better than the other, but in some cases within a single program to use a command native to C++ than one than one from C#.