public Component Create_Feed(string uri) { Feed f = new Feed(uri); Feed_Manager.Get_Instance().Add_Feed(f); return(f); }
public static Feed_Manager Get_Instance() { if (instance == null) { instance = new Feed_Manager(); } return(instance); }