ToString() public méthode

Formats the relative path as a string.
Formats the relative path as a string.
public ToString ( ) : string
Résultat string
Exemple #1
0
        /// <summary>
        /// Formats the relative path as a string.
        /// </summary>
        public string Format(ITypeTable typeTree)
        {
            RelativePathFormatter formatter = new RelativePathFormatter(this, typeTree);

            return(formatter.ToString());
        }
 /// <summary>
 /// Formats the relative path as a string.
 /// </summary>
 public string Format(ITypeTable typeTree)
 {
     RelativePathFormatter formatter = new RelativePathFormatter(this, typeTree);
     return formatter.ToString();
 }