Alexandria.Engines.Unreal.Reference.IndexStorageSizeBytes C# (CSharp) Méthode

IndexStorageSizeBytes() public static méthode

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