-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Serializer for Custom Array not generated... #31
Comments
Ok, it was my fault that the serializer was not created. It works now, but it would be nice if I can access those properties so a class like this is possible: class ArraySerializer : IStaticTypeSerializer
|
Sorry, I don't follow. What's the purpose of this class? What properties you need to access? |
i will create a pull req |
You see it here: #36 |
I've a class with a Array:
class LcInformationResponse {
public LcInformations[] Infos {get;set;}
}
for this class, no correct serializer/deserializer is build!
I could do my own serializer for it, but then i have to use GetTypeIdAndSerializer, and also the 2 delegates have to be public!
The text was updated successfully, but these errors were encountered: