# Locals to Fields

This protection will convert all locals to fields and name them randomly with names from the .NET Library to fool with reverse engineers.

{% code title="Before Obfuscation" %}

```csharp
[EditorBrowsable(EditorBrowsableState.Advanced)]
		internal static ResourceManager ResourceManager
		{
			get
			{
				bool flag = Resources.resourceMan == null;
				if (flag)
				{
					ResourceManager resourceManager = new ResourceManager("Trinity.Properties.Resources", typeof(Resources).Assembly);
					Resources.resourceMan = resourceManager;
				}
				return Resources.resourceMan;
			}
		}
```

{% endcode %}

{% code title="After Obfuscation" %}

```csharp
[EditorBrowsable(EditorBrowsableState.Advanced)]
		internal static ResourceManager ResourceManager
		{
			get
			{
				<Module>.DocComment = (Resources.resourceMan == null);
				if (<Module>.DocComment)
				{
					<Module>.SqlRowsCopiedEventArgs = new ResourceManager("Trinity.Properties.Resources", typeof(Resources).Assembly);
					Resources.resourceMan = <Module>.SqlRowsCopiedEventArgs;
				}
				<Module>.DefineField = Resources.resourceMan;
				return <Module>.DefineField;
			}
		}
```

{% endcode %}


---

# 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://trinity.gitbook.io/obfuscator/protections/name-protections/locals-to-fields.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.
