For example, if I start with an instance of an IXLTableRow object, can I easily find out if it contains a field of a given name, something like this:
tableRow.Fields.Any(f => f.Name == name);
Or even a shortcut?tableRow.HasField(name);