تابع سازنده c#

draria

Member
2 تا ساختمان داده با مشخصات زیر :
Employee : age - name - lname address
student : age - name - avarage - address
و برای هر کدام توابع سازنده ای بنویسید .
 

the_king

مدیرکل انجمن
2 تا ساختمان داده با مشخصات زیر :
Employee : age - name - lname address
student : age - name - avarage - address
و برای هر کدام توابع سازنده ای بنویسید .

کد:
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication15
{
    struct Employee
    {
        int age;
        string name;
        string lname;
        string address;
        public Employee(int Age, string Name, string Lname, string Address)
        {
            age = Age;
            name = Name;
            lname = Lname;
            address = Address;
        }
    }

    struct Student
    {
        int age;
        string name;
        double average;
        string address;
        public Student(int Age, string Name, double Average, string Address)
        {
            age = Age;
            name = Name;
            average = Average;
            address = Address;
        }
    }

    class Program
    {
        static void Main(string[] args)
        {
            Employee e = new Employee(30, "myname", "mylname", "myadd");
            Student s = new Student(22, "myname", 17.5, "myadd");
        }
    }
}
 

جدیدترین ارسال ها

بالا