# Kernel - NKS0043

This analyzer provides the following strings:

<table><thead><tr><th width="174">Context</th><th>String</th></tr></thead><tbody><tr><td>Error List</td><td>Caller uses <code>Environment.GetEnvironmentVariable("TERM")</code> instead of <code>KernelPlatform.GetTerminalType()</code></td></tr><tr><td>Suggestion Box</td><td>Use <code>KernelPlatform.GetTerminalType()</code> instead of <code>Environment.GetEnvironmentVariable("TERM")</code></td></tr><tr><td>Description</td><td><code>KernelPlatform.GetTerminalType()</code> is more readable and less verbose than <code>Environment.GetEnvironmentVariable("TERM")</code>.</td></tr></tbody></table>

### Extended Description

This code analyzer detects the usage of `GetEnvironmentVariable("TERM")` from the `Environment` class found in the `System` namespace.

`GetEnvironmentVariable` is a method to determine the terminal emulator and the terminal type. It's also a method to determine whether it's running on GNU Screen or on Tmux. However, we needed to increase the readability.

As a result, `KernelPlatform` implements a handful of terminal detection functions to simplify the complicated terminal checking statements to its simpler equivalent.

### Analysis Comparison

To get a brief insight about how this analyzer works, compare the two code blocks shown to you below:

#### Before the fix

<pre class="language-csharp" data-title="Somewhere in your mod code..." data-line-numbers><code class="lang-csharp">public static void MyFunction()
{
<strong>    var value = Environment.GetEnvironmentVariable("TERM");
</strong>}
</code></pre>

#### After the fix

<pre class="language-csharp" data-title="Somewhere in your mod code..." data-line-numbers><code class="lang-csharp">public static void MyFunction()
{
<strong>    var value = KernelPlatform.GetTerminalType();
</strong>}
</code></pre>

### Suppression

You can suppress this suggestion by including it in the appropriate place, whichever is convenient.

For more information about how to suppress any warning issued by the Nitrocid analyzer, visit the below page:

{% embed url="<https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/suppress-warnings>" %}

### Recommendation

We recommend that every caller which use this function use the recommended abovementioned method.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://aptivi.gitbook.io/deprecated/nitrocid-ks-v0.1.0-beta-3-manual/advanced-and-power-users/kernel-modifications/analyzer-diagnostics/kernel-nks0043.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
