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: 0x020000B6 RID: 182
[Token(Token = "0x20000B6")]
[DebuggerTypeProxy(typeof(Expression.NewArrayExpressionProxy))]
public class NewArrayExpression : Expression
{
// Token: 0x060004E9 RID: 1257 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60004E9")]
[Address(RVA = "0x6BBB80", Offset = "0x6BA980", VA = "0x1806BBB80")]
internal NewArrayExpression(Type type, ReadOnlyCollection expressions)
{
}
// Token: 0x060004EA RID: 1258 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004EA")]
[Address(RVA = "0x6BBC00", Offset = "0x6BAA00", VA = "0x1806BBC00")]
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: 0x170000D2 RID: 210
// (get) Token: 0x060004EB RID: 1259 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D2")]
public sealed override Type Type
{
[Token(Token = "0x60004EB")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20", 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: 0x170000D3 RID: 211
// (get) Token: 0x060004EC RID: 1260 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000D3")]
public ReadOnlyCollection Expressions
{
[Token(Token = "0x60004EC")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
[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: 0x060004ED RID: 1261 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004ED")]
[Address(RVA = "0x5FAB40", Offset = "0x5F9940", VA = "0x1805FAB40", 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: 0x060004EE RID: 1262 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60004EE")]
[Address(RVA = "0x6BBCB0", Offset = "0x6BAAB0", VA = "0x1806BBCB0")]
public NewArrayExpression Update(IEnumerable expressions)
{
return null;
}
}
}