2018年12月7日
摘要: 一.字符串常用方法 1.IndexOf("") 如果找到字符串出现的位置则为索引位置,否则返回-1,索引从0开始 2.string Substring( int startIndex , int length ); 从开始位置startIndex,截取到结束位置(截取长度length) 3.Trim 阅读全文
posted @ 2018-12-07 08:58 朝秦暮楚· 阅读(194) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace MyBank{ public class Bank { #region 成员变量的定义 User user = n 阅读全文
posted @ 2018-12-07 08:46 朝秦暮楚· 阅读(293) 评论(0) 推荐(0)