Files
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x02000187 RID: 391
[Token(Token = "0x2000187")]
[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: 0x06000F80 RID: 3968 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6000F80")]
[Address(RVA = "0x2602DC0", Offset = "0x2601BC0", VA = "0x182602DC0")]
public static Type GetUnderlyingType(Type nullableType)
{
return null;
}
}
}