singrdk/base/Imported/Bartok/System/NullReferenceException.cs

25 lines
631 B
C#

// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: NullReferenceException
**
** Purpose: Exception class for dereferencing a null reference.
**
=============================================================================*/
namespace System
{
using System;
using System.Runtime.CompilerServices;
//| <include path='docs/doc[@for="NullReferenceException"]/*' />
[RequiredByBartok]
public partial class NullReferenceException : SystemException {
}
}