{"id":6739,"date":"2022-09-13T18:48:45","date_gmt":"2022-09-13T17:48:45","guid":{"rendered":"https:\/\/solidt.eu\/site\/?p=6739"},"modified":"2022-09-13T18:48:46","modified_gmt":"2022-09-13T17:48:46","slug":"c-generate-string-block","status":"publish","type":"post","link":"https:\/\/solidt.eu\/site\/c-generate-string-block\/","title":{"rendered":"C# Generate string block"},"content":{"rendered":"\n<div style=\"height: 250px; position:relative; margin-bottom: 50px;\" class=\"wp-block-simple-code-block-ace\"><pre class=\"wp-block-simple-code-block-ace\" style=\"position:absolute;top:0;right:0;bottom:0;left:0\" data-mode=\"csharp\" data-theme=\"monokai\" data-fontsize=\"14\" data-lines=\"Infinity\" data-showlines=\"true\" data-copy=\"false\">public string GenerateBlock(int width, int height)\n{\n    var sb = new StringBuilder();\n    for (int h = 0; h &lt; height; h++)\n    {\n        var borderRow = h == 0 || h + 1 == height;\n        for (int w = 0; w &lt; width; w++)\n        {\n            var borderColumn = w == 0 || w + 1 == width;\n            if (borderRow)\n                sb.Append(\"=\");\n            else if (borderColumn)\n                sb.Append(\"|\");\n            else\n                sb.Append(\".\");\n        }\n        sb.AppendLine();\n    }\n    return sb.ToString();\n}\n\n\/\/ Usage:\nConsole.WriteLine(GenerateBlock(20, 10));\n\n\/\/ Result:\n====================\n|..................|\n|..................|\n|..................|\n|..................|\n|..................|\n|..................|\n|..................|\n|..................|\n====================\n\n\n\n<\/pre><\/div>\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":[1],"tags":[],"class_list":["post-6739","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/6739","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=6739"}],"version-history":[{"count":1,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/6739\/revisions"}],"predecessor-version":[{"id":6740,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/posts\/6739\/revisions\/6740"}],"wp:attachment":[{"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/media?parent=6739"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/categories?post=6739"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solidt.eu\/site\/wp-json\/wp\/v2\/tags?post=6739"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}