.NET对象上不允许数组形成和索引

时间:2018-03-21 08:13:56

标签: c# .net matlab

我在Matlab中有一个.NET字典,我想这样做:

disp([moduleConfiguration.Parameters.Item('One'), ':', moduleConfiguration.Parameters.Item('Two')]);

但我收到此错误消息:

Array formation and indexing are not allowed on .NET objects.

我的想法已经用完了,因为这个想法正在发挥作用:

disp(['One', ':', 'Two']);

希望有人能帮助我!

谢谢!

1 个答案:

答案 0 :(得分:0)

您只需将其转换为角色即可!感谢@nekomatic

disp([char(moduleConfiguration.Parameters.Item('One')), ':', char(moduleConfiguration.Parameters.Item('Two'))]);