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 OMR.Core.Collections | |
{ | |
using System; | |
using System.Collections.Concurrent; | |
using System.Threading; | |
/// <summary> | |
/// This class implements a collection of multi-threaded queue. | |
/// 2012 - OMR | |
/// </summary> |
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.Text; | |
namespace NumberToAlpha | |
{ | |
public static class NumericExtensions | |
{ | |
public static string ToAlphabetic(this int number) | |
{ | |
if (number < 1) |
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.Collections.Generic; | |
using System.Threading; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
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.IO; | |
namespace Generators.RandomStream.Demo | |
{ | |
class Program | |
{ | |
static Random _random = new Random(); | |
static void Main(string[] args) |
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.Linq; | |
using System.Reflection; | |
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
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
/// 2013-12-22 Omer Faruk ZORLU | |
/// http://zor.lu | |
namespace Depthloy.Common.Helpers | |
{ | |
using Depthloy.Common.Domain; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
public class GenericDiffrenceDetector<T> |
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 Depthloy.Common.Cache; | |
using Depthloy.Common.Helpers; | |
using Depthloy.Common.Interfaces.Cache; | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Threading; | |
namespace Depthloy.Server.WebServices | |
{ |
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
require("vector") | |
local physics = require("physics") | |
physics.setDrawMode("normal") | |
physics.start() | |
local ground = display.newRect(0,470,320,10) | |
ground.anchorX, ground.anchorY = 0,0 | |
ground:setFillColor(0,1,0) | |
physics.addBody(ground,"static") |
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 OMR.Core.Helpers | |
{ | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class EventAggregator | |
{ | |
public IDictionary<Type, IList> Subscribers; |
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.Transactions; | |
namespace TransactionInterceptorSample | |
{ | |
class MainClass | |
{ | |
public static void Main(string[] args) | |
{ |
OlderNewer