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.Collections.Concurrent; | |
using System.Diagnostics.Contracts; | |
using System.Reflection; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace Microsoft.Win32 | |
{ | |
/// <summary> | |
/// See http://msdn.microsoft.com/en-us/library/cc231196.aspx for details. |
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; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
foreach (var item in GetSequence().Take(50)) | |
{ |
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.IO; | |
using System.Linq; | |
using PdfSharp.Pdf; | |
using PdfSharp.Pdf.IO; | |
// <?xml version="1.0" encoding="utf-8"?> | |
// <packages> | |
// <package id="iTextSharp" version="5.5.9" targetFramework="net452" /> | |
// <package id="PDFsharp" version="1.32.3057.0" targetFramework="net452" /> | |
// </packages> |
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.Windows.Forms; | |
namespace EnumPrimes | |
{ | |
public struct Rational | |
{ |
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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Target Name="Build"> | |
<Copy SourceFiles="copy.proj" DestinationFiles="destination.proj" /> | |
</Target> | |
<UsingTask TaskName="Copy" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll"> | |
<ParameterGroup> | |
<SourceFiles Required="true" ParameterType="Microsoft.Build.Framework.ITaskItem[]" /> | |
<DestinationFolder ParameterType="Microsoft.Build.Framework.ITaskItem" /> |
NewerOlder