Inheritance: XInline
コード例 #1
0
ファイル: XBold.cs プロジェクト: JakeGinnivan/XText
 protected bool Equals(XBold other)
 {
     return
         base.Equals(other) &&
         Equals(textBinding != null ? textBinding.Path : null, other.textBinding != null ? other.textBinding.Path : null);
 }
コード例 #2
0
 protected bool Equals(XBold other)
 {
     return
         (base.Equals(other) &&
          Equals(textBinding != null ? textBinding.Path : null, other.textBinding != null ? other.textBinding.Path : null));
 }