{"id":102328,"date":"2019-11-06T09:50:01","date_gmt":"2019-11-06T09:50:01","guid":{"rendered":"https:\/\/www.softwaretestinghelp.com\/?page_id=102328"},"modified":"2025-04-01T08:12:51","modified_gmt":"2025-04-01T08:12:51","slug":"csharp-arrays","status":"publish","type":"page","link":"https:\/\/www.softwaretestinghelp.com\/c-sharp\/csharp-arrays\/","title":{"rendered":"C# Array: How To Declare, Initialize And Access An Array In C#?"},"content":{"rendered":"<p><strong>Learn All About C# Array in This In-depth Tutorial. It Explains How To Declare, Initialize And Access Arrays Along with Types And Examples Of Arrays in C#:<\/strong><\/p>\n<p>Our previous tutorial in this C# series explained all about C# Functions in detail.<\/p>\n<p>In one of our earlier tutorials, we learned how variables in C# can be used to contain information about a certain data type. However, there is a problem with the variable i.e. it can store only one literal value.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>For Example,<\/strong><\/span> int a = 2, imagine a situation where we want to store more than one value, it will become too cumbersome to define a variable for each and every value that we want to store. C# offers an array to solve this problem.<\/p>\n<p><strong>=&gt; <a href=\"https:\/\/www.softwaretestinghelp.com\/c-sharp\/\">Read Through The C# Guide For Beginners Here<\/a><\/strong><\/p>\n<p><em><strong> <\/strong><\/em><\/p>\n<p><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/09\/C-Arrays.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-103215\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/09\/C-Arrays.png\" alt=\"C# Arrays\" width=\"650\" height=\"366\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/09\/C-Arrays.png 650w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/09\/C-Arrays-300x169.png 300w\" sizes=\"(max-width: 650px) 100vw, 650px\" \/><\/a><\/p>\n<h2>Arrays In C#<\/h2>\n<p>An Array can be defined as a special data type that can store a number of values arranged sequentially using its designated syntax. Arrays can also be defined as a collection of variables of the same data types stored in a sequential memory location.<\/p>\n<p>Unlike the data type variable, we do not declare an individual variable for each value, instead, we declare an array variable from which the specific elements can be accessed by using an array index.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>For Example,<\/strong><\/span> if we define an array variable as \u201cName\u201d. We can access its content at different memory locations by using index like Name[0], Name[1], Name[2]\u2026 etc.<\/p>\n<p><a href=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/10\/graphical-representation-of-a-one-dimensional-array.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-108393\" src=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/10\/graphical-representation-of-a-one-dimensional-array.png\" alt=\"graphical representation of a one dimensional array\" width=\"598\" height=\"209\" srcset=\"https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/10\/graphical-representation-of-a-one-dimensional-array.png 598w, https:\/\/www.softwaretestinghelp.com\/wp-content\/qa\/uploads\/2019\/10\/graphical-representation-of-a-one-dimensional-array-300x105.png 300w\" sizes=\"(max-width: 598px) 100vw, 598px\" \/><\/a><\/p>\n<p>The above image is a graphical representation of a one-dimensional array. It has five elements (represented by each cube) that can be accessed by using specific indexes.<\/p>\n<h3><span style=\"color: #ff6600;\">Pros And Cons Of Arrays<\/span><\/h3>\n<p><strong>Enlisted below are some of the advantages of Arrays:<\/strong><\/p>\n<ol>\n<li>Random access to values stored at different memory locations.<\/li>\n<li>Easy data manipulation like Data sorting, Data traversing or other operations.<\/li>\n<li>Optimization of code.<\/li>\n<\/ol>\n<p>The only disadvantage that an array possess is its size restriction. Arrays are of definite size.<\/p>\n<h3><span style=\"color: #ff6600;\">Types Of Arrays In C#<\/span><\/h3>\n<p><strong>The C# programming language offers 3 different types of Arrays:<\/strong><\/p>\n<ul>\n<li>1 dimensional or Single Dimensional Array<\/li>\n<li>Multi-Dimensional Array<\/li>\n<li>Jagged Array<\/li>\n<\/ul>\n<p><strong><span style=\"color: #000000;\">Single Dimensional Arrays<\/span><\/strong><\/p>\n<p>One dimensional array allows us to store data in a sequential manner. Let\u2019s say we need to store the name of all the students in a class. The array provides a simpler way to store similar data types, hence we can store all the student names in an array.<\/p>\n<h3><span style=\"color: #ff6600;\">How To Declare An Array in C#?<\/span><\/h3>\n<p>An array can be declared by using a data type name followed by a square bracket followed by the name of the array.<\/p>\n<pre>int[ ] integerArray;\r\nstring[ ] stringArray;\r\nbool[ ] booleanArray;<\/pre>\n<p>Likewise, you can declare an array for different data types.<\/p>\n<h3><span style=\"color: #ff6600;\">How To Initialize An Array in C#?<\/span><\/h3>\n<p><span style=\"color: #000000;\"><strong>(i) Defining Array With The Given Size<\/strong><\/span><\/p>\n<p>An array can be initialized and declared together by using the new keyword. To initialize an array for 3 students. We need to create an array with size 3.<\/p>\n<pre><strong>string<\/strong>[ ] student = <strong>new string<\/strong>[ 3 ];<\/pre>\n<p>The first part \u201cstring\u201d defines the data type of the array, then we provide the array name. Then after writing equals to we initialize and provide the size of the array. i.e. 3.<\/p>\n<p><span style=\"color: #000000;\"><strong>(ii) Defining Array And Adding Values To Them<\/strong><\/span><\/p>\n<p>This is quite similar to the previous example, just with a difference of curly braces containing values of the array.<\/p>\n<pre><strong>string<\/strong>[ ] student = <strong>new string<\/strong>[ 3 ]{\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};<\/pre>\n<p><span style=\"color: #000000;\"><strong>(iii) Declaring The Array With Elements<\/strong><\/span><\/p>\n<p>In this type of declaration, we directly declare the array without providing the array size. The number of values we provide will automatically decide the size. <span style=\"text-decoration: underline;\"><strong>For Example,<\/strong><\/span> if we are providing 3 values, then the array will be of size 3.<\/p>\n<pre><strong>string<\/strong>[ ] student = {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};<\/pre>\n<h3><span style=\"color: #ff6600;\">Accessing Value From An Array<\/span><\/h3>\n<p>To access any element from an array we need to access the array using index name. This can be done by placing an index of the element inside a square bracket preceded by the array name.<\/p>\n<p><span style=\"text-decoration: underline;\"><strong>For Example,<\/strong><\/span> if we have initialized and declared the following array:<\/p>\n<pre><strong>string<\/strong>[ ] student = {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};<\/pre>\n<p>Then we can retrieve the value by using index\u201d.<\/p>\n<pre><strong>student[0] ;<\/strong><\/pre>\n<p>This will return \u201cstudent1\u201d.<\/p>\n<p><em><strong>But why zero?<\/strong> <\/em>It is because the counting of an array starts from zero instead of one.\u00a0 Hence, the first value will be stored at index zero, next at one and so on. This should also be kept in mind while assigning values to an array as it will throw an exception in case of overfilling.<\/p>\n<h3><span style=\"color: #ff6600;\">Using For Loop To Access Arrays<\/span><\/h3>\n<p><strong>Let\u2019s write a program to access values from an array using for loop.<\/strong><\/p>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring &#x5B;]  std = new string&#x5B;3] {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};\r\n\/* value of each array element*\/\r\nfor (int i = 0; i &lt; 3; i++ ) {\r\nConsole.WriteLine(&quot;std&#x5B;{0}] = {1}&quot;, i, std&#x5B;i]);\r\n}\r\nConsole.ReadKey();\r\n<\/pre>\n<p><strong>The output of the above program will be:<\/strong><\/p>\n<p>std[0] = \u201cstudent1\u201d<br \/>\nstd[1] = \u201cstudent2\u201d<br \/>\nstd[2] = \u201cstudent3\u201d<\/p>\n<p>As we know, we can access the element by providing an index in the square bracket. That\u2019s the same approach we took in the above program. We looped through each index and printed the value to the console.<\/p>\n<p>Let\u2019s try to use the same example with a simple for each loop.<\/p>\n<h3><span style=\"color: #ff6600;\">Using For-Each Loop To Access Arrays<\/span><\/h3>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">   \r\nstring &#x5B;]  std = new string&#x5B;3] {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};\r\n\/* looping through value of each array element*\/\r\nforeach (string s in std  ) {\r\nConsole.WriteLine(s);\r\n}\r\nConsole.ReadKey();\r\n<\/pre>\n<p><strong>The output of the above program will be:<\/strong><\/p>\n<p>student1<br \/>\nstudent2<br \/>\nstudent3<\/p>\n<h3><span style=\"color: #ff6600;\">Properties And Methods Used With Arrays<\/span><\/h3>\n<p>Array class is the base class for all the arrays defined in the C#. It is defined inside the system namespace and provides various methods and properties for performing operations on arrays.<\/p>\n<p><strong>Let\u2019s discuss some of the most commonly used methods in C#<\/strong><\/p>\n<h4><span style=\"color: #000000;\">Clear<\/span><\/h4>\n<p>It clears the element present in the array. Depending upon the data type the array elements can be converted to zero, false or null.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<pre><strong>Array.Clear<\/strong>(ArrayName, Index of starting element, number of element to clear);<\/pre>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring &#x5B;]  std = new string&#x5B;3] {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};\r\n\/* looping through value of each array element*\/\r\nforeach (string s in std  ) {\r\nConsole.WriteLine(s);\r\n}\r\n\t\/* clearing the array by providing parameters *\/\r\n\tArray.Clear(std, 0, 3);\r\n\tforeach (string s in std  ) {\r\nConsole.WriteLine(s);\r\n}         \r\nConsole.ReadKey();<\/pre>\n<p><strong>The output of the above program will be:<\/strong><\/p>\n<p>student1<br \/>\nstudent2<br \/>\nstudent3<\/p>\n<p>Array. Clear statement accepts three parameters, first is the name of the array, the second one is the starting index of the range of elements to clear and the third one is the number of elements to be cleared.<\/p>\n<p>In our example, we started from the index \u201c0\u201d and cleared all three elements. You can provide your own parameters as per the requirement.<\/p>\n<h4>GetLength<\/h4>\n<p>It returns the length of the array i.e. the number of the element present inside the array.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<pre><strong>ArrayName.Length;<\/strong><\/pre>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring &#x5B;]  std = new string&#x5B;3] {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};\r\n\/* looping through value of each array element*\/\r\nforeach(string s in std){\r\nConsole.WriteLine(s);\r\n}\r\n\t\r\n\tint len = std.Length;\r\n\tConsole.WriteLine(\u201cThe length of array is: \u201d+len);\r\nConsole.ReadKey();\r\n<\/pre>\n<p><strong>The output of the above program will be:<\/strong><\/p>\n<p>student1<br \/>\nstudent2<br \/>\nstudent3<br \/>\nThe length of array is: 3<\/p>\n<p>In the above program, as length returns an integer value, we have stored the value in an integer variable and printed the same to the console.<\/p>\n<h4>IndexOf<\/h4>\n<p>It retrieves the index of the first occurrence of a specified object from a one-dimensional array.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<pre><strong>Array.IndexOf(NameOfArray, Element_Value);;<\/strong><\/pre>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring &#x5B;]  std = new string&#x5B;3] {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};\r\n\/* looping through value of each array element*\/\r\nforeach (string s in std  ) {\r\nConsole.WriteLine(s);\r\n}\r\n\t\r\n\tint len = Array.IndexOf(std, &quot;student3&quot;);\r\n\tConsole.WriteLine(len);\r\n        Console.ReadKey();\r\n<\/pre>\n<p><strong>The output of the above program will be:<\/strong><\/p>\n<p>student1<br \/>\nstudent2<br \/>\nstudent3<br \/>\n2<\/p>\n<p>The IndexOf accepts two parameters, first is the array name and the next parameter is the value of the element inside the array.<\/p>\n<h4>Reverse(Array)<\/h4>\n<p>It reverses the sequences of the element present in an array.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<pre><strong>Array.Reverse(NameOfArray);<\/strong><\/pre>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring &#x5B;]  std = new string&#x5B;3] {\u201cstudent1\u201d, \u201cstudent2\u201d, \u201cstudent3\u201d};\r\n\/* looping through value of each array element*\/\r\nforeach (string s in std  ) {\r\nConsole.WriteLine(s);\r\n         }\r\n\tArray.Reverse(std);\r\n\t\/* looping through value of each array element*\/\r\n         foreach (string s in std  ) {\r\n        Console.WriteLine(s);\r\n}\r\nConsole.ReadKey();\r\n<\/pre>\n<p><strong>The output of the above program will be:<\/strong><\/p>\n<p>student1<br \/>\nstudent2<br \/>\nstudent3<br \/>\nstudent3<br \/>\nstudent2<br \/>\nstudent1<\/p>\n<p>The Reverse accepts one parameter i.e.the array name.<\/p>\n<p>In the above example first, we have printed the elements from the array. Then we performed a reverse operation on the array. Next, we have printed the result of the reverse operation.<\/p>\n<h4>Sort(Array)<\/h4>\n<p>It sorts the sequences of the element present in an array.<\/p>\n<p><strong>Syntax<\/strong><\/p>\n<pre><strong>Array.Sort(NameOfArray);<\/strong><\/pre>\n<pre class=\"brush: csharp; title: ; notranslate\" title=\"\">\r\nstring &#x5B;]  std = new string&#x5B;3] {&quot;colt&quot;, &quot;zebra&quot;, &quot;apple&quot;};\r\n               \/* looping through value of each array element*\/\r\nforeach (string s in std ) {\r\nConsole.WriteLine(s);\r\n                }\r\n            \r\nArray.Sort(std);\r\n                      \r\nforeach (string s in std ) {\r\nConsole.WriteLine(s);   \r\n                 }   Console.ReadKey();\r\n<\/pre>\n<p><strong>The output of the above program will be:<\/strong><\/p>\n<p>colt<br \/>\nzebra<br \/>\napple<br \/>\napple<br \/>\ncolt<br \/>\nzebra<\/p>\n<p>In the above output, you can see that the previous elements in the array were arranged as per the sequence we provided.<\/p>\n<p>When we performed sort operation, all the elements inside the array gets arranged alphabetically.<\/p>\n<h2>Conclusion<\/h2>\n<p>In this tutorial, we learned about Arrays in C#. Arrays can store values of a similar data type in a series. The series index for arrays starts from zero. The array size needs to be specified during the initialization of the array.<\/p>\n<p>We can access the value of an array by using indexing. C# Array helper class contains several different properties and methods to facilitate the operations on arrays.<\/p>\n<p><strong>=&gt; <a href=\"https:\/\/www.softwaretestinghelp.com\/c-sharp\/\">Read Through The C# Guide For Beginners Here<\/a><\/strong><\/p>\n\r\n\t\t\t<div id=\"daexthefup-container\"\r\n\t\t\t\tclass=\"daexthefup-container daexthefup-layout-stacked daexthefup-alignment-center\"\r\n\t\t\t\tdata-post-id=\"102328\">\r\n\r\n\t\t\t\t<div class=\"daexthefup-feedback\">\r\n\t\t\t\t\t<div class=\"daexthefup-text\">\r\n\t\t\t\t\t\t<h3 class=\"daexthefup-title\">Was this helpful?<\/h3>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<div class=\"daexthefup-buttons-container\">\r\n\t\t\t\t\t\t<div class=\"daexthefup-buttons\">\r\n\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-yes daexthefup-button daexthefup-button-type-icon\" data-value=\"1\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-up-cls-1{fill:#c9c9c9;}.thumb-up-cls-2{fill:#e1e1e1;}.thumb-up-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_up\">\r\n                        <path class=\"thumb-up-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-up-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"20\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,9.06l-.49-.1c-.81-.17-1.61.35-1.78,1.16l-5.3,11.74c-.17.81,3.16,1.61,3.97,1.78l1.96.41c.81.17,1.61-.35,1.78-1.16l2.18-10.27c.34-1.61-.7-3.21-2.31-3.56Z\" \/>\r\n                            <path class=\"thumb-up-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,20h-18.67c-.83,0-1.5.67-1.5,1.5v12c0,.83.67,1.5,1.5,1.5h16.27c.71,0,1.33-.5,1.47-1.21l2.4-12c.19-.93-.53-1.8-1.47-1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t<div class=\"daexthefup-no daexthefup-button daexthefup-button-type-icon\" data-value=\"0\">\r\n\t\t\t\t\r\n                <svg>\r\n                    <defs>\r\n                        <style>.thumb-down-cls-1{fill:#c9c9c9;}.thumb-down-cls-2{fill:#e1e1e1;}.thumb-down-cls-3{fill:#676767;}<\/style>\r\n                    <\/defs>\r\n                    <g id=\"thumb_down\">\r\n                        <path class=\"thumb-down-cls-2 daexthefup-icon-circle\" d=\"m24,3c11.58,0,21,9.42,21,21s-9.42,21-21,21S3,35.58,3,24,12.42,3,24,3m0-1C11.85,2,2,11.85,2,24s9.85,22,22,22,22-9.85,22-22S36.15,2,24,2h0Z\" \/>\r\n                        <g>\r\n                            <rect class=\"thumb-down-cls-3 daexthefup-icon-secondary-color\" x=\"10\" y=\"13\" width=\"6\" height=\"15\" rx=\"1.5\" ry=\"1.5\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m30.57,38.94l-.49.1c-.81.17-1.61-.35-1.78-1.16l-5.3-11.74c-.17-.81,3.16-1.61,3.97-1.78l1.96-.41c.81-.17,1.61.35,1.78,1.16l2.18,10.27c.34,1.61-.7,3.21-2.31,3.56Z\" \/>\r\n                            <path class=\"thumb-down-cls-1 daexthefup-icon-primary-color\" d=\"m38.17,28h-18.67c-.83,0-1.5-.67-1.5-1.5v-12c0-.83.67-1.5,1.5-1.5h16.27c.71,0,1.33.5,1.47,1.21l2.4,12c.19.93-.53,1.8-1.47,1.8Z\" \/>\r\n                        <\/g>\r\n                    <\/g>\r\n                <\/svg>\t\t\t<\/div>\r\n\r\n\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-comment\">\r\n\t\t\t\t\t<div class=\"daexthefup-comment-top-container\">\r\n\t\t\t\t\t\t<label id=\"daexthefup-comment-label\" class=\"daexthefup-comment-label\"><\/label>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-container\">\r\n\t\t\t\t\t\t\t\t<div id=\"daexthefup-comment-character-counter-number\"\r\n\t\t\t\t\t\t\t\t\tclass=\"daexthefup-comment-character-counter-number\"><\/div>\r\n\t\t\t\t\t\t\t\t<div class=\"daexthefup-comment-character-counter-text\"><\/div>\r\n\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t<textarea id=\"daexthefup-comment-textarea\" class=\"daexthefup-comment-textarea\"\r\n\t\t\t\t\t\t\t\tplaceholder=\"Type your message\"\r\n\t\t\t\t\t\t\t\tmaxlength=\"\r\n\t\t\t\t\t\t\t\t400\t\t\t\t\t\t\t\t\t\"><\/textarea>\r\n\t\t\t\t\t<div class=\"daexthefup-comment-buttons-container\">\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-submit daexthefup-button\">Submit<\/button>\r\n\t\t\t\t\t\t<button class=\"daexthefup-comment-cancel daexthefup-button\">Cancel<\/button>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\r\n\r\n\t\t\t\t<div class=\"daexthefup-successful-submission-text\">Thanks for your feedback!<\/div>\r\n\r\n\t\t\t<\/div>\r\n\r\n\t\t\t","protected":false},"excerpt":{"rendered":"<p>Learn All About C# Array in This In-depth Tutorial. It Explains How To Declare, Initialize And Access Arrays Along with Types And Examples Of Arrays in C#: Our previous tutorial in this C# series explained all about C# Functions in detail. In one of our earlier tutorials, we learned how &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"C# Array: How To Declare, Initialize And Access An Array In C#?\" class=\"read-more button\" href=\"https:\/\/www.softwaretestinghelp.com\/c-sharp\/csharp-arrays\/#more-102328\" aria-label=\"Read more about C# Array: How To Declare, Initialize And Access An Array In C#?\">Read more<\/a><\/p>\n","protected":false},"author":9,"featured_media":103215,"parent":39458,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_helpful_pro_status":1,"footnotes":""},"categories":[404],"tags":[],"class_list":{"0":"post-102328","1":"page","2":"type-page","3":"status-publish","4":"has-post-thumbnail","6":"category-c-sharp"},"acf":[],"_links":{"self":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/102328","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/comments?post=102328"}],"version-history":[{"count":0,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/102328\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/pages\/39458"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media\/103215"}],"wp:attachment":[{"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/media?parent=102328"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/categories?post=102328"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretestinghelp.com\/wp-json\/wp\/v2\/tags?post=102328"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}