Hi All,
i have written the below method inside a c# class library , i have build it successfully and added it to AOT ,
i'm able to access the class and method in X++ , but not able to loop through the string array which is returned by the dotnet code.
can some one help me with some code snippet
public string[] customersinfo()
{
string city, firstname, lastname, custid;
string[] details = new string[4];
firstname = "";
lastname = "";
city = "";
custid = "";
details[0] = firstname;
details[1] = lastname;
details[2] = city;
details[3] = custid;
return details;
}
*This post is locked for comments
I have the same question (0)