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 Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
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)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)