Пример #1
0
        /// <summary>
        /// Word_FromAbbreviation the specified object properties to printable string.
        /// </summary>
        /// <param name="classObject">The element.</param>
        /// <param name="indentSize">Size of the indent.</param>
        /// <param name="maxLength">The maximum length.</param>
        /// <param name="maxItemCount">The maximum item count2.</param>
        /// <returns>System.String.</returns>
        public static string AsString(object classObject, int indentSize = 2, int maxLength = 1000, int maxItemCount = 20)
        {
            var instance = new Class_AsString(indentSize, maxLength, maxItemCount);

            return(instance.DumpElement(classObject));
        }
Пример #2
0
 /// <summary>
 /// Word_FromAbbreviation the specified object properties to printable string.
 /// </summary>
 /// <param name="classObject">The element.</param>
 /// <param name="indentSize">Size of the indent.</param>
 /// <param name="maxLength">The maximum length.</param>
 /// <param name="maxItemCount">The maximum item count2.</param>
 /// <returns>System.String.</returns>
 public static string AsString(object classObject, int indentSize = 2, int maxLength = 1000, int maxItemCount = 20)
 {
     return(Class_AsString.AsString(classObject, indentSize, maxLength, maxItemCount));
 }