9
检查是否给出完整路径
有没有一种方法可以检查给定路径是否为完整路径?现在我正在这样做: if (template.Contains(":\\")) //full path already given { } else //calculate the path from local assembly { } 但是,必须有更优雅的方法来检查这一点吗?
104
c#
.net
validation
path