The following code is giving me a warning but I don't understand why.
client.Host = Settings.Host;
warning CS8601: Possible null reference assignment.
Both client and Settings are not null here. And both client.Host and Settings.Host are of type string?.
Therefore, while it could be a possible null reference assignment, it shouldn't matter because the target variable allows null.

