# CSJ2K.j2k.util.MsgLogger.println

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="CSJ2K_j2k_util_MsgLogger_println_" data-uid="CSJ2K.j2k.util.MsgLogger.println*">println Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="CSJ2K_j2k_util_MsgLogger_println_" data-uid="CSJ2K.j2k.util.MsgLogger.println*"></a>
<h4 id="CSJ2K_j2k_util_MsgLogger_println_System_String_System_Int32_System_Int32_" data-uid="CSJ2K.j2k.util.MsgLogger.println(System.String,System.Int32,System.Int32)">println(string, int, int)</h4>
<div class="markdown level1 summary"><p>Prints the string 'str' to the output device, appending a line
return. The message is reformatted as appropriate to the particular
diplaying device, where 'flind' and 'ind' are used as hints for
performing that operation. However, any newlines appearing in 'str' are
respected. The output device may not display the string until flush()
is called. Some implementations may automatically flush when this
method is called. This method just prints the string, the string does
not make part of a &quot;message&quot; in the sense that no severity is
associated to it.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">void println(string str, int flind, int ind)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Sub println(str As String, flind As Integer, ind As Integer)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">str</span></td>
      <td><p>The string to print</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">flind</span></td>
      <td><p>Indentation of the first line</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">ind</span></td>
      <td><p>Indentation of any other lines.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
