//在不使用任务插件的情况下读取DWG文件的缩略图,以便在没有安装AutoCAD的计算机上浏览。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syst ...
支持office和wps using ExcelDataReader; using OfficeOpenXml; using System; using System.Collections.Generic; using System.Data; using System.Diagnostics; ...
分类:
编程语言 时间:
2021-04-29 11:38:52
阅读次数:
0
#!/usr/bin/env python # -*- coding:utf-8 -*- # <editable> def execute(): # <editable> ''' 载入模块 ''' from collections import Counter import pandas as pd ...
分类:
编程语言 时间:
2021-04-23 11:49:29
阅读次数:
0
list分为浅拷贝和深拷贝,深拷贝就是list1拷贝到list2,我修改list2的内容,不用同步修改list1的内容,浅拷贝则会修改list1的内容。在网上查了有用Collections.copy或者Dto的方式实现,使用后感觉不是很好用,并且感觉不是很好找到直观方便的方式。于是,花了点儿时间在网 ...
分类:
编程语言 时间:
2021-04-21 12:55:09
阅读次数:
0
借鉴微博:https://blog.csdn.net/zhifeiya/article/details/42919047 核心代码: using System;using System.Collections;using System.Collections.Generic;using System ...
C#中对xml数据的读取和写入: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using System.Xml; using ...
参见微软官方 https://docs.microsoft.com/en-us/windows/win32/sysinfo/operating-system-versionusing System; using System.Collections.Generic; using System.Lin ...
import java.util.ArrayList;import java.util.Collections;import java.util.List;import java.util.Objects;import java.util.Stack; public class Eval { pri ...
分类:
其他好文 时间:
2021-04-13 11:46:30
阅读次数:
0
using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions; namespace ConsoleApplication1{ class Class1 { pr ...
分类:
其他好文 时间:
2021-04-13 11:44:10
阅读次数:
0
四则运算代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ClassLibrary1{ public ...
分类:
其他好文 时间:
2021-04-12 12:51:16
阅读次数:
0