Aida-Hagh / C-Sharp

Learn C#
1 stars 0 forks source link

Partial Class #27

Open Aida-Hagh opened 5 months ago

Aida-Hagh commented 5 months ago

قانون پارشیال کلاس ها: //هردو باید در یک فضای نام قرار داشته باشند. //نمیتوانند پراپرتی یا متد یکسان داشته باشند چون در لحظه کامپایل مرج میشن روی هم و یک کلاس میشوند.

Aida-Hagh commented 5 months ago

Operation1.cs namespace Partial_Exmple {

       **public partial class Operation
        {
            public int Sum(int a, int b)
            {
                return a+b;
            }
        }**

}


Operation2.cs

namespace Partial_Exmple {

   **public partial class Operation
    {
        public int Minus(int a, int b)
        {
            return a-b;
        }
    }**

}


Program.cs

class Program
{
    static void Main(string[] args)
    {
        MyClass my=new MyClass();
       Console.WriteLine(my.Sum(2,6));
       Console.WriteLine(my.Minus(10,3));
    }
}