题记:今天是第一次写随笔,虽然用C#和.net 写过了不少的项目,但是今天忽然看见别人给一个标准的.net 程序猿规划的路线,Linq属于C#基础,可能因为工作中没有用到这方面的东西大部分都是在写T-SQL有关,所以抱着身为一个.net 程序员连这个常用都不会的心态,我尝试去窥探一下它 先来看看微软 ...
分类:
其他好文 时间:
2021-05-24 01:59:44
阅读次数:
0
static void Main(string[] args) { List<Man> list = new List<Man>(); for (int i = 0; i < 10; i++) { Man d = new Man(); d.Age = i ; d.Name = i.ToString( ...
分类:
其他好文 时间:
2021-05-24 01:06:23
阅读次数:
0
XML 文件解析 public DataTable XMLParse(string POAddFile) { DataTable addDt = _GetPOAddTable(); FileStream fr = null; try { XmlDocument doc; doc = new XmlD ...
分类:
其他好文 时间:
2021-05-24 00:15:21
阅读次数:
0
1.Datatable、DataRow[]、List 、List子集合、 某列求和 DataTable dt = new DataTable(); var sum1 = dt.Compute("SUM(Volume)", ""); DataRow[] drList = dt.Select("Name ...
{"name":"张三","agg":"50"} 就是这么简单json转datatable会出问题。其实将这个json改成下面这样就ok了 [{"name":"张三","agg":"50"}] 应该是只有数组才能转化为datatable的。 ...
Vue使用Element-ui Table 合并行,官方只是一个非常简单的合并例子,通常业务都是相同的某个字段进行合并。 效果图 代码实现 1、Table <el-table :data="dataTable" border :header-cell-style="{background: '#FA ...
分类:
其他好文 时间:
2021-04-21 12:57:40
阅读次数:
0
C#中对xml数据的读取和写入: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using System.Xml; using ...
四则运算代码:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace ClassLibrary1{ public ...
分类:
其他好文 时间:
2021-04-12 12:51:16
阅读次数:
0
公交站点显示 using System.Collections.Generic; usinSystem.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; usi ...
分类:
其他好文 时间:
2021-04-12 12:40:32
阅读次数:
0
XML文件操作 实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XMLDemo { class Student { public string St ...
分类:
其他好文 时间:
2021-04-12 12:30:15
阅读次数:
0