Functions.AddBs 方法 | |
向路径表达式添加反斜杠(如果需要)。
命名空间:
XSharp.VFP
程序集:
XSharp.VFP (在 XSharp.VFP.dll 中) 版本:2.22 GA
语法 FUNCTION AddBs(
cPath AS STRING
) AS STRING
public static string AddBs(
string cPath
)
查看代码参数
- cPath
- 类型:String
指定要向其添加反斜杠的路径名。
返回值
类型:
String字符
示例 1*-- 输出两次 "C:\Windows\"
2? AddBs( "C:\Windows" )
3? AddBs( "C:\Windows\" )
参见