I first referenced this question to get started, but reached a roadblock when trying to return a Class or Array of a Class using a .NET Assembly in Delphi XE.
Consider the following:
//C#
[ComVisible(true)]
public class Person {
public int Id;
public string Name;
}
public class SomeClass
{
public SomeClass() {}
public Person[] GetPersons()
{
//some code
}
}
//Delphi
type TPerson = class
Id : Integer;
Name : string;
end;
How do I make sense of the data that is returned from GetPersons() which I can assign to an array of TPerson in Delphi?