28 lines
635 B
C#
28 lines
635 B
C#
// ==++==
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// ==--==
|
|
/*=============================================================================
|
|
**
|
|
** Class: Assembly
|
|
**
|
|
** Purpose: For Assembly-related stuff.
|
|
**
|
|
=============================================================================*/
|
|
|
|
namespace System.Reflection
|
|
{
|
|
|
|
using System;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
//| <include path='docs/doc[@for="Assembly"]/*' />
|
|
[RequiredByBartok]
|
|
public partial class Assembly
|
|
{
|
|
[RequiredByBartok]
|
|
private AssemblyName assemblyName;
|
|
}
|
|
}
|