public static string WhatIsMyComment(this Phase phase)
        {
            string comment = "";

            if (phase.GetUserProperty("PHASE_COM", ref comment))
            {
                return(comment);
            }
            else
            {
                comment = phase.PhaseComment;
                return(comment);
            }
        }