Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _10_Employee_Data
- {
- class EmployeeData
- {
- static void Main()
- {
- string FirstName = "Amanda";
- string LastName = "Jonson";
- byte Age = 27;
- char Gender = 'f';
- long PersonaID = 8306112507;
- ulong Unique_Employee_number = 275600027569999;
- Console.WriteLine(FirstName);
- Console.WriteLine(LastName);
- Console.WriteLine(Age);
- Console.WriteLine(Gender);
- Console.WriteLine(PersonaID);
- Console.WriteLine(Unique_Employee_number);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment