Sign in
Rico Mariani's Performance Tidbits
Implying no warranties and conferring no rights: "AS IS" since 1988
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Tags
databases
debuggers
design advice
History of Visual Studio
locking
Pages
performance
quiz
ramblings
recommendations
signatures
using tools
visual studio
Browse by Tags
MSDN Blogs
>
Rico Mariani's Performance Tidbits
>
All Tags
>
pages
Tagged Content List
Blog Post:
quiz10.cs
ricom
// quiz10.cs // this program is offered as is with no warranty implied and confers no rights . using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace Quiz10 { class Program { [ThreadStatic] private static Dictionary myItems = new Dictionary...
on
18 Jul 2006
Blog Post:
parser_jitting.cs
ricom
// parser_jitting.cs // this program is offered as is with no warranty implied and confers no rights . using System; using System.Collections.Generic; using System.Text; using System.Reflection; using System.Reflection.Emit; namespace ParserJitting { public class Program { // a few sample predicates...
on
30 Nov 2005
Blog Post:
parser_compiling.cs
ricom
// parser_compiling.cs // this program is offered as is with no warranty implied and confers no rights . using System; using System.Collections.Generic; using System.Text; namespace ParserCompiling { class Program { // a few sample predicates, we will use these in a loop to simulate more of them...
on
29 Nov 2005
Blog Post:
parser_original.cs
ricom
// parser_original.cs // this program is offered as is with no warranty implied and confers no rights . namespace ParserOriginal { class Program { // a few sample predicates, we will use these in a loop to simulate more of them static string[] predicates = { "fact1", "fact2", "fact3", "fact2 & fact1...
on
22 Nov 2005
Blog Post:
logdump.cs
ricom
// logdump.cs -- a little utility program that dumps summary statistics for CLR profiler logs // © 2005 Microsoft Corporation // csc /o+ logdump.cs is all you need to do to build it. // this program is offered as is with no warranty implied and confers no rights . using System; using System.Text;...
on
8 Aug 2005
Page 1 of 1 (5 items)