博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET MVC3 常用小积累
阅读量:5348 次
发布时间:2019-06-15

本文共 1356 字,大约阅读时间需要 4 分钟。

 1>下拉列表

@Html.DropDownList("PayStatus", new List
() { new SelectListItem{ Text="未到账", Value ="0"}, new SelectListItem{ Text="已到账", Value ="1"} }, "-- 请选择 --", new { @class = "search_select" })

 2>decimal保留两位小数

    string.Format("{0:F}",xxxx)

 3>yield return    

    public static class NumberList        {            public static int[] ints = { 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377 };                        public static IEnumerable
GetEven() { foreach (int i in ints) if (i % 2 == 0) yield return i; } public static IEnumerable
GetOdd() { foreach (int i in ints) if (i % 2 == 1) yield return i; } } static void Main(string[] args) { // 2, 8, 34, 144 Console.WriteLine("Even numbers"); foreach (int i in NumberList.GetEven()) Console.WriteLine(i); //1, 3, 5, 13, 21,55, 89,233, 377 Console.WriteLine("Odd numbers"); foreach (int i in NumberList.GetOdd()) Console.WriteLine(i); Console.ReadKey(); }

 

 

 

转载于:https://www.cnblogs.com/feiDD/articles/2932463.html

你可能感兴趣的文章
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I & II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
response和request
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
回到顶部浮窗设计
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
$ 一步一步学Matlab(3)——Matlab中的数据类型
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
常用web字体的使用指南
查看>>
描绘应用程序级的信息
查看>>
poj2406-Power Strings
查看>>
2018/12/18 JS会像Linux一样改变编程
查看>>
php环境搭建脚本
查看>>
FTP主动模式与被动模式说明
查看>>
php 编译常见错误
查看>>
MES架构
查看>>