コード例 #1
0
ファイル: VectorKey.cs プロジェクト: senwev/SmartPowerPoint
        /// <summary>
        /// Returns a <see cref="System.String"/> that represents this instance.
        /// </summary>
        /// <returns>
        /// A <see cref="System.String"/> that represents this instance.
        /// </returns>
        public override string ToString()
        {
            CultureInfo info = CultureInfo.CurrentCulture;

            return(String.Format(info, "{{Time:{0} Vector:{1}}}",
                                 new Object[] { Time.ToString(info), Value.ToString() }));
        }
コード例 #2
0
        /// <summary>
        /// Returns a <see cref="System.String"/> that represents this instance.
        /// </summary>
        /// <returns>
        /// A <see cref="System.String"/> that represents this instance.
        /// </returns>
        public override string ToString()
        {
            CultureInfo info = CultureInfo.CurrentCulture;

            return(String.Format(info, "{{Min:{0} Max:{1}}",
                                 new Object[] { Min.ToString(), Max.ToString() }));
        }