Windows开发
Stardock公司开发的一款效率软件Groupy,类似浏览器的多标签页管理,拖动窗口就能把不同的界面组合成一个窗口。 安装后界面: 效果图: 【下载地址】https://www.lanzous.com/iakfayj ...
分类:Windows开发 时间:2020-03-23 17:24:53 收藏:0 阅读:92
1.封装的方法 public static T GetT<T>(T t, List<string> list) { System.Reflection.PropertyInfo[] properties = t.GetType().GetProperties(); for (int i = 0; i ...
分类:Windows开发 时间:2020-03-23 17:10:33 收藏:0 阅读:152
普通环境路径如下: 【控制面板】--【系统和安全】--【管理工具】--【本地安全策略】--【网络列表管理器策略】--【网络】--【网络位置】,设定之后也可以设定一下【用户权限】 域控环境路径如下: 不像Windows Server 2003 ,Windows Server 2012 域控制器的管理工 ...
分类:Windows开发 时间:2020-03-23 16:39:01 收藏:0 阅读:117
pip install pywinauto ERROR: Could not find a version that satisfies the requirement six (from pywinauto) (from versions: none) ERROR: No matching dis ...
分类:Windows开发 时间:2020-03-23 16:05:55 收藏:0 阅读:159
在C#开发中经常需要进行Web远程访问,方法很多,也使用了很久,但一直没有做一个总结。 C#中用来进行远程请求的方法有很多,如WebClient,WebRequest等,也各有特点。今天在这里主要介绍WebRequest。 先从相对入门的不需要证书验证,不需要登录的开始。 //GET类型的请求 pu ...
分类:Windows开发 时间:2020-03-23 15:25:31 收藏:0 阅读:73
内容摘录 《Exploring Advanced Features in C# 探索C#中的高级特性》 1 public class TupleExample 2 { 3 4 public (string guitarType,int stringCount) GetGuitarType() 5 { ...
分类:Windows开发 时间:2020-03-23 15:04:30 收藏:0 阅读:103
这道题因为斜率可能不是一直递增,所以要用二分来维护 #include<iostream> #include<algorithm> #include<cstdio> #include<vector> using namespace std; typedef long long ll; const in ...
分类:Windows开发 时间:2020-03-23 13:45:35 收藏:0 阅读:75
电脑最近因为各种原因崩溃,只能重装系统,因此要从新安装tensorflow-gpu。相比之前几次安装,这次安装是最为顺利的,因此把整个过程记录一下,以便日后可以参考。 电脑配置: WIN10系统+8个cpu单元+16(8+8)G内存+Nvida Geforece GTX 965M显卡 安装版本: c ...
分类:Windows开发 时间:2020-03-23 13:43:20 收藏:0 阅读:135
一、C#基本认识 1.1.区分.net与C# .net:一般指.Net Framework框架,是Microsoft开发的一个平台。 代码库 定义了基本的类型,也称为通用类型系统(Common Type System,CTS) 包含.net公共语言运行库(Common Language Runtim ...
分类:Windows开发 时间:2020-03-23 13:38:40 收藏:0 阅读:78
常见数据类型 C 的类型一般分为 值类型 、 引用类型 两大类型。 值类型的实例存放在栈中,引用类型会在栈中放置一个指针指向堆中的某一块内容。 C 为我们内置了几个数据类型供我们使用: |关键词简写|对应的类全称(点击可以查看对应的API)|值范围|说明| |: :|: |: |: | | bool ...
分类:Windows开发 时间:2020-03-23 13:24:41 收藏:0 阅读:52
11023102410259701
上一页97009下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!