Alexandria.Engines.Unreal.Reference.IndexStorageSizeBytes C# (CSharp) Method

IndexStorageSizeBytes() public static method

public static IndexStorageSizeBytes ( Reference value ) : int
value Reference
return int
        public static int IndexStorageSizeBytes(Reference value)
        {
            if(value == null)
                return new UIndex(0).StorageSizeBytes;
            return new UIndex(value.Index + 1).StorageSizeBytes;
        }