oh dear
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
using System;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Diagnostics;
|
||||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Linq.Expressions
|
||||
{
|
||||
/// <summary>Represents a control expression that handles multiple selections by passing control to <see cref="T:System.Linq.Expressions.SwitchCase" />.</summary>
|
||||
// Token: 0x020000C3 RID: 195
|
||||
[Token(Token = "0x20000C3")]
|
||||
[DebuggerTypeProxy(typeof(Expression.SwitchExpressionProxy))]
|
||||
public sealed class SwitchExpression : Expression
|
||||
{
|
||||
/// <summary>Gets the test for the switch.</summary>
|
||||
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> object representing the test for the switch.</returns>
|
||||
// Token: 0x17000114 RID: 276
|
||||
// (get) Token: 0x06000575 RID: 1397 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000114")]
|
||||
public Expression SwitchValue
|
||||
{
|
||||
[Token(Token = "0x6000575")]
|
||||
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the collection of <see cref="T:System.Linq.Expressions.SwitchCase" /> objects for the switch.</summary>
|
||||
/// <returns>The collection of <see cref="T:System.Linq.Expressions.SwitchCase" /> objects.</returns>
|
||||
// Token: 0x17000115 RID: 277
|
||||
// (get) Token: 0x06000576 RID: 1398 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000115")]
|
||||
public ReadOnlyCollection<SwitchCase> Cases
|
||||
{
|
||||
[Token(Token = "0x6000576")]
|
||||
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the test for the switch.</summary>
|
||||
/// <returns>The <see cref="T:System.Linq.Expressions.Expression" /> object representing the test for the switch.</returns>
|
||||
// Token: 0x17000116 RID: 278
|
||||
// (get) Token: 0x06000577 RID: 1399 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000116")]
|
||||
public Expression DefaultBody
|
||||
{
|
||||
[Token(Token = "0x6000577")]
|
||||
[Address(RVA = "0x3F6400", Offset = "0x3F5200", VA = "0x1803F6400")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the equality comparison method, if any.</summary>
|
||||
/// <returns>The <see cref="T:System.Reflection.MethodInfo" /> object representing the equality comparison method.</returns>
|
||||
// Token: 0x17000117 RID: 279
|
||||
// (get) Token: 0x06000578 RID: 1400 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000117")]
|
||||
public MethodInfo Comparison
|
||||
{
|
||||
[Token(Token = "0x6000578")]
|
||||
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
|
||||
[CompilerGenerated]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user