Simple question and probably simple answer, but I’ve tried a lot of things.
How can I insert a white space between the 2 values ?
I have tried quotation mark, double quotation mark, removing the “;”,  , etc
@if(@providerData.CompanyName != null){
@providerData.CompanyName;WHITESPACE;@providerData.CompanyType;
}
You may use
Html.Rawmethod to put a white space thereAlternatively you can use
@:instead ofHtml.Raw