Example #1
0
        public string GetComment(string name)
        {
            string comment = "Some comment";

            if (ActionContainer != null)
            {
                comment = ActionContainer.GetComment(name);
            }
            return(comment);
        }