Skip to content

Commit

Permalink
Finished tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
espensl2000 committed Aug 12, 2024
1 parent 49b9302 commit fc5c863
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions csharp-fundamentals-class-members.Main/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,30 @@ public class Core


//TODO: 1. Create an integer member named age with a value of 32
public int age = 33;
public int age = 32;



//TODO: 2. Create a String member named firstName with a value of "Jane"

public string firstName = "Jane";


//TODO: 3. Create a boolean member named isProgrammer with a value of true

public bool isProgrammer = true;


//TODO: 4. Change the value below so that the tests pass. Check the README.md file for instructions on
// running and reading tests
public int firstNumber = 109;
public int firstNumber = 9182;



//TODO: 5. Change the value below so that the tests pass
public string firstString = "Ruby is to Python what car is to carpet.";
public string firstString = "Java is to Javascript what car is to carpet.";



//TODO: 6. Change the visibility below so that the tests pass
private bool isVisible = true;
public bool isVisible = true;
}
}

0 comments on commit fc5c863

Please sign in to comment.