blob: b79aa844f887d1aff901933443c2df69c36a2679 (
plain)
| ofs | hex dump | ascii |
|---|
| 0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 10 00 00 00 10 08 06 00 00 00 1f f3 ff | .PNG........IHDR................ |
| 0020 | 61 00 00 00 09 70 48 59 73 00 00 0e c3 00 00 0e c3 01 c7 6f a8 64 00 00 00 70 49 44 41 54 78 5e | a....pHYs..........o.d...pIDATx^ |
| 0040 | dd 92 b1 0d 85 30 0c 44 99 83 29 58// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.ObjectModel;
namespace Tango.Scripting.Editors.Utils
{
/// <summary>
/// Provides immutable empty list instances.
/// </summary>
static class Empty<T>
{
public static readonly T[] Array = new T[0];
//public static readonly ReadOnlyCollection<T> ReadOnlyCollection = new ReadOnlyCollection<T>(Array);
}
}
|