摘要:
今天再学习一些C#的基础知识,如对 Int Array进行排序:你可以在控制台应用程序中,创建一个类别,它属性和2个构造函数: class Af { private int[] myVar; public int[] MyIntArray { get { return myVar; } set { 阅读全文
摘要:
原始数据: 要处理为: 最终处理为: 好吧,我们创建一个类: class Ae { private string _InputValue; private char _Delimiter; public Ae(string inputValue, char delimiter) { this._In 阅读全文
摘要:
在本博客中,可以找到一篇《输出的字符靠右对齐》http://www.cnblogs.com/insus/p/7953304.html 它有教大家怎样实现字符串输出进行左齐或者是右对齐。本篇的方法,超简单,是使用string.Format()对本进行格式化输出即可。 class Ad { privat 阅读全文
摘要:
温故而知新,今天学习Math.Max和Min的方法。这2个方法,均需要传入2个参数,返回参数中最大值和最小值。 class Ac { public void LeanMathFunction() { int min = Math.Min(5,3); Console.WriteLine("5,3最小值 阅读全文