C
c676228
Hi all,
I usually can see property codes like this way:
public int? CustomerID
{
get { return (int?)this["customerID"]; }
set { this["customerID"] = value; }
}
What about the following?
if it is only get; presents there, what does that mean?
public List<string> Errors { get; }
public Control Form { get; }
public int? PrimaryKey { get; }
I usually can see property codes like this way:
public int? CustomerID
{
get { return (int?)this["customerID"]; }
set { this["customerID"] = value; }
}
What about the following?
if it is only get; presents there, what does that mean?
public List<string> Errors { get; }
public Control Form { get; }
public int? PrimaryKey { get; }