C#
xkf1119
nothing
展开
-
C#(WebService)-(使用屬性)
轉載自: https://blog.csdn.net/newhappy2008/article/details/1204988在 WebService 中发布一个方法很简单,只要将你要发布的方法用 System.Web.Services.WebMethodAttribute 属性类来标识出就可以了,但是该属性只能应用于方法而不能应用到属性。该类的MSDN文档可以见到(C#): [Attribut...转载 2018-05-12 13:04:16 · 627 阅读 · 0 评论 -
C#(WebService)-(傳輸檔案)
WebService端: [WebMethod] public bool CreateFile(string fileName) { bool isCreate = true; try { fileName = Path.Combine(Server.MapPa...原创 2018-05-12 13:39:32 · 463 阅读 · 0 评论 -
C#(数据库连线操作)
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.SqlClient;using System.Data;namespace MyInterface{ public class Class_DB_SQL { //数据库连接字...原创 2018-05-12 16:41:45 · 378 阅读 · 0 评论 -
C#(WindowsService)-(MailSender)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Linq;using System.Net.Mail;using System.ServiceProcess;using S...原创 2018-05-25 12:50:30 · 546 阅读 · 0 评论 -
C#(windowsservice)-(記錄開關機)
待續原创 2018-05-25 12:51:23 · 248 阅读 · 0 评论 -
C#(杂项注记)
1.原创 2018-05-25 18:44:05 · 232 阅读 · 0 评论 -
C#(多線程)-(測試中)
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Data.SqlClient;using System.Drawing;using System.Linq;using System.Text;using System.Threading;...原创 2018-06-06 16:59:09 · 181 阅读 · 0 评论 -
C#(WebService問題匯總)-(The test form is only available for requests from the local machine)
The test form is only available for requests from the local machine解决方法:1.通过编辑 Web 服务所在的 vroot 的 Web.config 文件,可以启用 HTTP GET 和 HTTP POST。以下配置同时启用了 HTTP GET 和 HTTP POST:<configuration> <sys...转载 2018-05-12 08:55:29 · 339 阅读 · 0 评论 -
C#(常用跳轉語句)
跳轉語句:break,跳出最內層封裝語句,(外層循環也退出了?)continue,跳出最內層封裝語句的頂端(本次循環後面的部分不再執行了,但不影響下次循環)return,goto,throw...原创 2018-05-04 16:31:26 · 190 阅读 · 0 评论 -
C#(禁止系统运行某个进程的简单方法)
转发自:https://blog.csdn.net/chenyujing1234/article/details/7797269一、解决方法1、理论要对一个任意进程(包括系统安全进程和服务进程)进行指定了写相关的访问权的OpenProcess操作,只要当前进程具有SeDeDebug权限就可以了。要是一个用户是Administrator或是被给予了相应的权限,就可以具有该权限。可是,就算我们用Adm...转载 2018-05-09 16:55:29 · 2798 阅读 · 1 评论 -
C#(常用運算符)
條件邏輯運算符:&& 並且|| 或! 非賦值運算符: = *= (var = var*expr)/= (var = var/expr)%= (var = var%expr)+= (var = var+expr)-= (var = var-expr)<<= (var = var<<expr)>>= (var = var>>exp...原创 2018-05-04 15:08:28 · 163 阅读 · 0 评论 -
C#(邮件发送,画隔线)
public string htmlbody() { StringBuilder strHTML = new StringBuilder(); strHTML.Append("<html>"); strHTML.Append("<head>"); strHTML.Ap...原创 2018-05-04 07:29:23 · 247 阅读 · 0 评论 -
C#(验证网域账号密码的正确性)
class Class_Login { //protected bool fun_AuthDomainUser(string userid, string domain, string passwd) public bool fun_AuthDomainUser(string userid, string domain, string passwd) ...转载 2018-05-04 10:16:55 · 1456 阅读 · 0 评论 -
C#(常用控制流語句)
控制流語句,if(x<10){}if(x<10) z = x - 1 ;else{}int x = 3while (x>0){ x--;}int x = 0do{}while (x<3)for(int i=0,j=0;i<maxi;i++,j++){}switch(x){ case 2: ***;break; case 3: ***;break; defa...原创 2018-05-04 15:38:16 · 207 阅读 · 0 评论 -
C#(數組)
數組:一維數組,int[5],(一維,長度5)二位數組,int[3,6](二位,長度18)矩形數組(rectangular)&交錯數組(jagged array)數組對象,1.Rank,返回數組維度數的屬性2.Length,返回數組所有元素個數定義維護:int[] arr1; 一維int[,] arr2; 二維int[] arr1 = new int[4];(4個元素)Myclass...原创 2018-05-04 16:30:05 · 262 阅读 · 0 评论 -
C#(Log)
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;namespace pre_commit{ //string strYMD = "log\\" + DateTim...原创 2018-11-03 14:42:42 · 593 阅读 · 0 评论