{"id":27422,"date":"2024-10-27T14:11:31","date_gmt":"2024-10-27T14:11:31","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=27422"},"modified":"2024-11-26T07:18:32","modified_gmt":"2024-11-26T07:18:32","slug":"c-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c-%ea%b8%b0%ed%95%98-%ec%95%8c%ec%95%84%eb%b3%b4%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/27422\/","title":{"rendered":"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30"},"content":{"rendered":"<p><body><\/p>\n<p>\uae30\ud558\ud559(geometry)\uc740 \ucef4\ud4e8\ud130 \uacfc\ud559\uc758 \uc5ec\ub7ec \ubd84\uc57c\uc5d0\uc11c \ub2e4\uc591\ud55c \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c\ub97c \ub9cc\ub4e4\uc5b4\ub0c5\ub2c8\ub2e4. \ud2b9\ud788 \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c\ub294 \uae30\ud558\ud559\uc801 \ubb38\uc81c\ub4e4\uc774 \uc790\uc8fc \ucd9c\uc81c\ub418\uba70, \uc774\ub4e4\uc740 \uc885\uc885 \uc810, \uc120, \ub2e4\uac01\ud615 \ub4f1\uc744 \ub2e4\ub8e8\ub294 \uacbd\uc6b0\uac00 \ub9ce\uc2b5\ub2c8\ub2e4.<\/p>\n<h2>\ubb38\uc81c: \ub450 \uc810 \uc0ac\uc774\uc758 \uac70\ub9ac \uad6c\ud558\uae30<\/h2>\n<p>\uc0c1\ub2e8\uc5d0\uc11c \ub450 \uc810 <code>A(x1, y1)<\/code>\uc640 <code>B(x2, y2)<\/code>\uac00 \uc8fc\uc5b4\uc9c8 \ub54c, \uc774 \ub450 \uc810 \uc0ac\uc774\uc758 \uc720\ud074\ub9ac\ub4dc \uac70\ub9ac\ub97c \uad6c\ud558\ub294 \ud504\ub85c\uadf8\ub7a8\uc744 \uc791\uc131\ud574\uc8fc\uc138\uc694.<\/p>\n<h3>\ubb38\uc81c \uc815\ub9ac<\/h3>\n<ul>\n<li><strong>\uc785\ub825<\/strong>: \ub450 \uc810\uc758 \uc88c\ud45c <code>(x1, y1)<\/code>\uc640 <code>(x2, y2)<\/code><\/li>\n<li><strong>\ucd9c\ub825<\/strong>: \ub450 \uc810 \uc0ac\uc774\uc758 \uac70\ub9ac<\/li>\n<\/ul>\n<h3>\uac70\ub9ac \uacf5\uc2dd<\/h3>\n<p>\uc720\ud074\ub9ac\ub4dc \uac70\ub9ac\ub294 \ub2e4\uc74c\uacfc \uac19\uc740 \uacf5\uc2dd\uc744 \uc0ac\uc6a9\ud558\uc5ec \uacc4\uc0b0\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:<\/p>\n<pre><code>distance = \u221a((x2 - x1)\u00b2 + (y2 - y1)\u00b2)<\/code><\/pre>\n<h3>C# \ucf54\ub4dc<\/h3>\n<p>\uc544\ub798\ub294 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\uae30 \uc704\ud55c C# \ucf54\ub4dc \uc608\uc2dc\uc785\ub2c8\ub2e4:<\/p>\n<pre><code>\nusing System;\n\nclass Program\n{\n    static void Main()\n    {\n        \/\/ \uc810 A\uc758 \uc88c\ud45c \uc785\ub825\n        Console.Write(\"\uc810 A\uc758 x \uc88c\ud45c\ub97c \uc785\ub825\ud558\uc138\uc694: \");\n        double x1 = Convert.ToDouble(Console.ReadLine());\n        Console.Write(\"\uc810 A\uc758 y \uc88c\ud45c\ub97c \uc785\ub825\ud558\uc138\uc694: \");\n        double y1 = Convert.ToDouble(Console.ReadLine());\n\n        \/\/ \uc810 B\uc758 \uc88c\ud45c \uc785\ub825\n        Console.Write(\"\uc810 B\uc758 x \uc88c\ud45c\ub97c \uc785\ub825\ud558\uc138\uc694: \");\n        double x2 = Convert.ToDouble(Console.ReadLine());\n        Console.Write(\"\uc810 B\uc758 y \uc88c\ud45c\ub97c \uc785\ub825\ud558\uc138\uc694: \");\n        double y2 = Convert.ToDouble(Console.ReadLine());\n\n        \/\/ \uac70\ub9ac \uacc4\uc0b0\n        double distance = Math.Sqrt(Math.Pow(x2 - x1, 2) + Math.Pow(y2 - y1, 2));\n\n        \/\/ \uacb0\uacfc \ucd9c\ub825\n        Console.WriteLine($\"\ub450 \uc810 A({x1}, {y1})\uc640 B({x2}, {y2}) \uc0ac\uc774\uc758 \uac70\ub9ac\ub294 {distance}\uc785\ub2c8\ub2e4.\");\n    }\n}\n    <\/code><\/pre>\n<h3>\ucf54\ub4dc \uc124\uba85<\/h3>\n<p>\uc704\uc758 \ucf54\ub4dc\uc5d0\uc11c \uc6b0\ub9ac\ub294 \uc0ac\uc6a9\uc790\uac00 \uc810 A\uc640 B\uc758 \uc88c\ud45c\ub97c \uc785\ub825\ud558\uac8c \ud55c \ub4a4, \uc720\ud074\ub9ac\ub4dc \uac70\ub9ac\ub97c \uacc4\uc0b0\ud569\ub2c8\ub2e4. \uc774\ub54c <code>Math.Sqrt<\/code>\uc640 <code>Math.Pow<\/code> \uba54\uc11c\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc81c\uacf1\uacfc \uc81c\uacf1\uadfc\uc744 \uad6c\ud569\ub2c8\ub2e4.<\/p>\n<h3>\ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4<\/h3>\n<p>\ud504\ub85c\uadf8\ub7a8\uc774 \uc62c\ubc14\ub974\uac8c \uc791\ub3d9\ud558\ub294\uc9c0 \ud655\uc778\ud558\uae30 \uc704\ud574 \uba87 \uac00\uc9c0 \ud14c\uc2a4\ud2b8 \ucf00\uc774\uc2a4\ub97c \uace0\ub824\ud569\ub2c8\ub2e4:<\/p>\n<ul>\n<li>\uc810 A(0, 0)\uc640 \uc810 B(3, 4): \uacb0\uacfc\ub294 5<\/li>\n<li>\uc810 A(1, 1)\uc640 \uc810 B(1, 1): \uacb0\uacfc\ub294 0<\/li>\n<li>\uc810 A(2, 3)\uc640 \uc810 B(5, 7): \uacb0\uacfc\ub294 \uc57d 5<\/li>\n<\/ul>\n<h2>\uacb0\ub860<\/h2>\n<p>\uae30\ud558\ud559\uc801 \ubb38\uc81c\ub294 \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c \ub9e4\uc6b0 \uc720\uc6a9\ud55c \uc8fc\uc81c\uc785\ub2c8\ub2e4. \ud2b9\ud788 \uc810 \uac04\uc758 \uac70\ub9ac \uacc4\uc0b0\uacfc \uac19\uc740 \uae30\ubcf8\uc801\uc778 \ubb38\uc81c\ub97c \uc81c\ub300\ub85c \uc774\ud574\ud558\uace0 \uad6c\ud604\ud55c\ub2e4\uba74, \ub354 \ubcf5\uc7a1\ud55c \uae30\ud558 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ub370\uc5d0\ub3c4 \ud070 \ub3c4\uc6c0\uc774 \ub420 \uac83\uc785\ub2c8\ub2e4. \uafb8\uc900\ud55c \uc5f0\uc2b5\uc744 \ud1b5\ud574 \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c \ud574\uacb0 \ub2a5\ub825\uc744 \ud5a5\uc0c1\uc2dc\ud0a4\uae38 \ubc14\ub78d\ub2c8\ub2e4.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\uae30\ud558\ud559(geometry)\uc740 \ucef4\ud4e8\ud130 \uacfc\ud559\uc758 \uc5ec\ub7ec \ubd84\uc57c\uc5d0\uc11c \ub2e4\uc591\ud55c \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c\ub97c \ub9cc\ub4e4\uc5b4\ub0c5\ub2c8\ub2e4. \ud2b9\ud788 \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c\ub294 \uae30\ud558\ud559\uc801 \ubb38\uc81c\ub4e4\uc774 \uc790\uc8fc \ucd9c\uc81c\ub418\uba70, \uc774\ub4e4\uc740 \uc885\uc885 \uc810, \uc120, \ub2e4\uac01\ud615 \ub4f1\uc744 \ub2e4\ub8e8\ub294 \uacbd\uc6b0\uac00 \ub9ce\uc2b5\ub2c8\ub2e4. \ubb38\uc81c: \ub450 \uc810 \uc0ac\uc774\uc758 \uac70\ub9ac \uad6c\ud558\uae30 \uc0c1\ub2e8\uc5d0\uc11c \ub450 \uc810 A(x1, y1)\uc640 B(x2, y2)\uac00 \uc8fc\uc5b4\uc9c8 \ub54c, \uc774 \ub450 \uc810 \uc0ac\uc774\uc758 \uc720\ud074\ub9ac\ub4dc \uac70\ub9ac\ub97c \uad6c\ud558\ub294 \ud504\ub85c\uadf8\ub7a8\uc744 \uc791\uc131\ud574\uc8fc\uc138\uc694. \ubb38\uc81c \uc815\ub9ac \uc785\ub825: \ub450 \uc810\uc758 \uc88c\ud45c &hellip; <a href=\"https:\/\/atmokpo.com\/w\/27422\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[24],"tags":[],"class_list":["post-27422","post","type-post","status-publish","format-standard","hentry","category-c--"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/27422\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"\uae30\ud558\ud559(geometry)\uc740 \ucef4\ud4e8\ud130 \uacfc\ud559\uc758 \uc5ec\ub7ec \ubd84\uc57c\uc5d0\uc11c \ub2e4\uc591\ud55c \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c\ub97c \ub9cc\ub4e4\uc5b4\ub0c5\ub2c8\ub2e4. \ud2b9\ud788 \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c\ub294 \uae30\ud558\ud559\uc801 \ubb38\uc81c\ub4e4\uc774 \uc790\uc8fc \ucd9c\uc81c\ub418\uba70, \uc774\ub4e4\uc740 \uc885\uc885 \uc810, \uc120, \ub2e4\uac01\ud615 \ub4f1\uc744 \ub2e4\ub8e8\ub294 \uacbd\uc6b0\uac00 \ub9ce\uc2b5\ub2c8\ub2e4. \ubb38\uc81c: \ub450 \uc810 \uc0ac\uc774\uc758 \uac70\ub9ac \uad6c\ud558\uae30 \uc0c1\ub2e8\uc5d0\uc11c \ub450 \uc810 A(x1, y1)\uc640 B(x2, y2)\uac00 \uc8fc\uc5b4\uc9c8 \ub54c, \uc774 \ub450 \uc810 \uc0ac\uc774\uc758 \uc720\ud074\ub9ac\ub4dc \uac70\ub9ac\ub97c \uad6c\ud558\ub294 \ud504\ub85c\uadf8\ub7a8\uc744 \uc791\uc131\ud574\uc8fc\uc138\uc694. \ubb38\uc81c \uc815\ub9ac \uc785\ub825: \ub450 \uc810\uc758 \uc88c\ud45c &hellip; \ub354 \ubcf4\uae30 &quot;C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/27422\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-27T14:11:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T07:18:32+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/27422\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27422\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30\",\"datePublished\":\"2024-10-27T14:11:31+00:00\",\"dateModified\":\"2024-11-26T07:18:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27422\/\"},\"wordCount\":12,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/27422\/\",\"url\":\"https:\/\/atmokpo.com\/w\/27422\/\",\"name\":\"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-27T14:11:31+00:00\",\"dateModified\":\"2024-11-26T07:18:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/27422\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/27422\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/27422\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/27422\/","og_locale":"ko_KR","og_type":"article","og_title":"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"\uae30\ud558\ud559(geometry)\uc740 \ucef4\ud4e8\ud130 \uacfc\ud559\uc758 \uc5ec\ub7ec \ubd84\uc57c\uc5d0\uc11c \ub2e4\uc591\ud55c \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c\ub97c \ub9cc\ub4e4\uc5b4\ub0c5\ub2c8\ub2e4. \ud2b9\ud788 \ucf54\ub529 \ud14c\uc2a4\ud2b8\uc5d0\uc11c\ub294 \uae30\ud558\ud559\uc801 \ubb38\uc81c\ub4e4\uc774 \uc790\uc8fc \ucd9c\uc81c\ub418\uba70, \uc774\ub4e4\uc740 \uc885\uc885 \uc810, \uc120, \ub2e4\uac01\ud615 \ub4f1\uc744 \ub2e4\ub8e8\ub294 \uacbd\uc6b0\uac00 \ub9ce\uc2b5\ub2c8\ub2e4. \ubb38\uc81c: \ub450 \uc810 \uc0ac\uc774\uc758 \uac70\ub9ac \uad6c\ud558\uae30 \uc0c1\ub2e8\uc5d0\uc11c \ub450 \uc810 A(x1, y1)\uc640 B(x2, y2)\uac00 \uc8fc\uc5b4\uc9c8 \ub54c, \uc774 \ub450 \uc810 \uc0ac\uc774\uc758 \uc720\ud074\ub9ac\ub4dc \uac70\ub9ac\ub97c \uad6c\ud558\ub294 \ud504\ub85c\uadf8\ub7a8\uc744 \uc791\uc131\ud574\uc8fc\uc138\uc694. \ubb38\uc81c \uc815\ub9ac \uc785\ub825: \ub450 \uc810\uc758 \uc88c\ud45c &hellip; \ub354 \ubcf4\uae30 \"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30\"","og_url":"https:\/\/atmokpo.com\/w\/27422\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-27T14:11:31+00:00","article_modified_time":"2024-11-26T07:18:32+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/27422\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/27422\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30","datePublished":"2024-10-27T14:11:31+00:00","dateModified":"2024-11-26T07:18:32+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/27422\/"},"wordCount":12,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/27422\/","url":"https:\/\/atmokpo.com\/w\/27422\/","name":"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-27T14:11:31+00:00","dateModified":"2024-11-26T07:18:32+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/27422\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/27422\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/27422\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"C# \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uae30\ud558 \uc54c\uc544\ubcf4\uae30"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27422","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=27422"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27422\/revisions"}],"predecessor-version":[{"id":27423,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/27422\/revisions\/27423"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=27422"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=27422"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=27422"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}