mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Removed flags from field search
This commit is contained in:
@@ -16,7 +16,7 @@ public static class BuiltIn
|
|||||||
await using var db = new ApplicationDbContext();
|
await using var db = new ApplicationDbContext();
|
||||||
logger.Info("Enumerating through fields in the Keys class");
|
logger.Info("Enumerating through fields in the Keys class");
|
||||||
var keysType = typeof(Keys);
|
var keysType = typeof(Keys);
|
||||||
var fields = keysType.GetFields(BindingFlags.Public | BindingFlags.Instance);
|
var fields = keysType.GetFields();
|
||||||
logger.Info($"Got {fields.Length} fields");
|
logger.Info($"Got {fields.Length} fields");
|
||||||
foreach (var field in fields)
|
foreach (var field in fields)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user