摘要: DictionaryDictionary is generic type Dictionary<TKey,TValue>Dictionary class is a strong type < TKey,TValue > Hence, you must specify the data types f 阅读全文
posted @ 2019-09-08 18:01 FredGrit 阅读(311) 评论(0) 推荐(0) 编辑
摘要: 1.query all the store procedures in the specfied db; 2.create proc with while loop 阅读全文
posted @ 2019-09-08 15:31 FredGrit 阅读(193) 评论(0) 推荐(0) 编辑
摘要: SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[YearSalary]( [year] [int] NULL, [salary] [money] NULL ) ON [PRIMARY] GO select * from yearsalary; select 'year' as WorkYear,[2011], 阅读全文
posted @ 2019-09-08 15:16 FredGrit 阅读(316) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Text.RegularExpressions; namespace ConsoleApp375 { class Program { static void Main(string[] args) { RegularExpressionDemo(); ... 阅读全文
posted @ 2019-09-08 13:32 FredGrit 阅读(288) 评论(0) 推荐(0) 编辑