이 번역 페이지는 최신 내용을 담고 있지 않습니다. 최신 내용을 영문으로 보려면 여기를 클릭하십시오.
MATLAB의 .NET 메서드
다음 항목에서는 .NET 메서드 호출과 관련된 정보를 설명합니다. MATLAB에서 객체에 대한 메서드를 호출하는 방법에 대한 일반적인 정보는 메서드 구문 항목을 참조하십시오.
도움말 항목
- Calling .NET Methods
Use the following MATLAB functions to view the methods of a class.
- Work with .NET Methods Having Multiple Signatures
This example shows how to call a method that has multiple signatures.
- Call .NET Methods With out Keyword
This example shows how to call methods that use an
out
keyword in the argument list. - Call .NET Methods With ref Keyword
This example shows how to call methods that use a
ref
keyword in the argument list. - Call .NET Methods With params Keyword
This example shows how to call methods that use a
params
keyword in the argument list. - Call .NET Methods with Optional Arguments
This example shows how to use default values in optional arguments using the
Greeting
method. - Call .NET Properties That Take an Argument
MATLAB represents a property that takes an argument as a method.
- Calling .NET Methods with Optional Arguments
MATLAB displays optional arguments in a method signature using the
optional<T>
syntax, whereT
is the specific type. - Calling .NET Extension Methods
Unlike C# applications, MATLAB handles an extension method as a static method of the class that defines the method.
- How MATLAB Represents .NET Operators
MATLAB supports overloaded operators, such as the C# operator symbols
+
and*
, as shown in this table. - Limitations to Support of .NET Methods
.NET features not supported in MATLAB.