Horje
initialization of dictionary in other forms c# Code Example
initialization of dictionary in other forms c#
//above public form2 we need to put        
        Dictionary<int, Car<string, string, string>> car;



public Form2(Dictionary<int, Car<string, string, string>> car) // for examle using dictionary and class form form 1 in form 2
        {
            InitializeComponent();
            this.car = car; 
        }
//in form 1 we need to add this for it to work
            Form2 form = new Form2(car);
//by iq18but18cm




Csharp

Related
php encrypt message encrypt() decrypt Code Example php encrypt message encrypt() decrypt Code Example
mac osx enable hidpi terminal Code Example mac osx enable hidpi terminal Code Example
how to make a console feedback Code Example how to make a console feedback Code Example
c# httpclient post no content Code Example c# httpclient post no content Code Example
properties in c# Code Example properties in c# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8