123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace @struct
- {
- internal class Program
- {
- static void Main(string[] args)
- {
-
- }
- }
- public struct Employee
- {
- public string Name;
- public string Sex;
- public Employee(string name,string sex)
- {
- Name = name;
- Sex = sex;
- }
- public void ShowInfo()
- {
- Console.WriteLine("员工姓名:{0},员工性别:{1}",Name,Sex);
- }
- }
- }
|