算法如下: 基姆拉尔森计算公式 W= (d+2*m+3*(m+1)/5+y+y/4-y/100+y/400) mod 7 在公式中d表示日期中的日数,m表示月份数,y表示年数。 注意:在公式中有个与其他公式不同的地方: 把一月和二月...
interface用来声明接口 1.只提供一些方法规约,不提供方法主体. 如: 复制代码 代码如下: public interface IPerson { void getName();//不包含方法主体 } 2.方法不能用public abstract等修饰,无字段变量,...
代码如下: using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.IO; namespace ImageDrawing { /// summary /// 图片修改类,主要是用来保护图片版权的 /// /summary publ...
代码如下: using System; public class Test { public static void Main(string[] args) { string str = hello; ToUpper(str); Console.WriteLine(str); } private static unsafe void ToUpper(string str) { fixed(char * pfixed = str) for(char * p=pf...
代码如下: using System; using System.Drawing; namespace PubLib { /// summary /// PicShow 的摘要说明。 /// /summary public class PicShow { public PicShow() { // // TODO: 在此处添加构造函数逻辑 // } //查找图片文件是否...
C# char类型有自带的大小写转换方法: ToUpper和ToLower char str1 = a; char str2 = A; Char.ToUpper(str1); Char.ToLower(str2);...
代码如下: using System; using System.Drawing; using System.Windows; using System.Windows.Forms; using System.Collections; using System.ComponentModel; using System.Data; namespace comput { /// summary /// 这是一个计算器的简单实...
代码如下: private void btnCreate_Click(object sender, EventArgs e) ...{ int hWnd = FindWindow(null, test);//窗體的名稱 //check if PowerReuse is launched or not //if yes, pass path of project to PowerReuse //or, launch PowerReuse wi...
代码如下: #define Test using System; namespace Wrox.ProCSharp.ParameterTestSample ...{ class ParemeterTest ...{ static void TestInt(int[] ints,int i) ...{ ints[0] = 100; i = 100; } static void TestInt(int[] ints, ref int i) ...{ ints[0]...
代码如下: /给三个整数从小到大排序并求和及其平均值 //其中,三个待求整数及其排序的结果由引用参数传递;其和由输出参数传递;平均值由返回值返回。 //在Main()方法中实现三个待...