2014年1月12日 / 最終更新日 : 2018年3月3日 prg C#プログラミング グラフ private void btnSet_Click(object sender, EventArgs e) { var series1 = new Series(“y = x*x”); var series2 = new […]
2014年1月5日 / 最終更新日 : 2018年3月3日 prg C#プログラミング 始めと終わりのカンマを取る //始めと終わりのカンマを取る motoAto = Regex.Replace(Titem.Lines[i], “^[,]|[,]$”, “”) ;
2014年1月5日 / 最終更新日 : 2018年3月3日 prg C#プログラミング グラフの作成 chart1.ChartAreas.Clear(); ChartArea a1 = new ChartArea(“ChartArea1”); a1.Area3DStyle.Enable3D = false; a1.Bac […]
2013年12月30日 / 最終更新日 : 2018年6月3日 prg C#プログラミング webページからHTMLを取得する #region Streamからbyte[]で読みbyte[]への追加 //Streamからbyte[]で読み込む private byte[] ReadBytes(Stream stream) { var […]