NET.createDictionary
Description
Examples
Convert MATLAB Dictionary to .NET Dictionary
Create a MATLAB dictionary with two numeric entries. Convert the dictionary to use in .NET functions.
mlDict = dictionary("entry 1",3.14,"entry 2",42); netDict = NET.createDictionary(mlDict)
netDict = Dictionary<System*String,System*Double> with properties: Comparer: [1×1 System.Collections.Generic.GenericEqualityComparer<System*String>] Count: 2 Keys: [1×1 System.Collections.Generic.Dictionary*KeyCollection<System*String,System*Double>] Values: [1×1 System.Collections.Generic.Dictionary*ValueCollection<System*String,System*Double>]
Input Arguments
mlDict
— Configured MATLAB dictionary
dictionary
Configured MATLAB dictionary, specified as a dictionary
.
Example: "entry 1",3.14,"entry 2",42
Output Arguments
netDict
— .NET dictionary
System.Collections.Generic.Dictionary
.NET dictionary, returned as an instance of
System.Collections.Generic.Dictionary<TKey, TValue>
with
equivalent entries as mlDict
. The generic parameters are the .NET
types that most closely match the types of keys and values in the MATLAB dictionary. For information about type conversions, see Pass Data to .NET Objects.
Version History
Introduced in R2023aR2023a_plus: MATLAB dictionary with cell types map to .NET System.Object
instead of System.Object[]
A MATLAB dictionary with entries of type cell
are converted to a
.NET dictionary with entries of type System.Object
. Previously, the
conversion was to System.Object[]
. For more information, see Pass MATLAB Dictionary Data and How MATLAB Handles .NET Dictionary Objects.
See Also
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)