Hello, I’m working on this task:
Change names in the program to correspond to C# naming conventions for local variables. Don’t change anything else.
Here is my code:
namespace Naming
{
class CrazyNames
{
public static void Main()
{
int variableName;
string anothervariablename;
int thirdvariable;
}
}
}
Can anyone please help me to solve it?