24 lines
575 B
C#
24 lines
575 B
C#
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Microsoft Research Singularity
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
using System;
|
||
|
|
||
|
|
||
|
namespace Microsoft.SingSharp.Reflection{
|
||
|
|
||
|
class IClassDummy {}
|
||
|
class IInterfaceDummy {}
|
||
|
class IStructDummy {}
|
||
|
interface IFieldDummy {}
|
||
|
interface IMethodDummy {}
|
||
|
interface IPropertyDummy {}
|
||
|
interface IAttributeDummy {}
|
||
|
|
||
|
class ForAllException : Exception {}
|
||
|
}
|