Uploaded image for project: 'C# Driver'
  1. C# Driver
  2. CSHARP-3531

Init properties sometimes are not serialized (not consistent with readonly properties)

    • Type: Icon: Bug Bug
    • Resolution: Duplicate
    • Priority: Icon: Major - P3 Major - P3
    • None
    • Affects Version/s: None
    • Component/s: Serialization
    • Labels:
      None

       

      public class B
       {
        public int[] Data { get; private set; }
        public B(int[] data2)
        {
          Data = data2.ToArray();
        }
      }
      

       

      public class A
       {
        public int[] Data { get; }
        public A(int[] data2)
        {
          Data = data2.ToArray();
        }
      }
      
      B b = new B(new[] { 1, 20 });
      A a = new A(new[] { 1, 20 });

      Class B.ToJson results in "{ \"Data\" : [1, 20] }"
      Class A.ToJson results in "{ }"

            Assignee:
            james.kovacs@mongodb.com James Kovacs
            Reporter:
            boris.dogadov@mongodb.com Boris Dogadov
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: