Hi,
I’ve a proble using a class …
public class Vehicle
{
private int clientIdField;
public int clientId
{
get
{
return this.clientIdField;
}
set
{
this.clientIdField = value;
}
}
In main I try this :
Vehicle fre = new Vehicle[10];
it’s ok But with :
fre[0].clientId = 1;
I’va an error … about no object instant existing…
An idea ?
Really thaks !