This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <UserSettings> | |
| <ApplicationIdentity version="15.0"/> | |
| <ToolsOptions> | |
| <ToolsOptionsCategory name="Environment" RegisteredName="Environment"/> | |
| </ToolsOptions> | |
| <Category name="Environment_Group" RegisteredName="Environment_Group"> | |
| <Category name="Environment_FontsAndColors" Category="{1EDA5DD4-927A-43a7-810E-7FD247D0DA1D}" Package="{DA9FB551-C724-11d0-AE1F-00A0C90FFFC3}" RegisteredName="Environment_FontsAndColors" PackageName="Visual Studio Environment Package"> | |
| <PropertyValue name="Version">2</PropertyValue> | |
| <FontsAndColors Version="2.0"> | |
| <Theme Id="{A4D6A176-B948-4B29-8C66-53C97A1ED7D0}"/> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | windbg ANSI Command Tree 1.0 | |
| title {“Common Commands”} | |
| body | |
| {“Common Commands”} | |
| {“Information”} | |
| {“Time of dump”} {“.time”} | |
| {“Process being debugged”} {“|”} | |
| {“Dump Location”} {“||”} | |
| {“Create server on port 9999”} {“.server tcp:port=9999”} | |
| {“Show remote connections”} {“.clients”} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | namespace ConsoleApplication1 | |
| { | |
| public class BaseClass | |
| { | |
| protected string message; | |
| public string Message | |
| { | |
| get { return message; } | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class CustomTraceListener : TraceListener | |
| { | |
| public override void Write(string message) | |
| { | |
| } | |
| public override void WriteLine(string message) | |
| { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | [HttpPost] | |
| public ActionResult Index(HomeIndexViewModel viewModel) | |
| { | |
| ModelState.Remove("Number"); | |
| viewModel.Number = viewModel.Number + 1; | |
| return View(viewModel); | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @model FormValuesCached.Controllers.HomeIndexViewModel | |
| @using (Html.BeginForm()) | |
| { | |
| <input type="text" id="number" name="number" value="@(Model.Number)" /> | |
| <input type="submit" value="Click Me"/> | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | @model FormValuesCached.Controllers.HomeIndexViewModel | |
| @using (Html.BeginForm()) | |
| { | |
| @Html.TextBoxFor(m => m.Number) | |
| <input type="submit" value="Click Me"/> | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class HomeController : Controller | |
| { | |
| public ActionResult Index() | |
| { | |
| return View(new HomeIndexViewModel()); | |
| } | |
| [HttpPost] | |
| public ActionResult Index(HomeIndexViewModel viewModel) | |
| { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class Program | |
| { | |
| private static void Main(string[] args) | |
| { | |
| var words = GetWordCount(new SimpleCharacterReader()); | |
| foreach (var word in words) | |
| Console.WriteLine(word.Key + " " + word.Value); | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | namespace ConsoleApplication1 | |
| { | |
| using System; | |
| using System.Text.RegularExpressions; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var reg = Regex.Match("xyz This is just what i want.", "xyz"); |