ArgsTests.Data.Item.Item C# (CSharp) 메소드

Item() 공개 메소드

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