summaryrefslogtreecommitdiff
path: root/CocoaSharp/Foundation/NSEnumerator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'CocoaSharp/Foundation/NSEnumerator.cs')
-rw-r--r--CocoaSharp/Foundation/NSEnumerator.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/CocoaSharp/Foundation/NSEnumerator.cs b/CocoaSharp/Foundation/NSEnumerator.cs
index 13458849..7e8ec0db 100644
--- a/CocoaSharp/Foundation/NSEnumerator.cs
+++ b/CocoaSharp/Foundation/NSEnumerator.cs
@@ -1 +1 @@
-using ObjectiveC; using System; using SharpSwift.Attributes; using System.Collections.Generic; namespace Foundation { /// <summary> /// NSEnumerator is an abstract class, instances of whose subclasses enumerate collections of other objects, such as arrays and dictionaries. /// </summary> /// <see cref="https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/Foundation/Classes/NSEnumerator_Class/index.html#//apple_ref/occ/cl/NSEnumerator"/> [iOSVersion(2)] public class NSEnumerator : NSObject//, AnyObject, NSFastEnumeration, NSObjectProtocol { /// <summary> /// Returns the next object from the collection being enumerated. /// </summary> [iOSVersion(2)] [Export("nextObject")] public AnyObject NextObject() { return default(AnyObject); } /// <summary> /// The array of unenumerated objects. (read-only) /// </summary> [iOSVersion(2)] [Export("allObjects")] public AnyObject[] AllObjects { get; private set; } } } \ No newline at end of file
+using ObjectiveC; using System; using SharpSwift.Attributes; using System.Collections.Generic; namespace Foundation { /// <summary> /// NSEnumerator is an abstract class, instances of whose subclasses enumerate collections of other objects, such as arrays and dictionaries. /// </summary> /// <see cref="https://developer.apple.com/library/prerelease/ios/documentation/Cocoa/Reference/Foundation/Classes/NSEnumerator_Class/index.html#//apple_ref/occ/cl/NSEnumerator"/> [iOSVersion(2)] [Export("")] public class NSEnumerator : NSObject//, AnyObject, CVarArgType, Equatable, Hashable, NSFastEnumeration, NSObjectProtocol, Printable { public NSEnumerator() { } /// <summary> /// Returns the next object from the collection being enumerated. /// </summary> [iOSVersion(2)] [Export("nextObject")] [return:Optional] public virtual AnyObject NextObject() { return default(AnyObject); } /// <summary> /// The array of unenumerated objects. (read-only) /// </summary> [iOSVersion(2)] [Export("allObjects")] public AnyObject[] AllObjects { get; private set; } } } \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback