• 大小: 0.02M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 源码  工具  

资源简介

软件著作权申请时,需要准备前30页后30页网页源代码。

通过这个软件,直接自动将注释和空行都删除,并且合并成差不多30多页的源代码。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace SourceConvert
{
    public partial class Form1 : Form
    {
        int linecount = 0;
        List lexts = new List();
        List files = new List();
        List txtlines = new List();
        public Form1()
        {
            InitializeComponent();
        }
        private void fileSort()
        {
            Random random = new Random();
            List newList = new List();
            foreach (string item in files)
            {
                newList.Insert(random.Next(newList.Count) item);
  

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-10-14 10:25  bin\
     目录           0  2015-05-28 09:49  bin\Debug\
     文件       14848  2015-05-28 09:49  bin\Debug\SourceConvert.exe
     目录           0  2014-10-14 11:07  bin\Release\
     文件       14488  2015-05-28 09:49  Form1.cs
     文件        7373  2015-05-28 09:47  Form1.Designer.cs
     文件        5814  2015-05-28 09:47  Form1.resx
     文件         474  2014-10-14 10:30  Program.cs
     目录           0  2014-10-14 10:23  Properties\
     文件        1358  2014-10-14 10:30  Properties\AssemblyInfo.cs
     文件        2862  2014-10-14 10:30  Properties\Resources.Designer.cs
     文件        5612  2012-09-27 22:17  Properties\Resources.resx
     文件        1109  2014-10-14 10:30  Properties\Settings.Designer.cs
     文件         249  2012-09-27 22:17  Properties\Settings.settings
     文件        5112  2014-10-14 10:55  SourceConvert.csproj
     文件         452  2014-10-14 10:30  SourceConvert.csproj.user
     文件         915  2014-10-14 10:30  SourceConvert.sln

评论

共有 条评论