有时候,我们须要读取一些数据,而无论这数据来源于磁盘上的数据文件,还是来源于网络上的数据.于是.就有了以下的 StringExtensions.cs: using System; using System.IO; using System.Net; namespace Skyiv { public static class StringExtensions { public static Stream GetInputStream(this string fileNameOrUri, strin…
using System; using System.Data.Objects; using System.Linq; namespace OutOfMemory.Codes { /// <summary> /// Adds extension methods to the <see cref="IQueryable{T}"/> class. /// </summary> public static class QueryableExtender {…
String.prototype.repeatify=String.prototype.repeatify || function(times){ var str=''; for(var i=0;i<times;i++){ console.log('this',this) // this指向调用这个函数的对象 str+=this; } return str} 'hello'.repeatify(3)======>'hellohellohello'…
给 IConfiguration 写一个 GetAppSetting 扩展方法 Intro 在 .net core 中,微软已经默认使用 appsettings.json 来代替 app.config,并重新设计了一套完整的配置系统,可以支持 json/xml/ini/环境变量等. 在 .net core 中有一个 GetConnectionString 的扩展方法用来比较方便的获取链接字符串,类似于在 .net framework 中使用 ConfigurationManager.Connec…
Qt applendPlainText()/append() 多添加一个换行解决方法 void ConsoleDialog::appendMessageToEditor(const QString &message) { ui->textEdit->appendPlainText(message); ui->textEdit->moveCursor(QTextCursor::End); ui->textEdit->textCursor().deletePrevi…
扩展方法是C# 3.0(老赵对VB不熟)中最简单,也是最常用的语言特性之一.这是老赵自以为的一个简单却不失经典的实例: [AttributeUsage(AttributeTargets.All, AllowMultiple = true)] public class AttachDataAttribute : Attribute { public AttachDataAttribute(object key, object value) { this.Key = key; this.Value…
原始类型的方法 JavaScript 允许我们像使用对象一样使用原始类型(字符串,数字等).JavaScript 还提供了这样的调用方法.我们很快就会学习它们,但是首先我们将了解它的工作原理,毕竟原始类型不是对象(在这里我们会分析地更加清楚). 我们来看看原始类型和对象之间的关键区别. 一个原始值: 是原始类型中的一种值. 在 JavaScript 中有 7 种原始类型:string,number,bigint,boolean,symbol,null 和 undefined. 一个对象: 能够存…
function trim() { var start, end; start = 0; end = this.length - 1; while(start <= end && this.charAt(start) == " " ) { start ++; } while(start <= end && this.charAt(end) == " " ) { end --; } return this.substring…
dart的extension方法可以给已经存在的类添加新的函数,通过extension我们可以封装一些常用方法,提高开发效率. 例一:扩展String 给string添加一个log打印方法 extension StringExt on String { void log() { print('--------$this'); } } 使用 "there is something need to print".log(); 例二:扩展Widget iconfont中的图标有偏下的问题,添…
////扩展方法类:必须为非嵌套,非泛型的静态类 public static class DatetimeEx { //通过this声明扩展的类,这里给DateTime类扩展一个Show方法,只有一个参数 public static void Show(this DateTime date, string msg) { Console.WriteLine("扩展方法调用"); Console.WriteLine(msg); } }…