Microsoft.Scripting.Interpreter.InterpretedFrame.Enter C# (CSharp) Méthode

Enter() private méthode

private Enter ( ) : ThreadLocal.StorageInfo
Résultat ThreadLocal.StorageInfo
        internal ThreadLocal<InterpretedFrame>.StorageInfo Enter() {
            var currentFrame = InterpretedFrame.CurrentFrame.GetStorageInfo();
            _parent = currentFrame.Value;
            currentFrame.Value = this;
            return currentFrame;
        }