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
| internal class MyObject | |
| { | |
| #region Properties | |
| #region PropNumericA | |
| private int _propNumericA; | |
| private bool _fPropNumericA; |
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
| import org.json4s._ | |
| import org.json4s.native.JsonMethods._ | |
| case class MarketCandle( | |
| unixCloseTime: Int, | |
| openPrice: Double, | |
| highPrice: Double, | |
| lowPrice: Double, | |
| closePrice: Double, | |
| change: Double, |
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
| #include "pch.h" | |
| #include <iostream> | |
| #include <Windows.h> | |
| #include <atlstr.h> | |
| VOID WINAPI FileWrittenCallback(DWORD dwErrorCode, DWORD dwBytesTransferred, LPOVERLAPPED lpOverlapped) { | |
| if (dwErrorCode != 0) { | |
| fprintf(stdout, "CompletionRoutine: Unable to write to file! Error: %u, AddrOverlapped: %p\n", dwErrorCode, lpOverlapped); | |
| } |
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
| Product GetProductById(int id) | |
| { | |
| return (id > 0) ? _productRepository.Get(id) : null; | |
| } |
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.IO; | |
| using System.Web; | |
| using System.Web.Caching; | |
| using System.Web.Hosting; | |
| public static class Fingerprint | |
| { | |
| public static string Tag(string rootRelativePath) | |
| { |