{"id":3997,"date":"2021-02-15T05:44:19","date_gmt":"2021-02-15T05:44:19","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=3997"},"modified":"2021-02-15T06:44:12","modified_gmt":"2021-02-15T06:44:12","slug":"c-coding-standards-and-best-practices","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/","title":{"rendered":"C# Coding Standards and Best Practices"},"content":{"rendered":"<p>I am going to describe here several rules and conventions which are useful for developing applications and class libraries in C#. Here, the main goal is to define guidelines to enforce the consistent style and formatting to help developers avoid common <a href=\"https:\/\/studysection.com\/blog\/common-mistakes-salesforce-developers-make\/\">mistakes <\/a>while coding in C#.<\/p>\n<h2>Naming Conventions<\/h2>\n<p><strong>General Guidelines<\/strong><\/p>\n<ol>\n<li>Always use Camel Case or Pascal Case names for naming conventions.<\/li>\n<li>Avoid ALL CAPS and all lowercase names. Although single lowercase words or letters are acceptable.<\/li>\n<li>Do not use names that begin with a numeric character.<\/li>\n<li>Always choose meaningful and specific names.<\/li>\n<li>Do not use abbreviations unless the full name is enormous.<\/li>\n<li>Avoid including the parent class name within a property name.<br \/>\nExample:<br \/>\n<code><em>Customer.Name <\/em>\t\/\/Good<br \/>\n<em>Customer.CustomerName<\/em>\t\t\/\/Bad<\/code><\/li>\n<li>It is better to prefix Boolean variables and properties with \u201c<strong>Can<\/strong>\u201d, \u201c<strong>Is<\/strong>\u201d or \u201c<strong>Has<\/strong>\u201d like \u201c<strong>CanPopulate<\/strong>\u201d, \u201c<strong>IsValid<\/strong>\u201d or \u201c<strong>HasContent<\/strong>\u201d, etc.<\/li>\n<li>Do not use Hungarian Notation!<br \/>\nExample:<em> strName or iCount<\/em><\/li>\n<li>Any Abbreviations must be widely known and accepted and avoid abbreviations longer than 5 characters.<\/li>\n<li>For two-letter abbreviations, use uppercase and Pascal Case for longer abbreviations.<\/li>\n<li>Do not use C# reserved words as names. <\/li>\n<li>Avoid adding redundant or meaningless prefixes and suffixes to identifiers<br \/>\nExample:<br \/>\n<code>\/\/ Bad!<br \/>\npublic enum ColorsEnum {\u2026}<br \/>\npublic class CVehicle {\u2026}<br \/>\npublic struct RectangleStruct {\u2026}<\/code>\n<\/li>\n<\/ol>\n<p><strong>Name Usage &#038; Syntax<\/strong><\/p>\n<ul>\n<li>Class or Struct<br \/>\nPascal Case<br \/>\nExamples:<br \/>\n<code>private class MyClass<br \/>\n{\u2026} <\/code><\/p>\n<p>For class name, use either a noun or noun phrase<br \/>\nFor Example:<br \/>\n<code>private struct ApplicationSettings<br \/>\n{\u2026} <\/code><\/p>\n<p>When sub-classing another type, add an appropriate class-suffix when possible.<br \/>\nExamples:<br \/>\n<code>internal class SpecializedAttribute : Attribute<br \/>\n{\u2026}<br \/>\npublic class CustomerCollection : CollectionBase<br \/>\n{\u2026}<br \/>\npublic class CustomEventArgs : EventArgs<br \/>\n{\u2026}<\/code>\n<\/li>\n<li>Interface<br \/>\nUse Pascal Case convention.<br \/>\nAlways prefix the interface name with a capital \u201cI\u201d.<br \/>\nExample:<br \/>\n<code>interface ICustomer<br \/>\n{\u2026} <\/code>\n<\/li>\n<li>Method<br \/>\nPascal Case.<br \/>\nTry to use a Verb or Verb-Object pair.<br \/>\nExample:<br \/>\n<code>public void <strong>Execute()<\/strong><br \/>\n{\u2026}<br \/>\nprivate string <strong>GetAssemblyVersion<\/strong>(Assembly target)<br \/>\n{\u2026}<\/code>\n<\/li>\n<li>Property<br \/>\nPascal Case.<br \/>\nNever prefix property names with \u201cGet\u201d or \u201cSet\u201d.<br \/>\nExample:<br \/>\n<code>public string <strong>Name <\/strong><br \/>\n{<br \/>\n\tget{\u2026}<br \/>\n\tSet{\u2026}<br \/>\n}<\/code>\n<\/li>\n<li>Field (Public, Protected, or Internal)<br \/>\nPascal Case.<br \/>\nAvoid using non-private Fields! Use Properties instead.<br \/>\nExample:<br \/>\npublic string <strong>Name<\/strong>;<br \/>\nprotected IList <strong>InnerList<\/strong>\n<\/li>\n<li>Field (Private)<br \/>\nCamel Case and prefix with a one underscore (_) character.<br \/>\nExample:<br \/>\nprivate <strong><em>string _name<\/em><\/strong>;\n<\/li>\n<li>Variable\n<ul>\n<li>Camel Case.<\/li>\n<li>Avoid using single characters like \u201cx\u201d or \u201cy\u201d except in certain loops like FOR, Foreach, etc.<\/li>\n<li>Avoid using variable names like text1, text2, text3, etc.<\/li>\n<\/ul>\n<\/li>\n<li>Parameter<br \/>\nCamel Case.<br \/>\nExample:<br \/>\n<code>public void Execute(string <strong>commandText<\/strong>, int <strong>iterations<\/strong>)<br \/>\n{\u2026}<\/code>\n<\/li>\n<\/ul>\n<h3>Coding Style<\/h3>\n<p><strong>Formatting<\/strong><\/p>\n<ol>\n<li>Never declare more than 1 namespace per file.<\/li>\n<li>Avoid putting multiple classes in a single file.<\/li>\n<li>Declare each variable independently \u2013 not within the same statement.<\/li>\n<li>Place namespace \u201cusing\u201d statements together at the highest of the file. Group .NET namespaces above custom namespaces.<\/li>\n<li>\nGroup internal class implementation by type within the following order: <\/p>\n<ul>\n<li>Member variables.<\/li>\n<li>Constructors &#038; Finalizers. <\/li>\n<li>Nested Enums, Structs, and Classes. <\/li>\n<li>Properties <\/li>\n<li>Methods<\/li>\n<\/ul>\n<\/li>\n<li>The sequence of declarations within the type groups based upon access modifier and visibility:\n<ul>\n<li>Public<\/li>\n<li>Protected<\/li>\n<li>Internal<\/li>\n<li>Private<\/li>\n<\/ul>\n<\/li>\n<li>Segregate interface Implementation by using #region statements.<\/li>\n<li>Always try to use curly braces i.e. { and } in conditional statements.<\/li>\n<li>Always use a Tab &#038; Indention size of 4 to separate and organize code.<\/li>\n<li>Recursively indent all code blocks contained within braces.<\/li>\n<\/ol>\n<p><strong>Code Commenting<\/strong><\/p>\n<ol>\n<li>Use \/\/ or \/\/\/  and avoid  \/*\u2026\u2026. *\/<\/li>\n<li>Place the comment above the code in a separate line, but not just after the end of the code in the same line.<\/li>\n<li>Begin comment text with an uppercase letter and End comment text with a period.<\/li>\n<li>Insert one space between the comment delimiter (\/\/) and therefore the comment text, as shown within the following example.<br \/>\nExample:<br \/>\n<strong><em>\/\/ The following declaration will create a query to map the fields.<br \/>\n\/\/ It will not run this query.<\/em><\/strong>\n<\/li>\n<li>Do not \u201cflowerbox\u201d comment blocks.<br \/>\n<em>Example:<br \/>\n\/\/ ***************************************<br \/>\n\/\/ Comment block<br \/>\n\/\/ ***************************************<\/em>\n<\/li>\n<li>Use inline-comments to elucidate assumptions, known issues, and algorithm insights.<\/li>\n<li>Do not use inline-comments to explain obvious code. Well written code is self-documenting.<\/li>\n<li>Only use comments for bad code to mention \u201c<strong>fix this code<\/strong>\u201d \u2013 otherwise remove, or rewrite the code!<\/li>\n<li>Include comments using Task-List keyword flags to permit comment-filtering.<br \/>\n<em>Example:<br \/>\n\/\/ TODO: Place Database Code Here<br \/>\n\/\/ UNDONE: Removed P\\Invoke Call due to errors<br \/>\n\/\/ HACK: Temporary fix until able to refactor<\/em>\n<\/li>\n<li>Only use C# comment-blocks for documenting the API.<\/li>\n<li>Always include comments. <\/li>\n<\/ol>\n<p><small><em>If you have skills in PHP programming and you want to enhance your career in this field, a PHP certification from StudySection can help you reach your desired goals. Both beginner level and expert level <a href=\"https:\/\/www.studysection.com\/php-web-development-advanced\">PHP Certification Exams<\/a> are offered by StudySection along with other programming certification exams.<\/em><\/small><\/p>\n","protected":false},"excerpt":{"rendered":"<p>I am going to describe here several rules and conventions which are useful for developing applications and class libraries in<\/p>\n","protected":false},"author":1,"featured_media":3999,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[142,96],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>StudySection Blog - C# Coding Standards and Best Practices<\/title>\n<meta name=\"description\" content=\"I am going to describe here several rules and conventions which are useful for developing applications and class libraries in C#.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"StudySection Blog - C# Coding Standards and Best Practices\" \/>\n<meta property=\"og:description\" content=\"I am going to describe here several rules and conventions which are useful for developing applications and class libraries in C#.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-15T05:44:19+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-02-15T06:44:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/02\/c.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"C# Coding Standards and Best Practices\",\"datePublished\":\"2021-02-15T05:44:19+00:00\",\"dateModified\":\"2021-02-15T06:44:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/\"},\"wordCount\":669,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"keywords\":[\"C\",\"practices\"],\"articleSection\":[\"Learn and Grow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/\",\"url\":\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/\",\"name\":\"StudySection Blog - C# Coding Standards and Best Practices\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2021-02-15T05:44:19+00:00\",\"dateModified\":\"2021-02-15T06:44:12+00:00\",\"description\":\"I am going to describe here several rules and conventions which are useful for developing applications and class libraries in C#.\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"C# Coding Standards and Best Practices\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"StudySection Blog - C# Coding Standards and Best Practices","description":"I am going to describe here several rules and conventions which are useful for developing applications and class libraries in C#.","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:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/","og_locale":"en_US","og_type":"article","og_title":"StudySection Blog - C# Coding Standards and Best Practices","og_description":"I am going to describe here several rules and conventions which are useful for developing applications and class libraries in C#.","og_url":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2021-02-15T05:44:19+00:00","article_modified_time":"2021-02-15T06:44:12+00:00","og_image":[{"width":300,"height":200,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/02\/c.png","type":"image\/png"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"C# Coding Standards and Best Practices","datePublished":"2021-02-15T05:44:19+00:00","dateModified":"2021-02-15T06:44:12+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/"},"wordCount":669,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"keywords":["C","practices"],"articleSection":["Learn and Grow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/","url":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/","name":"StudySection Blog - C# Coding Standards and Best Practices","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2021-02-15T05:44:19+00:00","dateModified":"2021-02-15T06:44:12+00:00","description":"I am going to describe here several rules and conventions which are useful for developing applications and class libraries in C#.","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/c-coding-standards-and-best-practices\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"C# Coding Standards and Best Practices"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":581,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/3997"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=3997"}],"version-history":[{"count":5,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/3997\/revisions"}],"predecessor-version":[{"id":4003,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/3997\/revisions\/4003"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/3999"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=3997"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=3997"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=3997"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}