using System; using System.Collections; using Cpp2IlInjected; namespace System.ComponentModel { /// Represents a collection of objects. // Token: 0x02000176 RID: 374 [Token(Token = "0x2000176")] public class PropertyDescriptorCollection : ICollection, IEnumerable, IList, IDictionary { /// Initializes a new instance of the class. /// An array of type that provides the properties for this collection. // Token: 0x0600097D RID: 2429 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600097D")] [Address(RVA = "0xC17090", Offset = "0xC16090", VA = "0x180C17090")] public PropertyDescriptorCollection(PropertyDescriptor[] properties) { } /// Initializes a new instance of the class, which is optionally read-only. /// An array of type that provides the properties for this collection. /// If , specifies that the collection cannot be modified. // Token: 0x0600097E RID: 2430 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600097E")] [Address(RVA = "0xC17110", Offset = "0xC16110", VA = "0x180C17110")] public PropertyDescriptorCollection(PropertyDescriptor[] properties, bool readOnly) { } // Token: 0x0600097F RID: 2431 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600097F")] [Address(RVA = "0xC16FD0", Offset = "0xC15FD0", VA = "0x180C16FD0")] private PropertyDescriptorCollection(PropertyDescriptor[] properties, int propCount, string[] namedSort, IComparer comparer) { } /// Gets the number of property descriptors in the collection. /// The number of property descriptors in the collection. // Token: 0x170001D9 RID: 473 // (get) Token: 0x06000980 RID: 2432 RVA: 0x00005D48 File Offset: 0x00003F48 [Token(Token = "0x170001D9")] public int Count { [Token(Token = "0x6000980")] [Address(RVA = "0x471180", Offset = "0x470180", VA = "0x180471180")] get { return 0; } } /// Gets or sets the at the specified index number. /// The zero-based index of the to get or set. /// The with the specified index number. /// The parameter is not a valid index for . // Token: 0x170001DA RID: 474 [Token(Token = "0x170001DA")] public virtual PropertyDescriptor this[int index] { [Token(Token = "0x6000981")] [Address(RVA = "0xC171B0", Offset = "0xC161B0", VA = "0x180C171B0", Slot = "31")] get { return null; } } /// Gets or sets the with the specified name. /// The name of the to get from the collection. /// The with the specified name, or if the property does not exist. // Token: 0x170001DB RID: 475 [Token(Token = "0x170001DB")] public virtual PropertyDescriptor this[string name] { [Token(Token = "0x6000982")] [Address(RVA = "0xC17190", Offset = "0xC16190", VA = "0x180C17190", Slot = "32")] get { return null; } } /// Adds the specified to the collection. /// The to add to the collection. /// The index of the that was added to the collection. /// The collection is read-only. // Token: 0x06000983 RID: 2435 RVA: 0x00005D60 File Offset: 0x00003F60 [Token(Token = "0x6000983")] [Address(RVA = "0xC14DD0", Offset = "0xC13DD0", VA = "0x180C14DD0")] public int Add(PropertyDescriptor value) { return 0; } /// Removes all objects from the collection. /// The collection is read-only. // Token: 0x06000984 RID: 2436 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000984")] [Address(RVA = "0xC14EC0", Offset = "0xC13EC0", VA = "0x180C14EC0")] public void Clear() { } /// Returns whether the collection contains the given . /// The to find in the collection. /// /// if the collection contains the given ; otherwise, . // Token: 0x06000985 RID: 2437 RVA: 0x00005D78 File Offset: 0x00003F78 [Token(Token = "0x6000985")] [Address(RVA = "0xC14F30", Offset = "0xC13F30", VA = "0x180C14F30")] public bool Contains(PropertyDescriptor value) { return default(bool); } /// Copies the entire collection to an array, starting at the specified index number. /// An array of objects to copy elements of the collection to. /// The index of the parameter at which copying begins. // Token: 0x06000986 RID: 2438 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000986")] [Address(RVA = "0xC14F90", Offset = "0xC13F90", VA = "0x180C14F90", Slot = "4")] public void CopyTo(Array array, int index) { } // Token: 0x06000987 RID: 2439 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000987")] [Address(RVA = "0xC14FE0", Offset = "0xC13FE0", VA = "0x180C14FE0")] private void EnsurePropsOwned() { } // Token: 0x06000988 RID: 2440 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000988")] [Address(RVA = "0xC15080", Offset = "0xC14080", VA = "0x180C15080")] private void EnsureSize(int sizeNeeded) { } /// Returns the with the specified name, using a Boolean to indicate whether to ignore case. /// The name of the to return from the collection. /// /// if you want to ignore the case of the property name; otherwise, . /// A with the specified name, or if the property does not exist. // Token: 0x06000989 RID: 2441 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000989")] [Address(RVA = "0xC151A0", Offset = "0xC141A0", VA = "0x180C151A0", Slot = "33")] public virtual PropertyDescriptor Find(string name, bool ignoreCase) { return null; } /// Returns the index of the given . /// The to return the index of. /// The index of the given . // Token: 0x0600098A RID: 2442 RVA: 0x00005D90 File Offset: 0x00003F90 [Token(Token = "0x600098A")] [Address(RVA = "0xC15610", Offset = "0xC14610", VA = "0x180C15610")] public int IndexOf(PropertyDescriptor value) { return 0; } /// Adds the to the collection at the specified index number. /// The index at which to add the parameter to the collection. /// The to add to the collection. /// The collection is read-only. // Token: 0x0600098B RID: 2443 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600098B")] [Address(RVA = "0xC15670", Offset = "0xC14670", VA = "0x180C15670")] public void Insert(int index, PropertyDescriptor value) { } /// Removes the specified from the collection. /// The to remove from the collection. /// The collection is read-only. // Token: 0x0600098C RID: 2444 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600098C")] [Address(RVA = "0xC15D60", Offset = "0xC14D60", VA = "0x180C15D60")] public void Remove(PropertyDescriptor value) { } /// Removes the at the specified index from the collection. /// The index of the to remove from the collection. /// The collection is read-only. // Token: 0x0600098D RID: 2445 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x600098D")] [Address(RVA = "0xC15C90", Offset = "0xC14C90", VA = "0x180C15C90")] public void RemoveAt(int index) { } /// Sorts the members of this collection, using the default sort for this collection, which is usually alphabetical. /// A new that contains the sorted objects. // Token: 0x0600098E RID: 2446 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600098E")] [Address(RVA = "0xC15F60", Offset = "0xC14F60", VA = "0x180C15F60", Slot = "34")] public virtual PropertyDescriptorCollection Sort() { return null; } /// Sorts the members of this collection. The specified order is applied first, followed by the default sort for this collection, which is usually alphabetical. /// An array of strings describing the order in which to sort the objects in this collection. /// A new that contains the sorted objects. // Token: 0x0600098F RID: 2447 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600098F")] [Address(RVA = "0xC16000", Offset = "0xC15000", VA = "0x180C16000", Slot = "35")] public virtual PropertyDescriptorCollection Sort(string[] names) { return null; } /// Sorts the members of this collection. The specified order is applied first, followed by the sort using the specified . /// An array of strings describing the order in which to sort the objects in this collection. /// A comparer to use to sort the objects in this collection. /// A new that contains the sorted objects. // Token: 0x06000990 RID: 2448 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000990")] [Address(RVA = "0xC15E20", Offset = "0xC14E20", VA = "0x180C15E20", Slot = "36")] public virtual PropertyDescriptorCollection Sort(string[] names, IComparer comparer) { return null; } /// Sorts the members of this collection, using the specified . /// A comparer to use to sort the objects in this collection. /// A new that contains the sorted objects. // Token: 0x06000991 RID: 2449 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000991")] [Address(RVA = "0xC15EC0", Offset = "0xC14EC0", VA = "0x180C15EC0", Slot = "37")] public virtual PropertyDescriptorCollection Sort(IComparer comparer) { return null; } /// Sorts the members of this collection. The specified order is applied first, followed by the default sort for this collection, which is usually alphabetical. /// An array of strings describing the order in which to sort the objects in this collection. // Token: 0x06000992 RID: 2450 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000992")] [Address(RVA = "0xC158E0", Offset = "0xC148E0", VA = "0x180C158E0")] protected void InternalSort(string[] names) { } /// Sorts the members of this collection, using the specified . /// A comparer to use to sort the objects in this collection. // Token: 0x06000993 RID: 2451 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000993")] [Address(RVA = "0xC15790", Offset = "0xC14790", VA = "0x180C15790")] protected void InternalSort(IComparer sorter) { } /// Returns an enumerator for this class. /// An enumerator of type . // Token: 0x06000994 RID: 2452 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000994")] [Address(RVA = "0xC15560", Offset = "0xC14560", VA = "0x180C15560", Slot = "38")] public virtual IEnumerator GetEnumerator() { return null; } /// Gets the number of elements contained in the collection. /// The number of elements contained in the collection. // Token: 0x170001DC RID: 476 // (get) Token: 0x06000995 RID: 2453 RVA: 0x00005DA8 File Offset: 0x00003FA8 [Token(Token = "0x170001DC")] int ICollection.Count { [Token(Token = "0x6000995")] [Address(RVA = "0x471180", Offset = "0x470180", VA = "0x180471180", Slot = "5")] get { return 0; } } /// Gets a value indicating whether access to the collection is synchronized (thread safe). /// /// if access to the collection is synchronized (thread safe); otherwise, . // Token: 0x170001DD RID: 477 // (get) Token: 0x06000996 RID: 2454 RVA: 0x00005DC0 File Offset: 0x00003FC0 [Token(Token = "0x170001DD")] bool ICollection.IsSynchronized { [Token(Token = "0x6000996")] [Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "7")] get { return default(bool); } } /// Gets an object that can be used to synchronize access to the collection. /// An object that can be used to synchronize access to the collection. // Token: 0x170001DE RID: 478 // (get) Token: 0x06000997 RID: 2455 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001DE")] object ICollection.SyncRoot { [Token(Token = "0x6000997")] [Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "6")] get { return null; } } /// Adds an element with the provided key and value to the . /// The to use as the key of the element to add. /// The to use as the value of the element to add. /// The collection is read-only. /// /// is . // Token: 0x06000998 RID: 2456 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000998")] [Address(RVA = "0xC160A0", Offset = "0xC150A0", VA = "0x180C160A0", Slot = "25")] void IDictionary.Add(object key, object value) { } /// Removes all elements from the . // Token: 0x06000999 RID: 2457 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000999")] [Address(RVA = "0xC14EC0", Offset = "0xC13EC0", VA = "0x180C14EC0", Slot = "26")] void IDictionary.Clear() { } /// Determines whether the contains an element with the specified key. /// The key to locate in the . /// /// if the contains an element with the key; otherwise, . // Token: 0x0600099A RID: 2458 RVA: 0x00005DD8 File Offset: 0x00003FD8 [Token(Token = "0x600099A")] [Address(RVA = "0xC16160", Offset = "0xC15160", VA = "0x180C16160", Slot = "24")] bool IDictionary.Contains(object key) { return default(bool); } /// Returns an enumerator for this class. /// An enumerator of type . // Token: 0x0600099B RID: 2459 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600099B")] [Address(RVA = "0xC16200", Offset = "0xC15200", VA = "0x180C16200", Slot = "29")] IDictionaryEnumerator IDictionary.GetEnumerator() { return null; } /// Gets a value indicating whether the has a fixed size. /// /// if the has a fixed size; otherwise, . // Token: 0x170001DF RID: 479 // (get) Token: 0x0600099C RID: 2460 RVA: 0x00005DF0 File Offset: 0x00003FF0 [Token(Token = "0x170001DF")] bool IDictionary.IsFixedSize { [Token(Token = "0x600099C")] [Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", Slot = "28")] get { return default(bool); } } /// Gets a value indicating whether the is read-only. /// /// if the is read-only; otherwise, . // Token: 0x170001E0 RID: 480 // (get) Token: 0x0600099D RID: 2461 RVA: 0x00005E08 File Offset: 0x00004008 [Token(Token = "0x170001E0")] bool IDictionary.IsReadOnly { [Token(Token = "0x600099D")] [Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", Slot = "27")] get { return default(bool); } } /// Gets or sets the element with the specified key. /// The key of the element to get or set. /// The element with the specified key. // Token: 0x170001E1 RID: 481 [Token(Token = "0x170001E1")] object IDictionary.this[object key] { [Token(Token = "0x600099E")] [Address(RVA = "0xC16300", Offset = "0xC15300", VA = "0x180C16300", Slot = "20")] get { return null; } [Token(Token = "0x600099F")] [Address(RVA = "0xC16560", Offset = "0xC15560", VA = "0x180C16560", Slot = "21")] set { } } /// Gets an containing the keys of the . /// An containing the keys of the . // Token: 0x170001E2 RID: 482 // (get) Token: 0x060009A0 RID: 2464 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001E2")] ICollection IDictionary.Keys { [Token(Token = "0x60009A0")] [Address(RVA = "0xC16390", Offset = "0xC15390", VA = "0x180C16390", Slot = "22")] get { return null; } } /// Gets an containing the values in the . /// An containing the values in the . // Token: 0x170001E3 RID: 483 // (get) Token: 0x060009A1 RID: 2465 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001E3")] ICollection IDictionary.Values { [Token(Token = "0x60009A1")] [Address(RVA = "0xC164A0", Offset = "0xC154A0", VA = "0x180C164A0", Slot = "23")] get { return null; } } /// Removes the element with the specified key from the . /// The key of the element to remove. // Token: 0x060009A2 RID: 2466 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60009A2")] [Address(RVA = "0xC16260", Offset = "0xC15260", VA = "0x180C16260", Slot = "30")] void IDictionary.Remove(object key) { } /// Returns an for the . /// An for the . // Token: 0x060009A3 RID: 2467 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60009A3")] [Address(RVA = "0x67F8D0", Offset = "0x67E8D0", VA = "0x18067F8D0", Slot = "8")] IEnumerator IEnumerable.GetEnumerator() { return null; } /// Adds an item to the . /// The item to add to the collection. /// The position into which the new element was inserted. // Token: 0x060009A4 RID: 2468 RVA: 0x00005E20 File Offset: 0x00004020 [Token(Token = "0x60009A4")] [Address(RVA = "0xC16890", Offset = "0xC15890", VA = "0x180C16890", Slot = "11")] int IList.Add(object value) { return 0; } /// Removes all items from the collection. /// The collection is read-only. // Token: 0x060009A5 RID: 2469 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60009A5")] [Address(RVA = "0xC14EC0", Offset = "0xC13EC0", VA = "0x180C14EC0", Slot = "13")] void IList.Clear() { } /// Determines whether the collection contains a specific value. /// The item to locate in the collection. /// /// if the item is found in the collection; otherwise, . // Token: 0x060009A6 RID: 2470 RVA: 0x00005E38 File Offset: 0x00004038 [Token(Token = "0x60009A6")] [Address(RVA = "0xC16930", Offset = "0xC15930", VA = "0x180C16930", Slot = "12")] bool IList.Contains(object value) { return default(bool); } /// Determines the index of a specified item in the collection. /// The item to locate in the collection. /// The index of if found in the list, otherwise -1. // Token: 0x060009A7 RID: 2471 RVA: 0x00005E50 File Offset: 0x00004050 [Token(Token = "0x60009A7")] [Address(RVA = "0xC16A00", Offset = "0xC15A00", VA = "0x180C16A00", Slot = "16")] int IList.IndexOf(object value) { return 0; } /// Inserts an item into the collection at a specified index. /// The zero-based index at which should be inserted. /// The item to insert into the collection. /// The collection is read-only. // Token: 0x060009A8 RID: 2472 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60009A8")] [Address(RVA = "0xC16AD0", Offset = "0xC15AD0", VA = "0x180C16AD0", Slot = "17")] void IList.Insert(int index, object value) { } /// Gets a value indicating whether the collection is read-only. /// /// if the collection is read-only; otherwise, . // Token: 0x170001E4 RID: 484 // (get) Token: 0x060009A9 RID: 2473 RVA: 0x00005E68 File Offset: 0x00004068 [Token(Token = "0x170001E4")] bool IList.IsReadOnly { [Token(Token = "0x60009A9")] [Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", Slot = "14")] get { return default(bool); } } /// Gets a value indicating whether the collection has a fixed size. /// /// if the collection has a fixed size; otherwise, . // Token: 0x170001E5 RID: 485 // (get) Token: 0x060009AA RID: 2474 RVA: 0x00005E80 File Offset: 0x00004080 [Token(Token = "0x170001E5")] bool IList.IsFixedSize { [Token(Token = "0x60009AA")] [Address(RVA = "0x6B4BD0", Offset = "0x6B3BD0", VA = "0x1806B4BD0", Slot = "15")] get { return default(bool); } } /// Removes the first occurrence of a specified value from the collection. /// The item to remove from the collection. /// The collection is read-only. // Token: 0x060009AB RID: 2475 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60009AB")] [Address(RVA = "0xC16C60", Offset = "0xC15C60", VA = "0x180C16C60", Slot = "18")] void IList.Remove(object value) { } /// Removes the item at the specified index. /// The zero-based index of the item to remove. /// The collection is read-only. // Token: 0x060009AC RID: 2476 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60009AC")] [Address(RVA = "0xC16C50", Offset = "0xC15C50", VA = "0x180C16C50", Slot = "19")] void IList.RemoveAt(int index) { } /// Gets or sets an item from the collection at a specified index. /// The zero-based index of the item to get or set. /// The element at the specified index. /// The collection is read-only. /// /// is not a . /// /// is less than 0. /// -or- /// is equal to or greater than . // Token: 0x170001E6 RID: 486 [Token(Token = "0x170001E6")] object IList.this[int index] { [Token(Token = "0x60009AD")] [Address(RVA = "0xC16D90", Offset = "0xC15D90", VA = "0x180C16D90", Slot = "9")] get { return null; } [Token(Token = "0x60009AE")] [Address(RVA = "0xC16DB0", Offset = "0xC15DB0", VA = "0x180C16DB0", Slot = "10")] set { } } /// Specifies an empty collection that you can use instead of creating a new one with no items. This field is read-only. // Token: 0x04000588 RID: 1416 [Token(Token = "0x4000588")] public static readonly PropertyDescriptorCollection Empty; // Token: 0x04000589 RID: 1417 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000589")] private IDictionary cachedFoundProperties; // Token: 0x0400058A RID: 1418 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400058A")] private bool cachedIgnoreCase; // Token: 0x0400058B RID: 1419 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400058B")] private PropertyDescriptor[] properties; // Token: 0x0400058C RID: 1420 [FieldOffset(Offset = "0x28")] [Token(Token = "0x400058C")] private int propCount; // Token: 0x0400058D RID: 1421 [FieldOffset(Offset = "0x30")] [Token(Token = "0x400058D")] private string[] namedSort; // Token: 0x0400058E RID: 1422 [FieldOffset(Offset = "0x38")] [Token(Token = "0x400058E")] private IComparer comparer; // Token: 0x0400058F RID: 1423 [FieldOffset(Offset = "0x40")] [Token(Token = "0x400058F")] private bool propsOwned; // Token: 0x04000590 RID: 1424 [FieldOffset(Offset = "0x41")] [Token(Token = "0x4000590")] private bool needSort; // Token: 0x04000591 RID: 1425 [FieldOffset(Offset = "0x42")] [Token(Token = "0x4000591")] private bool readOnly; // Token: 0x02000177 RID: 375 [Token(Token = "0x2000177")] private class PropertyDescriptorEnumerator : IDictionaryEnumerator, IEnumerator { // Token: 0x060009B0 RID: 2480 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60009B0")] [Address(RVA = "0x4EDE60", Offset = "0x4ECE60", VA = "0x1804EDE60")] public PropertyDescriptorEnumerator(PropertyDescriptorCollection owner) { } // Token: 0x170001E7 RID: 487 // (get) Token: 0x060009B1 RID: 2481 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001E7")] public object Current { [Token(Token = "0x60009B1")] [Address(RVA = "0xC17290", Offset = "0xC16290", VA = "0x180C17290", Slot = "8")] get { return null; } } // Token: 0x170001E8 RID: 488 // (get) Token: 0x060009B2 RID: 2482 RVA: 0x00005E98 File Offset: 0x00004098 [Token(Token = "0x170001E8")] public DictionaryEntry Entry { [Token(Token = "0x60009B2")] [Address(RVA = "0xC17340", Offset = "0xC16340", VA = "0x180C17340", Slot = "6")] get { return default(DictionaryEntry); } } // Token: 0x170001E9 RID: 489 // (get) Token: 0x060009B3 RID: 2483 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001E9")] public object Key { [Token(Token = "0x60009B3")] [Address(RVA = "0xC173C0", Offset = "0xC163C0", VA = "0x180C173C0", Slot = "4")] get { return null; } } // Token: 0x170001EA RID: 490 // (get) Token: 0x060009B4 RID: 2484 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170001EA")] public object Value { [Token(Token = "0x60009B4")] [Address(RVA = "0xC173C0", Offset = "0xC163C0", VA = "0x180C173C0", Slot = "5")] get { return null; } } // Token: 0x060009B5 RID: 2485 RVA: 0x00005EB0 File Offset: 0x000040B0 [Token(Token = "0x60009B5")] [Address(RVA = "0xC17250", Offset = "0xC16250", VA = "0x180C17250", Slot = "7")] public bool MoveNext() { return default(bool); } // Token: 0x060009B6 RID: 2486 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60009B6")] [Address(RVA = "0x4EDE50", Offset = "0x4ECE50", VA = "0x1804EDE50", Slot = "9")] public void Reset() { } // Token: 0x04000592 RID: 1426 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000592")] private PropertyDescriptorCollection owner; // Token: 0x04000593 RID: 1427 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000593")] private int index; } } }