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; | |
| using System.Collections.Generic; | |
| namespace LinkedListExample | |
| { | |
| public class Node<T> | |
| { | |
| public Node(T value) | |
| { |
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; | |
| using System.Threading.Tasks; | |
| using System.Threading; | |
| namespace ConcurrencyTester | |
| { | |
| class Program | |
| { |
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
| [JsonObject] | |
| internal class ServiceResult | |
| { | |
| public bool IsValid | |
| { | |
| get; | |
| } | |
| public string ServiceName | |
| { |
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 VerticesTest | |
| { | |
| public class VertexTest : IDisposable | |
| { | |
| [DllImport("vertices.dll")] | |
| public static void Compute(IntPtr vertices, IntPtr noise, int cSizeM2, int cSizeP2, int N); | |
| private int[] _vertices; | |
| private int[] _noise; |
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 Foos.DataModel | |
| { | |
| public class Foo | |
| { | |
| private Foo() {} | |
| public Foo(Bar bar) | |
| { | |
| Bar = bar; |