ToString() public méthode

public ToString ( ) : string
Résultat string
Exemple #1
0
        public CLS_Content.Value ComputeValue(CLS_Content content)
        {
            content.InStack(this);
            CLS_Content.Value v   = listParam[0].ComputeValue(content);
            Exception         err = v.value as Exception;

            if (err != null)
            {
                throw err;
            }
            else
            {
                throw new Exception(v.ToString());
            }
        }