DotNext.Reflection by Roman Sakno

<PackageReference Include="DotNext.Reflection" Version="3.2.1" />

.NET API 162,816 bytes

 FieldBase<TValue>

Represents reflected field.
public bool IsReadOnly { get; }

Determines whether this field is read-only and cannot be modified.

public bool Equals(FieldInfo other)

Determines whether this field is equal to the given field.

public abstract bool GetValue(object obj, out TValue value)

Returns the value of a field supported by a given object.

public abstract bool SetValue(object obj, TValue value)

Sets the value of the field supported by the given object.