public string Source
{
get
{
/*
if ( Source == null ){
return string . Empty;
} else {
return Source;
}
*/
return Source ?? string.Empty;
}
set
{
/*
if ( Source == null ) {
Source = string . Empty;
} else {
if ( Source == value ) {
Source = Source;
} else {
Source = value;
}
}
*/
Source == value ? Source : value ?? string.Empty;
RaisePropertyChanged ( "Source" );
}
}
ฉันสามารถใช้?:
??
โอเปอเรเตอร์ตรงตามเงื่อนไขหรืออื่น ๆ ได้หรือไม่
คำถามของฉัน:
เขียนต่อไปนี้ด้วย?: ?? ผู้ประกอบการ
[1]
if ( Source == null ){
// Return Nothing
} else {
return Source;
}
[2]
if ( Source == value ){
// Do Nothing
} else {
Source = value;
RaisePropertyChanged ( "Source" );
}
สั้น ๆ : จะทำอย่างไรไม่ส่งคืนอะไรเลยและทำหลาย ๆ คำสั่งกับ?:
??
operator?