Microsoft MVP성태의 닷넷 이야기
.NET Framework: 2131. C# - Source Generator로 해결하는 enum 박싱 문제 [링크 복사], [링크+제목 복사],
조회: 11210
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

(시리즈 글이 5개 있습니다.)
.NET Framework: 673. C#에서 enum을 boxing 없이 int로 변환하기
; https://www.sysnet.pe.kr/2/0/11270

.NET Framework: 740. C#에서 enum을 boxing 없이 int로 변환하기 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/11506

.NET Framework: 779. C# 7.3에서 enum을 boxing 없이 int로 변환하기 - 세 번째 이야기
; https://www.sysnet.pe.kr/2/0/11565

.NET Framework: 1042. C# - enum 값을 int로 암시적(implicit) 형변환하는 방법?
; https://www.sysnet.pe.kr/2/0/12606

.NET Framework: 2131. C# - Source Generator로 해결하는 enum 박싱 문제
; https://www.sysnet.pe.kr/2/0/13384




C# - Source Generator로 해결하는 enum 문제

아마도 이번 글이 enum의 박싱 문제를 다루는 시리즈의 마지막이 될 듯합니다. ^^

github/nuget에 intellenum repo는,

SteveDunn/Intellenum
; https://github.com/stevedunn/intellenum

// Install-Package Intellenum -Version 1.0.0-beta.3

비록 베타 버전이라고는 하지만 단순히 enum 타입을 다루는 Source Generator에 불과하기 때문에 딱히 문제될 것이 없습니다.

재미있는 것은, 박싱 문제를 해결하기 위해 enum 타입으로 정의하는 것을 포기하고 class의 정적 멤버로 처리한다는 점입니다. 말로만 설명하면 재미없으니, 아래와 같이 간단한 코드를 보면 사용법이 눈에 들어올 것입니다. ^^

using Intellenum;

namespace ConsoleApp1;

internal class Program
{
    static void Main(string[] args)
    {
        int n = CustomerType.Standard; // 박싱이 발생하지 않음!
        PrintEnumValue(CustomerType.Standard);
    }

    private static void PrintEnumValue(int value) // 여기서도 박싱이 없음
    {
        Console.WriteLine(value);
    }
}

[Intellenum]
public partial class CustomerType
{
    public static readonly CustomerType Standard = new(1);
    public static readonly CustomerType Gold = new(2);
}

보는 바와 같이 정의부터 전혀 enum스럽지 않게 시작했는데요, 오히려 이런 선택이 더 나은 enum 처리를 가능하게 합니다. 사실 가장 이상적이라면 enum 타입에 implicit operator를 구현해 int 타입으로 자연스럽게 형변환하는 메서드를 제공하는 것이 좋습니다.

public enum MyType
{
    Standard = 1,
    Gold = 2,

    public static implicit operator System.Int32(MyType value) => (int)value; // 이 코드는 컴파일되지 않음!
}

하지만, enum 타입 내에는 메서드 정의를 할 수 없기 때문에 저런 코드가 불가능한데요, Intellenum 소스 생성기는 이런 제약에서 벗어나기 위해 아예 타입 정의부터 (implicit operator 구현이 가능한) class로 만들도록 했습니다.

따라서, enum 타입을 정의하는 개발자에게는 조금 귀찮은 코드를 요구하지만, 사용자 측에서는 기존의 enum과 별다른 차이 없이, 그러면서도 더욱 편리하게 사용할 수 있게 된 것입니다. 어찌보면, 신선한 발상의 전환이라고도 할 수 있겠습니다. ^^

(첨부 파일은 이 글의 예제 코드를 포함합니다.)

