底层命令 git对象 git hash-object -w fileUrl : 生成一个key(hash值):val(压缩后的文件内容)键值对存到.git/objects tree对象 git update-index --add --cacheinfo 100644 hash test.txt : ...
分类:
其他好文 时间:
2020-07-04 22:20:47
阅读次数:
59
C# Object Clone Wars Cloning C# objects is one of those things that appears easy but is actually quite complicated with many "gotchas." This article d ...
集合元素如下: private List<string> dataSource = new List<string>() { "001", "002", "003", "004", "005" }; C# 代码,之前这样写: public void Run_v1() { var index = 0; ...
分类:
其他好文 时间:
2020-07-04 13:21:37
阅读次数:
97
一、基本概念 大数据也称之为LOB(Large Objects),LOB又分为:clob和blob,clob用于存储大文本,blob用于存储二进制数据,例如图像、声音、二进制文等。 在实际开发中,有时是需要用程序把大文本或二进制数据直接保存到数据库中进行储存的。 对MySQL而言只有blob,而没有 ...
分类:
其他好文 时间:
2020-07-03 23:11:05
阅读次数:
72
XDocument 说明LINQ处理XML文件的一个类 添加引用 using System.Linq; using System.Xml.Linq; using System.Xml.XPath; 引用xml文件 XDocument xml = XDocument.Load("IOS.xml"); ...
1、使用Sort() 当T是简单类型,int,double之类的可以直接用 var a = new List<int>(); a.Add(1); a.Add(5); a.Add(4); a.Sort();//排序 2、使用LinQ a = a.OrderByDescending(i => i.Nam ...
分类:
编程语言 时间:
2020-07-02 10:41:55
阅读次数:
56
1. 内容回顾 1. django有关的所有命令 1. django的安装 pip install django==1.11.11 pip install -i yuan django==1.11.11 2. 创建项目 django-admin startproject 项目名 通过manage.p ...
分类:
其他好文 时间:
2020-07-02 09:25:21
阅读次数:
38
public interface Collection<E> extends Iterable<E> The root interface in the collection hierarchy. A collection represents a group of objects, known a ...
分类:
编程语言 时间:
2020-07-01 09:41:31
阅读次数:
55
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; using ServiceStack.Redis; namespace te ...
分类:
其他好文 时间:
2020-07-01 09:36:28
阅读次数:
65
public PageInfo Get(string name, int PageIndex = 1, int PagepSize = 3) { PageInfo pg = new PageInfo(); if (name == null) { name=""; } int count = pg.D ...
分类:
其他好文 时间:
2020-06-30 20:25:06
阅读次数:
48