Googler

两情相悦,又岂在朝朝暮暮。

随笔分类 -  C#.Net

1 2 3 4 5 ··· 7 下一页

C#.Net
Performance Considerations for Entity Framework 4, 5, and 6
摘要:Performance Considerations for Entity Framework 4, 5, and 6https://msdn.microsoft.com/en-sg/data/hh949853.aspx 阅读全文

posted @ 2015-09-25 17:18 RockyLOMO 阅读(174) 评论(0) 推荐(0)

C# 水印透明度图片
摘要:/// /// 在一张图片的指定位置处加入一张具有水印效果的图片 /// /// 指定源图片的绝对路径 /// 指定水印图片的绝对路径 /// 保存图片的绝对路径 public static void MakeW... 阅读全文

posted @ 2015-08-26 14:53 RockyLOMO 阅读(733) 评论(0) 推荐(0)

Which ports are considered unsafe on Chrome
摘要:1, // tcpmux 7, // echo 9, // discard 11, // systat 13, // daytime 15, // netstat 17, // qotd 19, // chargen 20, // ftp... 阅读全文

posted @ 2015-04-10 10:26 RockyLOMO 阅读(170) 评论(0) 推荐(0)

fvvk
摘要:Hello world! D1C0E3D12E624362B9F8D55ABA2E0FB8,D1C0E3D12E624362B9F8D55ABA2E0FB9 阅读全文

posted @ 2015-02-12 17:30 RockyLOMO 阅读(319) 评论(0) 推荐(0)

.net 获取AppDomain创建了多少
摘要:partial class HttpBrowser { public static string IsolateCall(PageContentHandler pHandler) { Contract.Requires(pHandler != ... 阅读全文

posted @ 2014-12-16 18:01 RockyLOMO 阅读(361) 评论(0) 推荐(0)

网站后台调用winform MessageLoopApartment
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Threading.Tasks;using System.Win... 阅读全文

posted @ 2014-12-16 14:26 RockyLOMO 阅读(302) 评论(0) 推荐(0)

Browser GetImage
摘要:using Microsoft.Win32;using System;using System.ComponentModel;using System.Drawing;using System.Drawing.Imaging;using System.Runtime.InteropServices;... 阅读全文

posted @ 2014-11-12 11:14 RockyLOMO 阅读(378) 评论(0) 推荐(0)

笔记
摘要:1.EmitMapper2.giflib-5855 Jillzhang.GifUtility.dll http://www.cnblogs.com/jillzhang/archive/2008/05/12/1128263.html3.SWFUpload 大文件上传------------------... 阅读全文

posted @ 2014-08-11 10:01 RockyLOMO 阅读(184) 评论(0) 推荐(0)

C# CsvFile 类
摘要:using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace AnfleCrawler.... 阅读全文

posted @ 2014-07-22 11:08 RockyLOMO 阅读(552) 评论(0) 推荐(0)

这是什么垃圾代码
摘要:#region Helper public virtual void SerializeTo(ref Uri url, object queryJson) { if (queryJson != null) { ... 阅读全文

posted @ 2014-07-22 11:01 RockyLOMO 阅读(169) 评论(0) 推荐(0)

DetectEncoding
摘要:private Encoding DetectEncoding(ref Stream stream) { if (_pageEncoding != null) { return _pageEncoding; ... 阅读全文

posted @ 2014-07-22 10:18 RockyLOMO 阅读(963) 评论(0) 推荐(0)

C# HttpBrowser 跨进程访问,解决内存泄露问题
摘要:1 #undef DEBUG 2 using Microsoft.Win32; 3 using Newtonsoft.Json; 4 using System; 5 using System.Collections.Generic; 6 using System.Collections... 阅读全文

posted @ 2014-07-17 10:43 RockyLOMO 阅读(1013) 评论(0) 推荐(0)

Threading in C#
摘要:http://www.albahari.com/threading/PART 1: GETTING STARTEDIntroduction and ConceptsC# supports parallel execution of code through multithreading. A thr... 阅读全文

posted @ 2014-06-27 10:27 RockyLOMO 阅读(1735) 评论(1) 推荐(0)

C# ClickOnce deployment for Windows Services ClickOnce 部署windows service
摘要:A simple solution that I use is to merely stop the service and x-copy the files from my bin folder into the service folder.A batch file to stop the se... 阅读全文

posted @ 2014-06-25 10:21 RockyLOMO 阅读(426) 评论(0) 推荐(0)

C# Sandboxer
摘要:public static string IsolateCallV1(PageContentHandler pHandler) { string name = Guid.NewGuid().ToString("N"); var domain... 阅读全文

posted @ 2014-05-26 16:57 RockyLOMO 阅读(406) 评论(0) 推荐(0)

C# Inject
摘要:using System;using System.Collections.Concurrent;using System.Collections.Generic;using System.Diagnostics.Contracts;using System.IO;using System.Linq... 阅读全文

posted @ 2014-05-22 17:53 RockyLOMO 阅读(3227) 评论(0) 推荐(0)

C# Delete Url Cookie
摘要:public static void DeleteCookieFile(Uri url) { string path = Environment.GetFolderPath(Environment.SpecialFolder.Cookies); ... 阅读全文

posted @ 2014-05-21 13:56 RockyLOMO 阅读(292) 评论(0) 推荐(0)

c# Winforms WebBrowser - Clear all cookies
摘要:Hello,I recently search for a method to delete all cookies from the build in .NET WinFormsWebBrowsercontrol.I didn't found anyworkingsolution for it, ... 阅读全文

posted @ 2014-05-21 10:56 RockyLOMO 阅读(1065) 评论(0) 推荐(0)

C# 调用配置文件SQL语句 真2B!
摘要:/*********************************************************************************** File Name : SQLConfig** Copyright (C) 2013 guzhen.net. All ... 阅读全文

posted @ 2014-05-16 15:41 RockyLOMO 阅读(2071) 评论(0) 推荐(0)

C# WebBrowser NativeMethods
摘要:using System;using System.Collections.Generic;using System.Drawing;using System.Linq;using System.Runtime.InteropServices;using System.Text;using Syst... 阅读全文

posted @ 2014-05-12 15:56 RockyLOMO 阅读(775) 评论(0) 推荐(0)

1 2 3 4 5 ··· 7 下一页

导航

Apple/苹果笔记本 Mac Air MC968CH/A 行货在保 I5 11寸 超级本