「C#入門」エスケープ文字を利用するサンプル
説明
エスケープ文字列 意味
\r キャリッジリターン
\n 改行
\t タブ
\¥ “\”文字
1. ダブルコーテーション
Console.Writ ...
「C#入門」Math.Ceilingで小数第1位で切り上げるサンプル
サンプルコード1
Math.Ceiling(0.0)//0
Math.Ceiling(0.1)//1
Math.Ceiling(0.2)//1
Math.Ceiling(0.3)//1
Math ...
「C#入門」foreachで要素を取得するサンプル
サンプルコード
using System;using System.Collections.Generic;class ForEachDemo{ static void Main() { var citys= new HashS ...「C#」文字列のMD5値を取得するサンプル
書式
MD5.Create().ComputeHash(Encoding.UTF8.GetBytes(文字列))
使用例
「C#」Directory.CreateDirectoryでフォルダを作成する
書式
Directory.CreateDirectory(フォルダ名)
使用例
「C#」CreateDirectoryで絶対パスを指定する
書式
CreateDirectory(@”絶対パス”)
使用例
「C#入門」日の差分を求めるサンプル
サンプルコード
//指定日付1
DateTime dtA = new DateTime(2019, 6, 21, 0, 0, 0);
//指定日付2
DateTime dtB = new Dat ...
「C#入門」インターフェースの定義(event、method、property)
サンプルコード
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.T ...「C#」引数としての配列を関数に渡すサンプルコード
サンプルコード
using System;namespace ArrayApplication{ class TestArrayDemo { double getAverage(int; } value = (double)su ...「C#入門」 foreach で配列の要素を取得するサンプルコード
サンプルコード
using System;namespace ArrayApplication{ class MyArray { static void Main(string n = new int;/* 初期化 */for ...「C#入門」constを使って定数を利用するサンプル
サンプルコード
using System;public class ConstTest{ class TestClass { public int x; public int y; public const int c1 = 5 ...「C#」string.Join()で文字列を連結するサンプル
サンプルコード
using System;namespace StringApplication{ class StringProg { static void Main(string starray = new string[ ...「C#」Splitメソッドで文字列を分割するサンプル
サンプルコード
class Demo{ static void Main() { string city = "東京,大阪,福岡,横浜"; string[] cft = city.Split(','); foreach (str ...「C#」開始文字位置を指定する文字列を取得するサンプル
サンプルコード
using System;namespace StringApplication{ class StringProg { static void Main(string[] args) { string str ...「C#入門」Compare()で文字列を比較するサンプルコード
サンプルコード
using System;namespace StringApplication{ class StringProg { static void Main(string[] args) { string str1 ...「C#入門」AddRange()でリストをListへ追加するサンプル
説明
public void AddRange (System.Collections.Generic.IEnumerable<T> collection);
パラメーター
collection ...
「C#入門」インタフェース(interface)を実装するサンプル
サンプルコード
using System;/*インターフェイスの定義*/interface IParentInterface{ void ParentInterfaceMethod();}interface ITestInter ...「C#入門」関数(メソッド)を定義するサンプル
サンプルコード
using System;namespace CalculatorApplication{ class NumberManipulator {/*関数の定義*/public int MaxVal(int num1 ...