摘要:
C#.net 提供的4个关键字,in,out,ref,paras开发中会经常用到,那么它们如何使用呢? 又有什么区别? 1 in in只用在委托和接口中; 例子: 1 2 3 4 5 6 7 8 9 10 11 12 //测试模型 class Model { public int a { get; 阅读全文
摘要:
MS SQL自定义函数IsPositiveInteger 判断字符串是否为正整数,0开始的的数字不算。 SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE FUNCTION [dbo].[svf_IsPositiveInteger] ( @ 阅读全文