// Get_Instance() returns the singleton instance public static Update_Manager Get_Instance() { if (instance == null) { instance = new Update_Manager(); } return(instance); }
private Feed_Manager() { feeds = new HashSet <Feed>(); Update_Manager.Get_Instance().Update_Tasks += Update_Feeds; }