[Modify] Replace it
This commit is contained in:
parent
ac5bcba7a1
commit
6f4a9c7f52
@ -12,13 +12,18 @@ namespace Example3
|
|||||||
private string _prefix;
|
private string _prefix;
|
||||||
|
|
||||||
public Chat ()
|
public Chat ()
|
||||||
: this (null)
|
|
||||||
{
|
{
|
||||||
|
_prefix = "anon#";
|
||||||
}
|
}
|
||||||
|
|
||||||
public Chat (string prefix)
|
public string Prefix {
|
||||||
{
|
get {
|
||||||
_prefix = !prefix.IsNullOrEmpty () ? prefix : "anon#";
|
return _prefix;
|
||||||
|
}
|
||||||
|
|
||||||
|
set {
|
||||||
|
_prefix = !value.IsNullOrEmpty () ? value : "anon#";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private string getName ()
|
private string getName ()
|
||||||
|
Loading…
Reference in New Issue
Block a user