Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

27 lines
1.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System
{
/// <summary>Supports a value type that can be assigned <see langword="null" />. This class cannot be inherited.</summary>
// Token: 0x0200018E RID: 398
[Token(Token = "0x200018E")]
[ComVisible(true)]
public static class Nullable
{
/// <summary>Returns the underlying type argument of the specified nullable type.</summary>
/// <param name="nullableType">A <see cref="T:System.Type" /> object that describes a closed generic nullable type.</param>
/// <returns>The type argument of the <paramref name="nullableType" /> parameter, if the <paramref name="nullableType" /> parameter is a closed generic nullable type; otherwise, <see langword="null" />.</returns>
/// <exception cref="T:System.ArgumentNullException">
/// <paramref name="nullableType" /> is <see langword="null" />.</exception>
// Token: 0x06000FB6 RID: 4022 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000FB6")]
[Address(RVA = "0x2D6EAE0", Offset = "0x2D6DAE0", VA = "0x182D6EAE0")]
public static Type GetUnderlyingType(Type nullableType)
{
return null;
}
}
}