using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using System.Runtime.CompilerServices; using Cpp2IlInjected; namespace System.Linq.Expressions { /// Represents creating a new array and possibly initializing the elements of the new array. // Token: 0x020000C1 RID: 193 [Token(Token = "0x20000C1")] [DebuggerTypeProxy(typeof(Expression.NewArrayExpressionProxy))] public class NewArrayExpression : Expression { // Token: 0x06000575 RID: 1397 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000575")] [Address(RVA = "0x10D87A0", Offset = "0x10D77A0", VA = "0x1810D87A0")] internal NewArrayExpression(Type type, ReadOnlyCollection expressions) { } // Token: 0x06000576 RID: 1398 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000576")] [Address(RVA = "0x10D8850", Offset = "0x10D7850", VA = "0x1810D8850")] internal static NewArrayExpression Make(ExpressionType nodeType, Type type, ReadOnlyCollection expressions) { return null; } /// Gets the static type of the expression that this represents. /// The that represents the static type of the expression. // Token: 0x170000F2 RID: 242 // (get) Token: 0x06000577 RID: 1399 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000F2")] public sealed override Type Type { [Token(Token = "0x6000577")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "5")] [CompilerGenerated] get { return null; } } /// Gets the bounds of the array if the value of the property is , or the values to initialize the elements of the new array if the value of the property is . /// A of objects which represent either the bounds of the array or the initialization values. // Token: 0x170000F3 RID: 243 // (get) Token: 0x06000578 RID: 1400 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000F3")] public ReadOnlyCollection Expressions { [Token(Token = "0x6000578")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")] [CompilerGenerated] get { return null; } } /// Dispatches to the specific visit method for this node type. For example, calls the . /// The visitor to visit this node with. /// The result of visiting this node. // Token: 0x06000579 RID: 1401 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000579")] [Address(RVA = "0x10D8820", Offset = "0x10D7820", VA = "0x1810D8820", Slot = "9")] protected internal override Expression Accept(ExpressionVisitor visitor) { return null; } /// Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression. /// The property of the result. /// This expression if no children are changed or an expression with the updated children. // Token: 0x0600057A RID: 1402 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600057A")] [Address(RVA = "0x10D8900", Offset = "0x10D7900", VA = "0x1810D8900")] public NewArrayExpression Update(IEnumerable expressions) { return null; } } }