17 lines
226 B
C#
Raw Normal View History

#if MONOTOUCH
namespace MonoTouch
{
// Exists only not to break existing source code due to broken C# namespace rules
// which allow using for empty namespace
sealed class Dummy
{
private Dummy ()
{
}
}
}
#endif