资源简介
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DotNet.Common.Util
{
public class StringBuffer
{
#region filds and properties
public StringBuilder builder = new StringBuilder();
private int defaultCapacity = 500;//StringBuilder的默认Capacity
public int Length
{
get
{
return builder.Length;
}
}
#endregion
#region constructors
public StringBuffer()
{
builder = new StringBuilder(defaultCapacity);
}
public StringBuffer(int capacity)
{
builder = new StringBuilder(capacity);
}
public StringBuffer(string value)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 322 2010-12-18 14:39 LuceneWinApp\App.config
文件 20 2010-12-19 11:31 LuceneWinApp\bin\Debug\index\segments.gen
文件 62 2010-12-19 11:31 LuceneWinApp\bin\Debug\index\segments_4
文件 2944 2010-12-19 11:30 LuceneWinApp\bin\Debug\index\_0.cfs
文件 3776 2010-12-19 11:30 LuceneWinApp\bin\Debug\index\_0.cfx
文件 1189 2010-12-19 11:31 LuceneWinApp\bin\Debug\index\_1.cfs
文件 721 2010-12-19 11:31 LuceneWinApp\bin\Debug\index\_1.cfx
目录 0 2010-12-19 11:31 LuceneWinApp\bin\Debug\index
文件 20 2010-12-19 11:31 LuceneWinApp\bin\Debug\index1\segments.gen
文件 62 2010-12-19 11:31 LuceneWinApp\bin\Debug\index1\segments_4
文件 2944 2010-12-19 11:30 LuceneWinApp\bin\Debug\index1\_0.cfs
文件 3776 2010-12-19 11:30 LuceneWinApp\bin\Debug\index1\_0.cfx
文件 1189 2010-12-19 11:31 LuceneWinApp\bin\Debug\index1\_1.cfs
文件 721 2010-12-19 11:31 LuceneWinApp\bin\Debug\index1\_1.cfx
目录 0 2010-12-19 15:09 LuceneWinApp\bin\Debug\index1
文件 11600 2011-01-02 13:17 LuceneWinApp\bin\Debug\LuceneWinApp.vshost.exe
文件 322 2010-12-18 14:39 LuceneWinApp\bin\Debug\LuceneWinApp.vshost.exe.config
文件 490 2010-03-17 22:39 LuceneWinApp\bin\Debug\LuceneWinApp.vshost.exe.manifest
目录 0 2011-01-02 19:12 LuceneWinApp\bin\Debug
目录 0 2010-12-18 14:05 LuceneWinApp\bin\Release
目录 0 2010-12-18 14:05 LuceneWinApp\bin
文件 4962 2010-12-19 11:27 LuceneWinApp\LuceneWinApp.csproj
文件 26556 2010-12-19 13:42 LuceneWinApp\MainForm.cs
文件 17830 2010-12-19 11:15 LuceneWinApp\MainForm.Designer.cs
文件 6018 2010-12-19 11:15 LuceneWinApp\MainForm.resx
文件 4440 2010-12-18 21:45 LuceneWinApp\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache
文件 7067 2011-01-02 15:26 LuceneWinApp\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache
目录 0 2010-12-18 14:05 LuceneWinApp\obj\x86\Debug\TempPE
目录 0 2011-01-02 19:12 LuceneWinApp\obj\x86\Debug
目录 0 2010-12-18 14:05 LuceneWinApp\obj\x86
............此处省略101个文件信息
相关资源
- 推出网搜索小偷程序源码-v30623
- C#搜索淘宝会员登陆本机会员名
- C# 搜索网络计算机并唤醒(WakeUp)
- 在Excel的指定范围内搜索文本
- 一维搜索(二分法)
- 一维搜索(黄金分割法)
- 纯C#写的等值线搜索和填充代
- C# 广度搜索和深度搜索实现贪吃蛇自
- C# VS2010 WIFI搜索与连接
- C# 动态搜索文件或文件夹
- C# wifi连接器(搜索wifi并密码连接)
- C# 快速搜索磁盘文件
- 百度网盘资源搜索
- C# .NET 搜易站内搜索引擎
- 文本框搜索
- Lucene.Net(全文检索)入门级
- Lucene.Net新框架源码(实现了服务端和
- C# 网盘资源搜索
- lucene分词+高亮显示+分页 源码
- lucene搜索 批量添加 自定义字典关键词
- C# 搜索并连接局域网wifi
- C# 树形结构自动搜索填充
- C# Lucene搜索 完整
- lucene自定义分词工具盘古分词器有精
- C# 仿搜狗/360 快捷搜索栏 (实现了开
- C# 搜索本地文件 源码(双击可定位到
- C#百度网盘搜索工具b
- Lucene 搜索服务器 (ElasticSearch+Kibana)
- C# 文件搜索源码(查找电脑上指定文
- Cefsharp网盘搜索
评论
共有 条评论