自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

InfiniteCreator

沉迷学习

  • 博客(11)
  • 资源 (2)
  • 收藏
  • 关注

原创 c#:wpf入门

创建工程及工程结构教程Domo MainWindow.xaml<Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winf

2016-09-21 13:09:23 1151

原创 设计模式【2】:策略模式

策略模式(Strategy):它定义了算法家族,分别封装起来,让他们之间可以互相替换,此模式让算法的变化,不会影响到使用算法的客户。 说白了策略模式要处理的是选择使用哪一种算法,而不是实例化一个对象。策略模式的基本代码 Strategy类,定义所有支持的算法和公共接口abstract class Strategy{ //算法方法 public abstract void Alg

2016-09-21 09:16:06 280

原创 设计模式【1】:简单工厂模式

比如我们写一个加减乘除的计算类,按正常来写的话一定是public Class Operation{ public Add(int a, int b); public Sub(int a, int b); public Mul(int a, int b); public Dev(int a, int b);}或者是public Class Operation{

2016-09-20 17:33:22 269

原创 c#:自定义Attribute

自定义Attribute类:VersionAttribute[AttributeUsage(AttributeTargets.Class)]public class VersionAttribute : Attribute{ public string Name { get; set; } public string Date { get; set; } public s

2016-09-20 15:14:44 1246

原创 c#:SharpSvn关于SVN操作

下载SharpSvn 1.8 在工程里引用其中的 SharpSvn.dllUpdatepublic static void SvnDownload(){ using (SvnClient client = new SvnClient()) { //client.Authentication.Clear(); client.Authenticatio

2016-09-15 11:05:55 5704

原创 Windows 最常用的几条run命令

win+R调出运行界面 一些常用的命令 mstsc:Remote Desktop Connection regedit : Registry Editor services.msc : Services taskmgr:Task Manager write 写字板 mspaint 画图板 notepad 记事本 calc 计算器剩下还有一些,但是真的用不到

2016-09-14 15:52:36 2981

原创 c#:反射访问私有变量

反射是反射dll程序集中的信息 用反射可以做几件事,下面演示如何访问private比如这有一个Class Library 叫TicketLibrary 里面有一个Class叫TicketInfo TicketInfo.cs 里面有一个叫ticketList的private static Listnamespace ReflectTest{ public class TicketI

2016-09-14 10:12:02 3588

原创 c#:自定义泛型栈实现 IEnumerable IEnumerator

只有继承 IEnumerable IEnumerator 的类才能使用foreach。 点进去看可以看到IEnumerable的接口定义的是public interface IEnumerable<out T> : IEnumerable继承了IEnumerable IEnumerable只有一个方法,返回可循环访问集合的枚举数 IEnumerator GetEnumerator() ;d

2016-09-13 12:51:34 960

原创 c#:简单WCF demo

在网上看的教程之前都是 四个工程 Contract+Serice+Host+Client 但是vs2015里面支持新建WCF工程 先新建一个空工程 在里面新建一个WCF Service Library 里面会创建contract和service 分别叫IService1和Service1 里面默认定义和实现了一个 string GetData(int value); 的函数 一会

2016-09-12 12:13:37 604

翻译 SharePoint: 史上最全c#设置和获取Fields

适用环境SharePoint 2010SharePoint 2013Get the List, and the first SPListItemvar web = SPContext.Current.Site.RootWeb;var list = web.Lists.TryGetList("fieldslist");if (list == null) return;//Get Item

2016-09-07 14:33:13 2057

转载 SP2013 设置 Sign in as different user

​在SP2007 和 SP2010 环境中我们可以换不同的用户登录Sharepoint站点,但是在SP2013中微软删除了这个功能(原因未知)。 我们可以通过修改Sharepoint的资源文件,恢复这个功能。1.找到如下文件C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\CONTR

2016-09-01 11:13:20 465

protobuf-java-3.19.3.tar

protobuf-java-3.19.3.tar

2024-03-14

AI大模型知识图谱和学习路线-2024.pdf

AI大模型知识图谱和学习路线-2024.pdf

2024-03-14

Additional-Tools-for-Xcode-14.3-Release-Candidate.dmg

This package includes audio, graphics, hardware I/O, and other auxiliary tools. These tools include AU Lab, OpenGL Driver Monitor, OpenGL Profiler, Pixie, Quartz Debug, CarPlay Simulator, HomeKit Accessory Simulator, IO Registry Explorer, Network Link Conditioner, PacketLogger, Printer Simulator, 64BitConversion, Clipboard Viewer, Crash Reporter Prefs, Dictionary Development Kit, Help Indexer, and Modem Scripts.

2023-06-21

jspsmartupload中文版

支持中文的jspsmartupload

2016-05-21

html5可拖拽图片循环滚动切换

html5可拖拽图片循环滚动切换 支持手机

2016-04-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除