C#
hedafighter2011
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
第一个windows应用程序
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace HelloWin{原创 2013-09-27 11:39:31 · 837 阅读 · 2 评论 -
C# 委托
详见:C# 委托百度百科我所理解的委托:就是当成变量用吧 ,哈哈using System;using System.Collections.Generic;using System.Text;namespace Delegate{ class Program { private static void EnglishGreeti原创 2013-11-17 15:46:46 · 830 阅读 · 0 评论 -
C# string属性IndexOf的用法
IndexOf() 查找字串中指定字符或字串首次出现的位置,返首索引值,如: str1.IndexOf("字"); //查找“字”在str1中的索引值(位置) str1.IndexOf("字串");//查找“字串”的第一个字符在str1中的索引值(位置) str1.IndexOf("字",start,end);//从str1第start+1个字符起,查找end个字符,查找“字”在字转载 2013-11-29 09:23:21 · 41490 阅读 · 1 评论
分享