partial class

C#/모르는것 2019. 7. 12. 13:32

https://docs.microsoft.com/ko-kr/dotnet/csharp/programming-guide/classes-and-structs/partial-classes-and-methods


partial class
대규모 프로젝트시, 여러 곳에서 한개의 클래스를 정의하는 방법

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace TestPartial
{
    class Program
    {
        static void Main(string[] args)
        {
            Go.Write1();
            Go.Write2();
        }
    }
}
 
cs



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
 
namespace TestPartial
{
    public class ClassA
    {
        
    }
    partial class Go
    {
        public static void Write1()
        {
            Console.WriteLine("이곳은 A");
        }
    }
}
cs


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
 
namespace TestPartial
{
    public class ClassB
    {
 
    }
    partial class Go
    {
        public static void Write2()
        {
            Console.WriteLine("이곳은 B");
        }
    }
}
cs








'C# > 모르는것' 카테고리의 다른 글

델리게이트  (0) 2019.03.28
<공부할 거 모아두기>하루에 하나라도 찾아보려고 노력하기  (0) 2019.03.26
: