Private member is used by reflection
IDE0051 - Remove unused member
using DefaultEcs;
namespace DummyNamespace
{
class DummyClass
{
[Subscribe]
void DummyMethod(in bool _)
{ }
}
}
The IDE does not detect that the method will be used by reflection and under normal circumstances, it would be reasonable to remove the unused method.
The IDE doesn't realize this method will be subscribed to by reflection.