Assignment1.Employee.employee C# (CSharp) Méthode

employee() public méthode

public employee ( int id, string name ) : void
id int
name string
Résultat void
            public void employee(int id, string name)
            {
                this.Id = id;
                this.employeeName = name;
            }