国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

.NET 擴(kuò)展實(shí)現(xiàn)代碼

2024-07-10 12:39:41
字體:
供稿:網(wǎng)友
class Command
{
public virtual void Execute() { }
}

class InvalidOperationException<T> : InvalidOperationException
where T : Command
{
public InvalidOperationException(string message) : base(message) { }
// some specific information about
// the command type T that threw this exception
}

static class CommandExtensions
{
public static void ThrowInvalidOperationException<TCommand>(
this TCommand command, string message)
where TCommand : Command
{
throw new InvalidOperationException<TCommand>(message);
}
}

class CopyCommand : Command
{
public override void Execute()
{
// after something went wrong:
this.ThrowInvalidOperationException("Something went wrong");
}
}

class CutCommand : Command
{
public override void Execute()
{
// after something went wrong:
this.ThrowInvalidOperationException("Something else went wrong");
}
}
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 探索| 舒城县| 嘉禾县| 嘉祥县| 湖北省| 萨嘎县| 清丰县| 旅游| 泗水县| 重庆市| 溧阳市| 龙州县| 耒阳市| 长沙市| 信丰县| 阿城市| 修武县| 老河口市| 渭源县| 兴文县| 栾川县| 怀柔区| 邯郸县| 怀化市| 文昌市| 温宿县| 池州市| 郸城县| 贵南县| 灵石县| 朝阳县| 白城市| 林西县| 美姑县| 会东县| 龙江县| 兴业县| 车致| 湘乡市| 永宁县| 金湖县|