Finished Defining Property Getters & Setters
parent
fc7844c6bc
commit
fe0727fb03
|
@ -10,17 +10,8 @@ namespace GradeBook
|
|||
private string name;
|
||||
public string Name
|
||||
{
|
||||
get
|
||||
{
|
||||
return name;
|
||||
}
|
||||
set
|
||||
{
|
||||
if (!String.IsNullOrEmpty(value))
|
||||
{
|
||||
name = value;
|
||||
}
|
||||
}
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public Book(string name)
|
||||
|
|
Loading…
Reference in New Issue