17 lines
226 B
C#
17 lines
226 B
C#
#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
|