InfoMsg() public static method

Display a short big message.
public static InfoMsg ( string msg ) : void
msg string
return void
Ejemplo n.º 1
0
        /// <summary>
        /// Determine and set the last sequence
        /// number after updating database.
        /// </summary>
        static public int SetLastSequence()
        {
            LastSequence = new RoomEditorDb()
                           .LastSequenceNumber;

            Util.InfoMsg(string.Format(
                             "Last sequence number set to {0}."
                             + "\nChanges from now on will be applied.",
                             LastSequence));

            return(LastSequence);
        }