RaUI/Source/MyDb/HtmlAgilityPack.Shared/Metro/InvalidProgramException.cs
鑫Intel a1d6dce946 ### 2021-08-03更新
------
#### MyDbV4    V3.0.2108.0301
- *.[新增]新增内置HtmlAgilityPack组件。
2021-08-30 19:47:56 +08:00

18 lines
341 B
C#

#if METRO
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HtmlAgilityPack
{
public class InvalidProgramException : System.Exception
{
public InvalidProgramException(string message)
: base(message)
{
}
}
}
#endif