System.CodeDom.Compiler.IndentedTextWriter.Write C# (CSharp) Method

Write() public method

public Write ( bool value ) : void
value bool
return void
        public override void Write(bool value) {
            OutputTabs();
            writer.Write(value);
        }

Same methods

IndentedTextWriter::Write ( char value ) : void
IndentedTextWriter::Write ( char buffer, int index, int count ) : void
IndentedTextWriter::Write ( double value ) : void
IndentedTextWriter::Write ( float value ) : void
IndentedTextWriter::Write ( int value ) : void
IndentedTextWriter::Write ( long value ) : void
IndentedTextWriter::Write ( object value ) : void
IndentedTextWriter::Write ( string s ) : void
IndentedTextWriter::Write ( string format, object arg0 ) : void
IndentedTextWriter::Write ( string format, object arg0, object arg1 ) : void

Usage Example

コード例 #1
0
ファイル: RttiPointerGen.cs プロジェクト: SperoSophia/il2bc
 /// <summary>
 /// </summary>
 /// <param name="type">
 /// </param>
 /// <param name="writer">
 /// </param>
 public static void WriteRttiPointerClassInfo(this IType type, IndentedTextWriter writer)
 {
     writer.Write("@\"{0}\" = linkonce_odr unnamed_addr constant ", type.GetRttiPointerInfoName());
     type.WriteRttiPointerClassInfoDeclaration(writer);
     writer.Write(' ');
     type.WriteRttiPointerClassInfoDefinition(writer);
 }
All Usage Examples Of System.CodeDom.Compiler.IndentedTextWriter::Write