Skip to content

Instantly share code, notes, and snippets.

# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@ztsmith
ztsmith / Config.cs
Last active August 29, 2015 13:57
Castle Windsor XML Config Array Parameters not populating when registering dependencies as conventions
public interface IConfig
{
string Name { get; set; }
Server[] Servers { get; set; }
}
public class Config : IConfig
{
public string Name { get; set; }
public Server[] Servers { get; set; }