Tidy.Core.Out.Outc C# (CSharp) Méthode

Outc() public abstract méthode

public abstract Outc ( int c ) : void
c int
Résultat void
        public abstract void Outc(int c);

Same methods

Out::Outc ( sbyte c ) : void

Usage Example

Exemple #1
0
        public virtual void FlushLine(Out fout, int indent)
        {
            if (_linelen > 0)
            {
                if (indent + _linelen >= _options.WrapLen)
                {
                    WrapLine(fout, indent);
                }

                int i;
                if (!_inAttVal || _options.IndentAttributes)
                {
                    for (i = 0; i < indent; ++i)
                    {
                        fout.Outc(' ');
                    }
                }

                for (i = 0; i < _linelen; ++i)
                {
                    fout.Outc(_linebuf[i]);
                }
            }

            fout.Newline();
            _linelen = 0;
            _wraphere = 0;
            _inAttVal = false;
        }
All Usage Examples Of Tidy.Core.Out::Outc