public string LoadAddress()
 {
     if (this._indexVariableName != null)
     {
         throw new NotSupportedException();
     }
     if (this._field != null)
     {
         return($"{this._objectVariableName}.{Naming.ForFieldAddressGetter(this._field)}()");
     }
     return(Naming.AddressOf(this._objectVariableName));
 }