码迷,mamicode.com
首页 >  
搜索关键字:linq    ( 6890个结果
C# .net 压缩图片 缩略图
C#压缩图片不失真 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Linq; usin ...
分类:Windows程序   时间:2020-02-22 00:08:14    阅读次数:104
Cloud开发动态列的简单账表
业务场景:客户需要根据过滤条件的不同显示不同的列。如下方式可以实现动态的列名。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingdee.BOS.Core.Repor ...
分类:其他好文   时间:2020-02-18 20:42:55    阅读次数:99
Cloud保存时提示消息是否保存,点是保存,点否不保存。
业务场景:保存时,检查上游的销售出库单数量,和发货通知单数量是否一致,不一致时提示信息,点是则保存,点否不保存。 using System;using System.Collections.Generic;using System.Linq;using System.Text;using Kingd ...
分类:其他好文   时间:2020-02-18 20:42:42    阅读次数:127
.net(三) C#面向对象
一、类 语法 [public] class 类名 { 字段; 属性; 方法; } 类的定义是以关键字 class 开始,后跟类的名称。类的主体,包含在一对花括号内。下面是类定义的一般形式: <access specifier> class class_name { // member variabl ...
分类:Windows程序   时间:2020-02-17 23:43:36    阅读次数:99
out关键字
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace _13_out参数练 ...
分类:其他好文   时间:2020-02-17 20:18:50    阅读次数:78
C#中类的编程规范
C#中类的编程规范,或许这是一个好习惯。 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Fra ...
分类:Windows程序   时间:2020-02-16 01:27:11    阅读次数:77
C#简单的LogHelper
适用于不想使用log4net等第三方的Log工具的LogHelper。正规的还是要使用《C# 工具类LogHelper》的这种做法。 using System; using System.Collections.Generic; using System.IO; using System.Linq; ...
分类:Windows程序   时间:2020-02-16 01:03:23    阅读次数:82
List中常用的linq操作
1 [Serializable] 2 public class Product 3 { 4 public Product() 5 { 6 7 8 } 9 10 public Product(string id,string pname,int num,double price) 11 { 12 th ...
分类:其他好文   时间:2020-02-15 09:53:38    阅读次数:69
C# OracleHelper帮助类
原文:https://blog.csdn.net/easyboot/article/details/102608498 using System; using System.Data; using System.Configuration; using System.Linq; using Syst ...
分类:数据库   时间:2020-02-14 14:42:10    阅读次数:299
C#入门 Hello World
1 //导入微软提供的命名空间,以便使用 2 using System; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Text; 6 using System.Threading.Tasks; 7 8 ...
分类:Windows程序   时间:2020-02-14 10:50:24    阅读次数:80
6890条   上一页 1 ... 24 25 26 27 28 ... 689 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!