You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, ist it possible to fix this problem:
the dictionary serialization failes when the object is a string[]. "Dynamic type is not a contract-type: String[]"
[SerializableType]
public class AttributesSample
{
private int fMyProperty1;
[NonSerializableMember]
public int MyProperty1 { get => fMyProperty1; set => fMyProperty1 = value; }
public int MyProperty2 { get; set; }
public string[] MyProperty3 { get; set; }
private Dictionary<string, object> fProcessObjectDictionary;
public Dictionary<string, object> ProcessObjectDictionary
{
get
{
if (fProcessObjectDictionary == null)
{
fProcessObjectDictionary = new Dictionary<string, object>();
}
return fProcessObjectDictionary;
}
set { fProcessObjectDictionary = value; }
}
}
The text was updated successfully, but these errors were encountered:
Hi, ist it possible to fix this problem:
the dictionary serialization failes when the object is a string[].
"Dynamic type is not a contract-type: String[]"
[SerializableType]
public class AttributesSample
{
private int fMyProperty1;
[NonSerializableMember]
public int MyProperty1 { get => fMyProperty1; set => fMyProperty1 = value; }
}
The text was updated successfully, but these errors were encountered: