System.Xml.XmlTextEncoder.WriteCharEntityImpl C# (CSharp) Méthode

WriteCharEntityImpl() private méthode

private WriteCharEntityImpl ( string strVal ) : void
strVal string
Résultat void
        private void WriteCharEntityImpl( string strVal ) {
            textWriter.Write( "&#x" );
            textWriter.Write( strVal );
            textWriter.Write( ';' );
        }

Same methods

XmlTextEncoder::WriteCharEntityImpl ( char ch ) : void