Open thaindq opened 7 years ago
Not all methods are fluent due to the generic in Java not translating into c#. The addprofiles from memory is one of those so if you call them by themselves should be fine.
Do you mean to call them like this? If so, I still got those errors.
var headerResult = new AccountHeaderBuilder();
headerResult.WithActivity(this);
headerResult.AddProfiles(profile);
headerResult.Build();
Have the same error. Installing last version of FastAdapter fixes
Hi, I'm trying to create an AccountHeader and get these errors
If I remove
.AddProfiles(profile)
they go away.