コード例 #1
0
ファイル: Post.cs プロジェクト: harder/GraffitiCMS
        public static Post FromXML(string xml)
        {
            Post the_Post = ObjectManager.ConvertToObject <Post>(xml);

            the_Post.Loaded();
            the_Post.ResetStatus();

            return(the_Post);
        }