コード例 #1
0
        public Component Create_Feed(string uri)
        {
            Feed f = new Feed(uri);

            Feed_Manager.Get_Instance().Add_Feed(f);
            return(f);
        }
コード例 #2
0
 public static Feed_Manager Get_Instance()
 {
     if (instance == null)
     {
         instance = new Feed_Manager();
     }
     return(instance);
 }