System.LdsSyncHelper.Get C# (CSharp) Метод

Get() приватный Метод

private Get ( int &slot ) : int
slot int
Результат int
		internal virtual int Get(ref int slot)
		{
			return slot;
		}
	}

Usage Example

 // This is used to make sure we are actually reading and writing to
 // memory to fetch the slot (rather than possibly using a value
 // cached in a register).
 internal bool IsValid()
 {
     return(m_helper.Get(ref m_slot) != -1);
 }
LdsSyncHelper