Goal: the goal is to organize this more complex c# class file in the order i want it to.
I am calling to organize members and it is organizing in a different than expected way. I have attached my settings using the class below as an example, and i think i have something configured wrong or its broken.
Starting example:
C#using System;
using System.IO;
namespace mine;
public class yoi
{
private long _nice;
public long Nice
{
get => _nice;
set => _nice = value;
}
[Obsolete]
public int Best { get; set; }
public yoi() { Console.WriteLine("hi");}
public void MyMethod() { Console.WriteLine("Bye"); }
[Obsolete]
private string Me { get; set; }
internal delegate string SecretDell(string me);
protected StringReader _myReader = new("cool");
}
What happened after organization:
C#using System;
using System.IO;
namespace mine;
public class yoi
{
private long _nice;
[Obsolete]
private string Me { get; set; }
protected StringReader _myReader = new("cool");
internal delegate string SecretDell(string me);
public yoi() { Console.WriteLine("hi"); }
public void MyMethod() { Console.WriteLine("Bye"); }
public long Nice { get => _nice; set => _nice = value; }
[Obsolete]
public int Best { get; set; }
}
expected result:
C#using System;
using System.IO;
namespace mine;
public class yoi
{
protected StringReader _myReader = new("cool");
private long _nice;
internal delegate string SecretDell(string me);
public yoi() { Console.WriteLine("hi"); }
public void MyMethod() { Console.WriteLine("Bye"); }
[Obsolete]
public int Best { get; set; }
[Obsolete]
private string Me { get; set; }
public long Nice
{
get => _nice;
set => _nice = value;
}
}
Any help is appreciated