Hey, I wrote the code in Dev C++ but I want the same code to bewritten in C#. I
ID: 3614655 • Letter: H
Question
Hey, I wrote the code in Dev C++ but I want the same code to bewritten in C#. I copy pasted the C++ code will you be able toconvert that to C#? Please!!? Thank you.#include <iostream> #include <string> using namespace std;
int main() { string username, password; // Get a username. cout << "Enter a username :"; getline(cin, username); // Get a password. cout << "Ask for a password :"; getline(cin, password); return 0; }
#include <iostream> #include <string> using namespace std;
int main() { string username, password; // Get a username. cout << "Enter a username :"; getline(cin, username); // Get a password. cout << "Ask for a password :"; getline(cin, password); return 0; } #include <iostream> #include <string> using namespace std;
int main() { string username, password; // Get a username. cout << "Enter a username :"; getline(cin, username); // Get a password. cout << "Ask for a password :"; getline(cin, password); return 0; }