Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Humanoid
- {
- public string model = "Player1";
- }
- class Program
- {
- static void Main(string[] args)
- {
- Humanoid myObj = new Humanoid();
- Console.WriteLine(myObj.model);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement