One piece,是真正存在的。

此博客停更,新地址传送门:Yuanjie

2011年10月12日 #

File文件操作

摘要: 对文件进行相关操作:Openpublic: static FileStream^ Open( String^ path, FileMode mode ) FileMode CreateNew 指定操作系统应创建新文件。此操作需要 FileIOPermissionAccess..::.Write。如果文件已存在,则将引发 IOException。 Create 指定操作系统应创建新文件。如果文件已存在,它将被覆盖。这要求 FileIOPermissionAccess..::.Write。System.IO.FileMode.Create 等效于这样的请求:如果文件不存在,则使用 Cre... 阅读全文

posted @ 2011-10-12 13:42 One|Piece 阅读(332) 评论(0) 推荐(0) 编辑

String类中IndexOf与SubString

摘要: IndexOfpublic: int IndexOf( String^ value, int startIndex, int count ) 说明:value类型:System..::.String要查找的 String。 startIndex类型:System..::.Int32搜索起始位置。 count类型:System..::.Int32要检查的字符位置数。 返回值类型:System..::.Int32如果找到该字符串,则为 value 的从零开始的索引位置;如果未找到该字符串,则为 -1。如果value 为 Empty,则返回值为 startIndex。SubStringpu... 阅读全文

posted @ 2011-10-12 13:37 One|Piece 阅读(208) 评论(0) 推荐(0) 编辑

导航