Files
UnityExplorer_Fix/src/Inspectors/Reflection/CacheObject/CacheEnumerated.cs

27 lines
769 B
C#
Raw Normal View History

//using System;
//using System.Collections;
//using System.Collections.Generic;
//using System.Linq;
//using System.Text;
//using UnityExplorer.UI;
2020-10-08 06:15:42 +11:00
//namespace UnityExplorer.Inspectors.Reflection
//{
// public class CacheEnumerated : CacheObjectBase
// {
// public int Index { get; set; }
// public IList RefIList { get; set; }
// public InteractiveEnumerable ParentEnumeration { get; set; }
2020-10-08 06:15:42 +11:00
// public override bool CanWrite => RefIList != null && ParentEnumeration.OwnerCacheObject.CanWrite;
2020-10-08 06:15:42 +11:00
// public override void SetValue()
// {
// RefIList[Index] = IValue.Value;
// ParentEnumeration.Value = RefIList;
2020-10-08 06:15:42 +11:00
// ParentEnumeration.OwnerCacheObject.SetValue();
// }
// }
//}