コード例 #1
0
ファイル: TaggedQuote.cs プロジェクト: mingslogar/dimension4
 /// <summary>
 /// Initializes a new TaggedQuote instance.
 /// </summary>
 /// <param name="page">The quote page that contains the original quote.</param>
 /// <param name="quote">The original quote.</param>
 internal TaggedQuote(QuotePage page, Quote quote)
     : base(quote.Text, quote.AdditionalInformation)
 {
     _topic   = page.Topic;
     _uri     = page.Uri;
     _culture = page.Culture;
 }
コード例 #2
0
 public bool Equals(QuotePage other)
 {
     return(other != null && Uri == other.Uri);
 }