1
Answer

C# Obfuscation Attribute

Hello

I'm using the Obfuscation Attribute but dosen't work, this is What I'm doing, I think something is missing , but I don't know What .

This is an example of what I'm doing

using System.Reflection;

public class MyClass
{
    // Exclude this method from obfuscation
    [Obfuscation(Feature = "renaming", Exclude = true)]
    public void ProblematicMethod()
    {
        // Method implementation
    }
}

Answers (1)