Version: 2022.1
언어: 한국어
추가 클래스 라이브러리 어셈블리 레퍼런스
스크립팅 백엔드

C# 컴파일러

Unity 에디터는 C# 컴파일러를 사용해 Unity 프로젝트에서 C# 소스 코드를 컴파일합니다.

# C# 컴파일러 C# 언어 버전
Roslyn C# 9.0

에디터는 기본 옵션 세트를 C# 컴파일러로 전달합니다. 더 많은 프로젝트 옵션을 전달하려면 플랫폼별 컴파일에 있는 문서를 참조하십시오.

미지원 기능

C# 9.0

  • localsinit 플래그 내보내기 무시
  • 공변 반환 타입
  • 모듈 초기화
  • 관리되지 않는 함수 포인터에 대한 확장 가능한 호출 규칙
  • 초기화 전용 세터

프로젝트에서 지원되지 않는 기능을 사용하려고 하면 컴파일 시 오류가 발생합니다.

기록 지원

C# 9 초기화 및 기록 지원에는 몇 가지 주의 사항이 있습니다.

  • System.Runtime.CompilerServices.IsExternalInit 유형은 초기화 전용 세터를 사용하므로 전체 기록 지원에 필요하지만 .NET 5 이상(Unity에서 지원하지 않음)에서만 사용할 수 있습니다. 사용자는 자신의 프로젝트에서 System.Runtime.CompilerServices.IsExternalInit 유형을 선언하여 이 문제를 해결할 수 있습니다.
  • Unity의 직렬화 시스템은 C# 기록을 지원하지 않기 때문에 직렬화된 유형의 C# 기록을 사용하면 안 됩니다.

관리되지 않는 함수 포인터 지원

Unity는 C# 9에 도입된 관리되지 않는 함수 포인터를 지원하지만 확장 가능한 호출 규칙은 지원하지 않습니다. 다음 예제 코드는 관리되지 않는 함수 포인터를 올바르게 사용하는 방법에 대한 자세한 정보를 제공합니다.

The following example targets Windows platforms and requires the Allow ‘unsafe’ code to be enabled in the Player Settings menu. For more information about C#’s unsafe context, see Microsoft’s unsafe (C# Reference) documentation or Microsoft’s Unsafe code, pointer types, and function pointers documentation.


using System;
using System.Runtime.InteropServices;
using UnityEngine;

public class UnmanagedFunctionPointers : MonoBehaviour
{
  [DllImport("kernel32.dll")]
  static extern IntPtr LoadLibrary(string lpLibFileName);
  
  [DllImport("kernel32.dll")]
  static extern IntPtr GetProcAddress(IntPtr hModule, string lpProcName);
  
  // You must enable "Allow 'unsafe' code" in the Player Settings
  unsafe void Start()
  {
# if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
    // This example is only valid on Windows
    
    // Get a pointer to an unmanaged function
    IntPtr kernel32 = LoadLibrary("kernel32.dll");
    IntPtr getCurrentThreadId = GetProcAddress(kernel32, "GetCurrentThreadId");

    // The unmanaged calling convention
    delegate* unmanaged[Stdcall]<UInt32> getCurrentThreadIdUnmanagedStdcall = (delegate* unmanaged[Stdcall]<UInt32>)getCurrentThreadId;
    Debug.Log(getCurrentThreadIdUnmanagedStdcall());
# endif
  }
}


추가 클래스 라이브러리 어셈블리 레퍼런스
스크립팅 백엔드
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961