C# 中的静态或固定长度数组是什么?
静态数组是一种大小固定的数据结构。让我们看看 C# 中静态数组的一个示例。
这是一个静态字符串数组。这里的数据(即固定)保持不变 −
static string[] _fruits = new string[] {
"apple",
"mango"
};现在,让我们看看在 C# 中创建和访问静态数组的完整示例 −
示例
using System;
class Demo {
static void Main() {
foreach (string fruits in Program.Fruits) {
Console.WriteLine(fruits);
}
}
}
public static class Program {
static string[] _fruits = new string[] {
"apple",
"mango"
};
public static string[] Fruits {
get {
return _fruits;
}
}
}
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP