Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PublicParametizedConstructorWithPropertyNameConflict.cs « TestObjects « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 76d0c527d8c7a164c99e2d297770d5bc75b9b0c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;

namespace Newtonsoft.Json.Tests.TestObjects
{
  public class PublicParametizedConstructorWithPropertyNameConflict
  {
    private readonly int _value;

    public PublicParametizedConstructorWithPropertyNameConflict(string name)
    {
      _value = Convert.ToInt32(name);
    }

    public int Name
    {
      get { return _value; }
    }
  }

  public class PublicParametizedConstructorWithPropertyNameConflictWithAttribute
  {
    private readonly int _value;

    public PublicParametizedConstructorWithPropertyNameConflictWithAttribute([JsonProperty("name")]string nameParameter)
    {
      _value = Convert.ToInt32(nameParameter);
    }

    public int Name
    {
      get { return _value; }
    }
  }
}