Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

windows forms link listbox to array

public class MyClass
{
    public int Id { get; set; }
    public string Text { get; set; }
    public MyClass(int id, string text)
    {
        this.Id = id;
        this.Text = text;
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #windows #forms #link #listbox #array
ADD COMMENT
Topic
Name
8+6 =