For instance, if you have something like
class SomeClass
{
public string SomeFieldName => nameof(SomeField);
public int SomeField = 3;
}
Will the nameof() call get replaced with the string nameof() would return? In this case, "SomeField".