我想創建一個在後臺線程中運行另一個方法的方法。事情是這樣的: void Method1(string param)
{
// Some Code
}
void Method2(string param)
{
// Some Code
}
void RunInThread(AMethod m)
{
//Run the method in a backg
我有一個封裝了幾乎所有的CRUD功能的資料庫抽象類: public abstract class DataRepository<T> : IRepository<T>
where T : class
{
public DataContext Context { get; private set; }
public TransactionScope Transacti