Skip to content

Instantly share code, notes, and snippets.

View jsinh's full-sized avatar
🎧
Zen Mode On

Jaspalsinh Chauhan jsinh

🎧
Zen Mode On
View GitHub Profile
@jsinh
jsinh / Example1.cs
Created June 11, 2017 07:19 — forked from davidfowl/Example1.cs
How .NET Standard relates to .NET Platforms
namespace Analogy
{
/// <summary>
/// This example shows that a library that needs access to target .NET Standard 1.3
/// can only access APIs available in that .NET Standard. Even though similar the APIs exist on .NET
/// Framework 4.5, it implements a version of .NET Standard that isn't compatible with the library.
/// </summary>INetCoreApp10
class Example1
{
public void Net45Application(INetFramework45 platform)
@jsinh
jsinh / keybase.md
Created April 14, 2015 22:59
keybase.md

Keybase proof

I hereby claim:

  • I am jsinh on github.
  • I am jsinh (https://keybase.io/jsinh) on keybase.
  • I have a public key whose fingerprint is B770 2524 4335 D7C8 F72E 7231 291C B42B 181B 990D

To claim this, I am signing this object:

@jsinh
jsinh / MSMQ using Rx - Code snippet for MSMQ receive timeout problem.cs
Created December 21, 2011 12:18
MSMQ using Rx - Code snippet for MSMQ receive timeout problem
using System;
using System.Messaging;
using System.Reactive.Concurrency;
using System.Reactive.Linq;
namespace MSMQPubSubRx
{
class Program
{
public static MessageQueue msmqQueue;