Pass parameters to .NET Constructor

1 次查看(过去 30 天)
Consider a .NET Assembly Assembly with a class Person with some set of properties like Age, FirstName, LastName, Address, and a constructor P = new Person().
In C# it is possible to predefine some fields right on contruction stage by using curly braces
C#:
var x = new Assembly.Person {FirstName="Homer",LastName="Simpson",Age=47};
Equal code would look in MATLAB like
MATLAB:
x = Assembly.Person();
x.FirstName = "Homer";
x.LastName = "Simpson";
x.Age = 47;
--> Is there a better, more compact way to construct such object in Matlab?

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Getting Started with Microsoft .NET 的更多信息

产品


版本

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by