annotate Implab/Safe.cs @ 4:381095ad0a69
Implab.Fx: implemented animation object
Implab.Fx: implemented transparency animation helper
author |
cin |
date |
Tue, 17 Sep 2013 04:27:30 +0400 |
parents |
aa367305156b |
children |
dafaadca5b9f |
rev |
line source |
1
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Linq;
|
|
4 using System.Text;
|
|
5
|
|
6 namespace Implab
|
|
7 {
|
|
8 public static class Safe
|
|
9 {
|
2
|
10 public static void Dispose<T>(ref T obj) where T : class
|
1
|
11 {
|
2
|
12 var disp = obj as IDisposable;
|
|
13 if (disp != null)
|
1
|
14 {
|
2
|
15 disp.Dispose();
|
1
|
16 obj = default(T);
|
|
17 }
|
|
18 }
|
|
19 }
|
|
20 }
|