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 MyClass | |
| { | |
| IList<object> _myObjects; | |
| public IEnumerable<object> MyObjects | |
| { | |
| get { return _myObjects = (_myObjects ?? new List<object>()); } | |
| } | |
| } | 
  
    
      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 MyClass | |
| { | |
| IList<object> _myObjects; | |
| public IEnumerable<object> MyObjects | |
| { | |
| get { return _myObjects; } | |
| } | |
| public MyClass() | |
| { | 
  
    
      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
    
  
  
    
  | ;Reverse Scrolling | |
| WheelUp:: | |
| Send {WheelDown} | |
| Return | |
| WheelDown:: | |
| Send {WheelUp} | |
| Return | 
  
    
      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
    
  
  
    
  | Application xlApp; | |
| Workbooks xlBooks; | |
| Workbook xlBook; | |
| Worksheet xlSheet; | |
| public IndexUpdaterExcelService() | |
| { | |
| try | |
| { | |
| try | 
  
    
      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
    
  
  
    
  | _excelWB = CType(GetObject(_fileNameAndPath), Excel.Workbook) | |
| _excelApp = CType(_excelWB.Parent, Excel.Application) | |
| _excelApp.Visible = True | |
| _excelWS = CType(_excelWB.Worksheets(1), Excel.Worksheet) | 
  
    
      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
    
  
  
    
  | using System; | |
| using System.ServiceModel; | |
| using BenchmarkPlus.RMS.Infrastructure.AlphaCorrelations; | |
| using BenchmarkPlus.RMS.Infrastructure.Configuraiton; | |
| namespace BenchmarkPlus.RMS.Infrastructure.Services | |
| { | |
| public class WcfCalculationService : ICalculationService | |
| { | |
| ChannelFactory<AlphaCorrelationsServiceChannel> _factory; | 
  
    
      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
    
  
  
    
  | <html> | |
| <head> | |
| <title>Respawn Timer</title> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| var timerId; | |
| $(function(){ | |
| $("#TimeBox p:first").css("display", "block"); | 
  
    
      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
    
  
  
    
  | using Machine.Specifications; | |
| using Machine.Specifications.DevelopWithPassion.Rhino; | |
| namespace Specs | |
| { | |
| public class TestSpecs | |
| { | |
| public abstract class concern : Observes | |
| { | |
| Establish c = () => | 
  
    
      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
    
  
  
    
  | $(function() { | |
| $('.' + (window.location.href).match(/\d/g).join('')).click(); | |
| }); | 
  
    
      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
    
  
  
    
  | <!-- Publish to Daily Build Location --> | |
| <Target Name="PublishDailyBuild"> | |
| <MSBuild Projects="MyProject.csproj" | |
| Targets="Clean;Publish" | |
| Properties="Configuration=Release; | |
| Platform=x86; | |
| PublishDir=$(DailyBuildDir); | |
| PublishUrl=$(DailyBuildDir); | |
| InstallUrl=$(DailyBuildDir); | |
| ApplicationVersion=$(Version); |