System.Array
E697476
System.Array is the fundamental base class in .NET for all arrays, providing common methods and properties for creating, manipulating, and accessing fixed-size collections of elements.
All labels observed (1)
| Label | Occurrences |
|---|---|
| System.Array canonical | 1 |
How this entity was disambiguated
This entity first appeared as the object of triple T7897292 — resolving that mention is where its identity was fixed. The disambiguator weighed these candidate entities and picked the highlighted one (or “None”, minting a new entity). This is how homonymy is resolved: the same surface form can point to different entities.
Target entity: System.Array Context triple: [System, containsType, System.Array]
-
A.
System.Collections
System.Collections is a .NET namespace that provides fundamental interfaces and classes for working with non-generic collections such as lists, queues, arrays, and dictionaries.
-
B.
System.Net
System.Net is a .NET namespace that provides classes for network programming, including HTTP communication, sockets, and other internet protocol support.
-
C.
System.IO
System.IO is a .NET namespace that provides types for reading and writing data to streams, files, and directories.
-
D.
System.Reflection
System.Reflection is a .NET namespace that provides types and APIs for inspecting and interacting with metadata about assemblies, modules, and types at runtime.
-
E.
System.Threading
System.Threading is a .NET namespace that provides types and APIs for working with threads, tasks, synchronization, and concurrent programming.
- F. None of above. chosen
- G. Unsure - the case is ambiguous/there is not enough information to decide.
Target entity: System.Array Target entity description: System.Array is the fundamental base class in .NET for all arrays, providing common methods and properties for creating, manipulating, and accessing fixed-size collections of elements.
-
A.
System.Collections
System.Collections is a .NET namespace that provides fundamental interfaces and classes for working with non-generic collections such as lists, queues, arrays, and dictionaries.
-
B.
System.Net
System.Net is a .NET namespace that provides classes for network programming, including HTTP communication, sockets, and other internet protocol support.
-
C.
System.IO
System.IO is a .NET namespace that provides types for reading and writing data to streams, files, and directories.
-
D.
System.Reflection
System.Reflection is a .NET namespace that provides types and APIs for inspecting and interacting with metadata about assemblies, modules, and types at runtime.
-
E.
System.Threading
System.Threading is a .NET namespace that provides types and APIs for working with threads, tasks, synchronization, and concurrent programming.
- F. None of above. chosen
Statements (87)
| Predicate | Object |
|---|---|
| instanceOf |
.NET type
ⓘ
Class ⓘ |
| assembly |
System.Runtime.dll
NERFINISHED
ⓘ
mscorlib.dll NERFINISHED ⓘ |
| baseClass | System.Object NERFINISHED ⓘ |
| canHaveNonZeroLowerBound | true for some .NET languages and APIs ⓘ |
| category | Fundamental .NET base class ⓘ |
| collectionSize | Fixed size ⓘ |
| documentationUrl | https://learn.microsoft.com/dotnet/api/system.array ⓘ |
| elementTypeConstraint | Can hold any .NET type as element ⓘ |
| hasMethod |
AsReadOnly<T>(T[])
ⓘ
BinarySearch(Array, Object) ⓘ BinarySearch(Array, Object, IComparer) ⓘ Clear(Array, Int32, Int32) ⓘ Clone() ⓘ ConvertAll<TInput, TOutput>(TInput[], Converter<TInput, TOutput>) ⓘ Copy(Array, Array, Int32) ⓘ Copy(Array, Int32, Array, Int32, Int32) ⓘ CreateInstance(Type, Int32) ⓘ CreateInstance(Type, Int32, Int32) ⓘ CreateInstance(Type, Int32[]) ⓘ Exists<T>(T[], Predicate<T>) ⓘ Find<T>(T[], Predicate<T>) ⓘ FindAll<T>(T[], Predicate<T>) ⓘ FindIndex<T>(T[], Predicate<T>) ⓘ FindLast<T>(T[], Predicate<T>) ⓘ FindLastIndex<T>(T[], Predicate<T>) ⓘ ForEach<T>(T[], Action<T>) ⓘ GetEnumerator() ⓘ GetLength(Int32) ⓘ GetLongLength(Int32) ⓘ GetLowerBound(Int32) ⓘ GetUpperBound(Int32) ⓘ GetValue(Int32) ⓘ GetValue(Int32[]) ⓘ GetValue(Int64) ⓘ IndexOf(Array, Object) ⓘ IndexOf(Array, Object, Int32) ⓘ IndexOf(Array, Object, Int32, Int32) ⓘ LastIndexOf(Array, Object) ⓘ LastIndexOf(Array, Object, Int32) ⓘ LastIndexOf(Array, Object, Int32, Int32) ⓘ Resize<T>(ref T[], Int32) ⓘ Reverse(Array) ⓘ Reverse(Array, Int32, Int32) ⓘ SetValue(Object, Int32) ⓘ SetValue(Object, Int32[]) ⓘ SetValue(Object, Int64) ⓘ Sort(Array) ⓘ Sort(Array, Array) ⓘ Sort(Array, Int32, Int32) ⓘ Sort(Array, Int32, Int32, IComparer) ⓘ TrueForAll<T>(T[], Predicate<T>) ⓘ |
| hasProperty |
IsFixedSize
ⓘ
IsReadOnly ⓘ IsSynchronized ⓘ Length ⓘ LongLength ⓘ Rank ⓘ SyncRoot ⓘ |
| implementsInterface |
System.Collections.Generic.ICollection<T>
ⓘ
System.Collections.Generic.IEnumerable<T> ⓘ System.Collections.Generic.IList<T> ⓘ System.Collections.Generic.IReadOnlyCollection<T> ⓘ System.Collections.Generic.IReadOnlyList<T> ⓘ System.Collections.ICollection NERFINISHED ⓘ System.Collections.IEnumerable NERFINISHED ⓘ System.Collections.IList NERFINISHED ⓘ System.Collections.IStructuralComparable NERFINISHED ⓘ System.Collections.IStructuralEquatable NERFINISHED ⓘ System.ICloneable NERFINISHED ⓘ |
| introducedIn | .NET Framework 1.0 NERFINISHED ⓘ |
| isAbstract | true ⓘ |
| isBaseClassFor |
All multi-dimensional arrays in .NET
ⓘ
All single-dimensional arrays in .NET ⓘ All vector arrays (SZArray) in .NET ⓘ |
| isCLSCompliant | true ⓘ |
| isPublic | true ⓘ |
| isReferenceType | true ⓘ |
| isSealed | true ⓘ |
| isZeroIndexed | true in C# ⓘ |
| namespace | System NERFINISHED ⓘ |
| supportsFeature |
Jagged arrays as arrays of arrays
ⓘ
Multi-dimensional arrays ⓘ Single-dimensional arrays ⓘ |
| threadSafety | Enumeration is not inherently thread-safe ⓘ |
| usedFor | Storing fixed-size collections of elements ⓘ |
How these facts were elicited
The pipeline generated the facts above by prompting gpt-5.1 with this entity's name + description and the instruction below.
You are a knowledge base construction expert. Given a subject entity and a description of it, return factual statements that you know for the subject as a JSON list of dictionaries(triples), where keys must be "subject", "predicate" and "object". The number of facts may be very high, between 25 to 50 or more, for very popular subjects. For less popular subjects, the number of facts can be very low, like 5 or 10. # Requirements - If you don't know the subject at all, return an empty list. - If the subject is not a named entity, return an empty list. - Include at least one triple where predicate is "instanceOf". - Do not get too wordy. - Separate several objects into multiple triples with one object.
Subject: System.Array Description of subject: System.Array is the fundamental base class in .NET for all arrays, providing common methods and properties for creating, manipulating, and accessing fixed-size collections of elements.
Referenced by (1)
Full triples — surface form annotated when it differs from this entity's canonical label.