dump as c# class initialisation
A new dump method that could dump as a C# class initialisation, eg
new Foo() {
MyProp = 27,
MyString = "a string"
},
new Foo() {
MyProp = 39,
MyString = "another string"
}
etc
1
vote