Microsoft .NET 시작하기
.NET에 대한 인터페이스를 사용하여 .NET 어셈블리를 MATLAB 환경으로 가져오고, 어셈블리에 포함된 클래스에서 객체를 생성하며, 이러한 객체에 대해 메서드를 호출할 수 있습니다.
MATLAB은 .NET 어셈블리 불러오기를 지원하며, 여기에는 다음이 포함됩니다.
.NET Framework(Microsoft® Windows®)
.NET Core를 포함한 .NET(Microsoft Windows, macOS 및 Linux®)
자세한 내용은 MATLAB의 .NET 인터페이스 사용 시 필요한 시스템 요구 사항 항목을 참조하십시오. MATLAB과 호환되는 .NET 버전에 대한 자세한 내용은 다른 언어에 대한 MATLAB 인터페이스를 참조하십시오.
시스템에 지원되는 버전이 있는지 확인하려면 NET.isNETSupported
함수를 사용하십시오.
함수
NET.addAssembly | .NET 어셈블리가 MATLAB에 보이도록 하기 |
NET.isNETSupported | Check for supported version of Microsoft .NET |
NET.interfaceView | Explicit interface view of .NET object (R2023b 이후) |
NET | MATLAB .NET 인터페이스의 함수 요약 |
enableNETfromNetworkDrive | (제거될 예정임) 네트워크 드라이브에서 .NET 명령에 대한 액세스 활성화 |
클래스
NET.Assembly | Members of .NET assembly |
객체
NET.NetException | Capture error information for .NET exception |
도움말 항목
- MATLAB의 .NET 인터페이스 사용 시 필요한 시스템 요구 사항
지원되는 버전의 .NET을 사용합니다.
- Access a Simple .NET Class
This example shows how to access .NET functionality already installed on your system.
- Work with Microsoft Excel Spreadsheets Using .NET
This example for Microsoft .NET Framework uses the
Microsoft.Office.Interop.Excel.ApplicationClass
class to create a spreadsheet, copy MATLAB data to it, and then close it. - Work with Microsoft Word Documents Using .NET
This example for Microsoft .NET Framework uses the
Microsoft.Office.Interop.Word.ApplicationClass
class to create a Word document. - MATLAB 예제용 .NET 애플리케이션 빌드하기
MATLAB에 포함된 .NET 예제를 빌드하기 위한 기본 정보입니다.
- Simplify .NET Class Names
Use the MATLAB
import
function to refer to .NET class names. - MATLAB 함수에서 import 사용하기
NET.addAssembly
및import
함수 사용 지침입니다. - .NET 중첩 클래스 사용하기
리플렉션을 사용하여 중첩 클래스를 인스턴스화합니다.
- Handle .NET Exceptions
MATLAB catches exceptions thrown by .NET and converts them into a
NET.NetException
object. - Assembly Is a Library of .NET Classes
An assembly is a collection of types and resources built to work together and form a logical unit of functionality in .NET applications.
- MATLAB에서 .NET 사용하기
MATLAB에서 .NET을 사용하여 이점을 얻는 방법.
- Using a .NET Object
How to create a .NET object.
- .NET Terminology
Understanding namespaces and reference and value types.
문제 해결
Troubleshooting Security Policy Settings from Network Drives
For MATLAB releases R2012b or earlier, call the
enableNETfromNetworkDrive
function to create a
MATLAB security policy entry.
.NET features not supported in MATLAB.
Limitations to Support of .NET Arrays
.NET features not supported in MATLAB.
Limitations to Support of .NET Methods
.NET features not supported in MATLAB.
Limitations to Support of .NET Events
.NET features not supported in MATLAB.
Limitations to Support of .NET Delegates
.NET features not supported in MATLAB.
Limitations to Support of .NET Enumerations
.NET features not supported in MATLAB.