コード例 #1
0
        public override int GetHashCode()
        {
            var hashCode = 1253119681;

            hashCode = hashCode * -1521134295 + Type.GetHashCode();
            hashCode = hashCode * -1521134295 + DatePosted.GetHashCode();
            hashCode = hashCode * -1521134295 + TransactionAmount.GetHashCode();
            hashCode = hashCode * -1521134295 + EqualityComparer <string> .Default.GetHashCode(Memo);

            return(hashCode);
        }
コード例 #2
0
ファイル: Transaction.cs プロジェクト: kiranvr/GnuCashCSLib
 public override string ToString()
 {
     return(String.Format("{0} | {1} | {2} | {3}", TransactionAccounts.Item1.Name + "," + transactionAccounts.Item2.Name, transactionAccounts.Item1.Amount + "," + transactionAccounts.Item2.Amount, DatePosted.ToString(), Description));
 }
コード例 #3
0
ファイル: Tweet.cs プロジェクト: RodH257/RetrEave
 public override string ToString()
 {
     return("Tweet by " + Author.Name + " on " + DatePosted.ToShortDateString() + " content: " + Content);
 }
コード例 #4
0
ファイル: NewsEntry.cs プロジェクト: inrg/BNSharp-backup
 /// <summary>
 /// Gets a string representation of this news entry.
 /// </summary>
 /// <returns>A string of the date's long date string.</returns>
 public override string ToString()
 {
     return(string.Concat(DatePosted.ToShortDateString(), " ", DatePosted.ToShortTimeString()));
 }