資源簡介
代碼片段和文件信息
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個文件信息
評論
共有 條評論