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
Serializing/deserializing a list of 1000 small pocos defined as follows
publicsealedclassImmutablePoco{publicImmutablePoco(strings,inti,Guidg,DateTimed){StringProp=s;IntProp=i;GuidProp=g;DateProp=d;}publicreadonlystringStringProp;//using the text "hello"publicreadonlyintIntProp;//123publicreadonlyGuidGuidProp;//Guid.NewGuid()publicreadonlyDateTimeDateProp;//DateTime.Now}publicclassPoco{publicstringStringProp{get;set;}//using the text "hello"publicintIntProp{get;set;}//123publicGuidGuidProp{get;set;}//Guid.NewGuid()publicDateTimeDateProp{get;set;}//DateTime.Now}