C#C
C#3y ago
FroH.LVT

✅ XML Serialization

I want to customize XML serialization.
This is sample class
public class Sample{
   public List<TestCategory> TestList {get;set;}
}

public class TestCategory{
   public string Value {get;set;} = "Random string";
}
Was this page helpful?