Пример #1
0
 /// <summary>
 /// Instantiates an ActionRow by copying data from another ActionRow.
 /// </summary>
 /// <param name="source">The row the data is copied from.</param>
 /// <remarks>The previous and next action collections are not copied.</remarks>
 private WixActionRow(WixActionRow source)
     : base(source)
 {
 }
Пример #2
0
        /// <summary>
        /// Compares the current instance with another object of the same type.
        /// </summary>
        /// <param name="obj">Other reference to compare this one to.</param>
        /// <returns>Returns less than 0 for less than, 0 for equals, and greater than 0 for greater.</returns>
        public int CompareTo(object obj)
        {
            WixActionRow otherActionRow = (WixActionRow)obj;

            return(this.Sequence.CompareTo(otherActionRow.Sequence));
        }