09 2020 档案
摘要:Select可实现类似map的功能 > var arr = new byte[] { 2, 3, 4 }; > arr.Select(a => Convert.ToString(a, 16).PadLeft(2, '0')); > var hex = arr.Select(a => Convert.
阅读全文
摘要:来源:https://sqlandhadoop.com/spark-dataframe-in-isin-not-in/ 摘要:To use the condition as “NOT IN”, you can use negation (!) before the column name in th
阅读全文
摘要:参考:https://github.com/scopt/scopt scopt is a little command line options parsing library. Sonatype libraryDependencies += "com.github.scopt" %% "scopt
阅读全文
摘要:来源:https://stackoverflow.com/questions/936304/binding-to-static-property public class VersionManager : DependencyObject { public static readonly Depen
阅读全文
摘要:参考:https://stackoverflow.com/questions/2104013/wpf-groupbox-header-position-alignment 对GroupBox应用下面的Style就可以了 <Style x:Key="GroupBoxStyle1" TargetType
阅读全文
摘要:一、ClientServerProject 项目地址:https://github.com/dathlin/ClientServerProject 项目描述: 一个基于中小型提炼的C-S开发框架,覆盖电脑端,web端,手机端的全平台系统模版,在大多数的一对多的系统设计中会包含一些常用的重复的功能代码
阅读全文