This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.IO; | |
namespace ServiceStack.Configuration | |
{ | |
public class OptionalTextFileSettings : ISettings, IAppSettings | |
{ | |
private readonly DictionarySettings _settings; | |
public OptionalTextFileSettings(string filePath, string delimiter = " ") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
email,email | |
user_login,user_email |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using MonoMac.Foundation; | |
using MonoMac.AppKit; | |
namespace StatusMenu | |
{ | |
[Register("AppController")] | |
public partial class AppController : NSObject | |
{ | |
public AppController() |