예제 #1
0
 public static PooledObject <List <TItem> > GetPooledObject <TItem>(this ObjectPool <List <TItem> > pool)
 => PooledObject <List <TItem> > .Create(pool);
예제 #2
0
 public static PooledObject <StringBuilder> GetPooledObject(this ObjectPool <StringBuilder> pool)
 => PooledObject <StringBuilder> .Create(pool);
예제 #3
0
 public static PooledObject <Dictionary <TKey, TValue> > GetPooledObject <TKey, TValue>(this ObjectPool <Dictionary <TKey, TValue> > pool)
     where TKey : notnull
 => PooledObject <Dictionary <TKey, TValue> > .Create(pool);
예제 #4
0
파일: Extensions.cs 프로젝트: tohfe/roslyn
 public static PooledObject <List <TItem> > GetPooledObject <TItem>(this ObjectPool <List <TItem> > pool)
 {
     return(PooledObject <List <TItem> > .Create(pool));
 }
예제 #5
0
파일: Extensions.cs 프로젝트: tohfe/roslyn
 public static PooledObject <Dictionary <TKey, TValue> > GetPooledObject <TKey, TValue>(this ObjectPool <Dictionary <TKey, TValue> > pool)
 {
     return(PooledObject <Dictionary <TKey, TValue> > .Create(pool));
 }
예제 #6
0
파일: Extensions.cs 프로젝트: tohfe/roslyn
 public static PooledObject <StringBuilder> GetPooledObject(this ObjectPool <StringBuilder> pool)
 {
     return(PooledObject <StringBuilder> .Create(pool));
 }
예제 #7
0
 public static PooledObject <Stopwatch> GetPooledObject(this ObjectPool <Stopwatch> pool)
 {
     return(PooledObject <Stopwatch> .Create(pool));
 }
예제 #8
0
 public static PooledObject <Stopwatch> GetPooledObject(this ObjectPool <Stopwatch> pool)
 => PooledObject <Stopwatch> .Create(pool);