C# (CSharp) Microsoft.CodeAnalysis.CodeGen LocalSlotManager - 2 exemples trouvés. Ce sont les exemples réels les mieux notés de Microsoft.CodeAnalysis.CodeGen.LocalSlotManager extraits de projets open source. Vous pouvez noter les exemples pour nous aider à en améliorer la qualité.
Associées
Related in langs
At this level there are two kinds of local variables: Locals - have identities by which consuming code refers to them. Typical use is a local variable or a compiler generated temp that can be accessed in multiple operations. Any object can be used as identity. Reference equality is used. Temps - do not have identity. They are borrowed and returned to the free list. Typical use is a scratch temporary or spilling storage.