{"id":3459,"date":"2020-02-19T13:32:31","date_gmt":"2020-02-19T12:32:31","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=3459"},"modified":"2022-07-25T08:33:23","modified_gmt":"2022-07-25T07:33:23","slug":"c-copy-objects","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/c-copy-objects\/","title":{"rendered":"C# Copy Objects"},"content":{"rendered":"\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">public class Person\n{\n\tpublic int Age;\n\tpublic DateTime BirthDate;\n\tpublic string Name;\n\tpublic ExtraInfo ExtraInfo;\n\n\tpublic Person ShallowCopy()\n\t{\n\t\treturn (Person) this.MemberwiseClone();\n\t}\n\n\tpublic Person DeepCopy()\n\t{\n\t\tPerson clone = (Person) this.MemberwiseClone();\n\t\tclone.ExtraInfo = new ExtraInfo(ExtraInfo.IdNumber);\n\t\tclone.Name = String.Copy(Name);\n\t\treturn clone;\n\t}\n}\n\npublic class ExtraInfo\n{\n\tpublic int IdNumber;\n\tpublic ExtraInfo(int idNumber)\n\t{\n\t\tthis.IdNumber = idNumber;\n\t}\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[6,4,1],"tags":[],"class_list":["post-3459","post","type-post","status-publish","format-standard","hentry","category-dotnet","category-programming","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/3459","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/comments?post=3459"}],"version-history":[{"count":1,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/3459\/revisions"}],"predecessor-version":[{"id":3460,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/3459\/revisions\/3460"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=3459"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=3459"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=3459"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}