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.Linq; | |
using System.Text; | |
namespace CycleGraph | |
{ | |
public class Node | |
{ | |
public int Id { get; set; } |
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 ClientWrapperUsage | |
{ | |
public static void main(string[] args) | |
{ | |
using(var clientWrapper = new ServiceClientWrapper<ServiceType>()) | |
{ | |
var response = clientWrapper.Channel.ServiceCall(); | |
} | |
} | |
} |
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 test | |
{ | |
public void main(string[] args) | |
{ | |
Console.WriteLine("Hello world!"); | |
Console.ReadLine(); | |
} | |
} |
NewerOlder