Guest User

Untitled

a guest
Apr 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ```csharp
  2. public static List<string> LoadSettingValues(this Transfer.ExportSetting settings)
  3. {
  4. return settings?.Value?.Split(',').ToList() ?? null;
  5. }
  6. ```
  7.  
  8. Example
  9.  
  10. ```csharp
  11. List<string> locationCodes = _requiredSettings[LOCATIONS_TO_INCLUDE].LoadSettingValues();
  12. ```
Add Comment
Please, Sign In to add comment