ArgsTests.Data.Item.Item C# (CSharp) Method

Item() public method

public Item ( int id, string value ) : System
id int
value string
return System
        public Item(int id, string value)
        {
            this.Id = id;
            this.Value = value;
        }