コード例 #1
0
ファイル: Filter.cs プロジェクト: Shiandow/MPDN_Extensions
 public ILease <TOutput> GetLease()
 {
     if (m_Lease == null)
     {
         m_Lease = m_Func();
         Initialise(m_Lease.Value);
     }
     return(LeaseHelper.Return(m_Lease.Value));
 }
コード例 #2
0
ファイル: Sources.cs プロジェクト: Shiandow/MPDN_Extensions
 ILease <TTexture> ILendable <TTexture> .GetLease()
 {
     return(LeaseHelper.Return(m_Texture));
 }