Guest User

Untitled

a guest
Jun 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. using System;
  2. using System.Diagnostics;
  3. using System.Web;
  4. using System.Web.Caching;
  5.  
  6. namespace ConsoleApplication2
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Stopwatch sw = Stopwatch.StartNew();
  13. Cache cache = HttpRuntime.Cache;
  14. Console.WriteLine(sw.Elapsed.ToString());
  15. Console.ReadLine();
  16. }
  17. }
  18. }
Add Comment
Please, Sign In to add comment