(업데이트 2023-12-21: C# - .NET 8 JsonStringEnumConverter의 AOT를 위한 개선)




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 12/21/2023]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... [61]  62  63  64  65  66  67  68  69  70  71  72  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
12413정성태11/17/202018537.NET Framework: 970. .NET 5 / .NET Core - UnmanagedCallersOnly 특성을 사용한 함수 내보내기파일 다운로드1
12412정성태11/16/202020689.NET Framework: 969. .NET Framework 및 .NET 5 - UnmanagedCallersOnly 특성 사용파일 다운로드1
12411정성태11/12/202017467오류 유형: 680. C# 9.0 - Error CS8889 The target runtime doesn't support extensible or runtime-environment default calling conventions.
12410정성태11/12/202017618디버깅 기술: 174. windbg - System.TypeLoadException 예외 분석 사례
12409정성태11/12/202019451.NET Framework: 968. C# 9.0의 Function pointer를 이용한 함수 주소 구하는 방법파일 다운로드1
12408정성태11/9/202034694도서: 시작하세요! C# 9.0 프로그래밍 [8]
12407정성태11/9/202019809.NET Framework: 967. "clr!JIT_DbgIsJustMyCode" 호출이 뭘까요?
12406정성태11/8/202020797.NET Framework: 966. C# 9.0 - (15) 최상위 문(Top-level statements) [5]파일 다운로드1
12405정성태11/8/202018676.NET Framework: 965. C# 9.0 - (14) 부분 메서드에 대한 새로운 기능(New features for partial methods)파일 다운로드1
12404정성태11/7/202019300.NET Framework: 964. C# 9.0 - (13) 모듈 이니셜라이저(Module initializers)파일 다운로드1
12403정성태11/7/202018189.NET Framework: 963. C# 9.0 - (12) foreach 루프에 대한 GetEnumerator 확장 메서드 지원(Extension GetEnumerator)파일 다운로드1
12402정성태11/7/202019712.NET Framework: 962. C# 9.0 - (11) 공변 반환 형식(Covariant return types) [1]파일 다운로드1
12401정성태11/5/202018955VS.NET IDE: 153. 닷넷 응용 프로그램에서의 "My Code" 범위와 "Enable Just My Code"의 역할 [1]
12400정성태11/5/202015176오류 유형: 679. Visual Studio - "Source Not Found" 창에 "Decompile source code" 링크가 없는 경우
12399정성태11/5/202018682.NET Framework: 961. C# 9.0 - (10) 대상으로 형식화된 조건식(Target-typed conditional expressions)파일 다운로드1
12398정성태11/4/202018215오류 유형: 678. Windows Server 2008 R2 환경에서 Powershell을 psexec로 원격 실행할 때 hang이 발생하는 문제
12397정성태11/4/202018255.NET Framework: 960. C# - 조건 연산자(?:)를 사용하는 경우 달라지는 메서드 선택 사례파일 다운로드1
12396정성태11/3/202015252VS.NET IDE: 152. Visual Studio - "Tools" / "External Tools..."에 등록된 외부 명령어에 대한 단축키 설정 방법
12395정성태11/3/202018059오류 유형: 677. SSMS로 DB 접근 시 The server principal "..." is not able to access the database "..." under the current security context.
12394정성태11/3/202015674오류 유형: 676. cacls - The Recycle Bin on ... is corrupted. Do you want to empty the Recycle Bin for this drive?
12393정성태11/3/202015328오류 유형: 675. Visual Studio - 닷넷 응용 프로그램 디버깅 시 Disassembly 창에서 BP 설정할 때 "Error while processing breakpoint." 오류
12392정성태11/2/202019853.NET Framework: 959. C# 9.0 - (9) 레코드(Records) [4]파일 다운로드1
12390정성태11/1/202019510디버깅 기술: 173. windbg - System.Configuration.ConfigurationErrorsException 예외 분석 방법
12389정성태11/1/202018681.NET Framework: 958. C# 9.0 - (8) 정적 익명 함수 (static anonymous functions)파일 다운로드1
12388정성태10/29/202017716오류 유형: 674. 어느 순간부터 닷넷 응용 프로그램 실행 시 System.Configuration.ConfigurationErrorsException 예외가 발생한다면?
12387정성태10/28/202018504.NET Framework: 957. C# - static 필드의 정보가 GC Heap에 저장될까요? [3]파일 다운로드1
... [61]  62  63  64  65  66  67  68  69  70  71  72  73  74  75  ...