Append() private méthode

private Append ( [ value, [ resolver = null ) : FormatChunk
value [
resolver [
Résultat FormatChunk
Exemple #1
0
        public static IEnumerable <FormatChunk> Parse([NotNull] string value, [CanBeNull] IResolvable resolver = null)
        {
            if (value == null)
            {
                throw new ArgumentNullException("value");
            }

            FormatChunk fc = new FormatChunk();

            fc.Append(
                value,
                resolver);
            return(fc.Children);
        }
        public static IEnumerable<FormatChunk> Parse([NotNull] string value, [CanBeNull] IResolvable resolver = null)
        {
            if (value == null) throw new ArgumentNullException("value");

            FormatChunk fc = new FormatChunk();
            fc.Append(
                value,
                resolver);
            return fc.Children;
        }