• 大小: 1.69M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: Lucene  搜索  

资源简介


资源截图

代码片段和文件信息

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个文件信息

评论

共有 条评论