Array of objects
array-of-objects-initialization.aspx
<%@ Page Language="C#" AutoEventWireup="true"%>
<%@ Import Namespace="System.IO" %>
<!DOCTYPE html>
<script runat="server">
protected void Button1_Click(object sender, System.EventArgs e)
{
object[] objectarray = new object[6];
objectarray[0] = "first element";
objectarray[1] = null;
objectarray[2] = true;
objectarray[3] = 2.99;
objectarray[4] = DateTime.Now;
objectarray[5] = 15;
Label1.Text = "object array and data type.........<br />";
foreach (object o in objectarray)
{
if(o != null)
{
Label1.Text += o.ToString() + " = ";
Label1.Text += o.GetType() + "<br />";
}
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>c# example - array of objects</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2 style="color:DarkBlue; font-style:italic;">
c# example - array of objects
</h2>
<hr width="550" align="left" color="LightBlue" />
<asp:Label
ID="Label1"
runat="server"
Font-Size="Large"
>
</asp:Label>
<br /><br />
<asp:Button
ID="Button1"
runat="server"
Text="array of objects"
OnClick="Button1_Click"
Height="40"
Font-Bold="true"
/>
</div>
</form>
</body>
</html>

- How to convert a string array to a comma separated string
- How to convert a string array to a csv
- How to perform binary search on an array
- How to find all elements from an array that match the conditions
- How to perform foreach loop through an array elements
- How to get the first element of an array
- How to get the last element of an array
- Find index of last element from an array that match the conditions
- How to filter an array elements
- How to get the length of an array