This file contains 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; | |
namespace SomeNameSpace | |
{ | |
public class TEqualityComparer<T> : EqualityComparer<T> | |
{ | |
private TEqualityComparer() | |
{ |
This file contains 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
{ | |
"version": "0.2.0", | |
"configurations": [ | |
// Create a dotnet core class library named 'mylib' with pressing F5 | |
{ | |
"name": "Create_mylib", | |
"type": "coreclr", | |
"request": "launch", | |
"program": "dotnet", |
This file contains 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 HtmlAgilityPack; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Diagnostics; | |
namespace DotNet20_Test | |
{ | |
static class Program | |
{ |