最佳答案
是否有一个方法来检查给定的路径是否是完整路径? 现在我正在这样做:
if (template.Contains(":\\")) //full path already given
{
}
else //calculate the path from local assembly
{
}
但是一定有更优雅的方法来检查这个?