text stringlengths 1 932k |
|---|
namespace _2016ODataInEF.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("HumanResources.Shift")]
public partial class Shift
{
[Syst... |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
/... |
using ScalaWay.Specification;
using ScalaWay.Specification.Builder;
using WorkspaceService.Domain.Models.Workspaces;
namespace WorkspaceService.EntityFrameworkCore.Specifications.Workspaces
{
public class WorkspaceListSpec : Specification<Workspace>
{
public WorkspaceListSpec(Guid ownerId)
{
... |
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace BlueForest.MqttNet.Dataflow
{
public interface IMqttSourceBlockCodec<T>
{
ValueTask<IEnumerable<T>> GetMessageAsync(byte[] payload, CancellationToken cancel = default);
}
} |
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
// Ported from um/ShObjIdl_core.h in the Windows SDK for Windows 10.0.22000.0
// Original source is Copyright © Microsoft. All rights reserved.
using NUnit.Framework;
using... |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
usin... |
/*
* Exchange Web Services Managed API
*
* Copyright (c) Microsoft Corporation
* All rights reserved.
*
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the "Software"), to deal in the Software
* without restr... |
using System;
using ChargifyNET;
using ChargifyDotNetTests.Base;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace ChargifyDotNetTests
{
[TestClass]
public class RenewalPreviewTests : ChargifyTestBase
{
[TestMethod]
public void RenewalPreview_CanCreate()
... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Sockets;
using System.Reflection;
using System.Text;
using System.Xml.Linq;
using client.DynamicXml;
using client.Handlers;
using Domain;
using DryIoc;
using Microsoft.Extensions.DependencyInjection;
using DryIoc.AspNe... |
using System;
using Mono.Cecil;
namespace spaar.ModLoader.Injector
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Assembly-UnityScript.dll location:");
string pathUnityScript = Console.ReadLine();
Console.WriteLine("Output path:");
string pathOutput = Conso... |
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fi... |
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class UIControl : MonoBehaviour {
public Text remainingTimeText;
public void UpdateRemainingTime(){
if(remainingTimeText != null){
remainingTimeText.text = GameControl.self.timeUntilNext.ToString("0.0");
}
}
// Use this for initia... |
// Copyright 2007-2014 Chris Patterson, Dru Sellers, Travis Smith, et. al.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
/... |
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Horology;
using BenchmarkDotNet.Jobs;
using System;
namespace Umbraco.Tests.Benchmarks.Config
{
/// <summary>
/// Configures the benchmark to run with less warmup and a shorter iteration time than the standard benchmark.
/// </summary>
public class ... |
// <auto-generated />
// Built from: hl7.fhir.r5.core version: 4.6.0
// Option: "NAMESPACE" = "fhirCsR5"
using System;
using System.Collections.Generic;
using System.Text.Json;
using System.Text.Json.Serialization;
using fhirCsR5.Serialization;
namespace fhirCsR5.Models
{
/// <summary>
/// Todo.
/// </summary... |
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// package mypkg -- go2cs converted at 2020 October 09 05:08:55 UTC
// import "cmd/internal/goobj.mypkg" ==> using mypkg = go.cmd.@internal.goobj.mypkg_package
... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//-----------------------------------------... |
namespace FortBlast.Enums
{
public enum ItemType
{
Spawnable,
UpgradeHelper,
Consumable
}
} |
using System;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace MaxLib.Net.Webserver.Remote
{
internal class MarshalContainer : MarshalByRefObject
{
public HttpDataSource Origin { get; private set; }
public void SetOrigin(HttpDataSource origin)
{
... |
using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace MaestroApp.Migrations
{
public partial class quitarFechaC : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "FechaCreacion",
... |
using System;
using System.Collections.Generic;
using System.Text;
namespace ChatServer.Models
{
public class User
{
public long UserId { get; set; }
public string UserName { get; set; }
public string NickName { get; set; }
public string PassWord { get; set; }
public by... |
using Newtonsoft.Json;
namespace I8Beef.Ecobee.Protocol.Objects
{
/// <summary>
/// Ecobee API action.
/// </summary>
[JsonObject(MemberSerialization.OptIn)]
public class Action
{
/// <summary>
/// Values: activateRelay, adjustTemp, doNothing, shutdownAC, shutdownAuxHeat,
... |
using System;
namespace Library.Domain.Core.Commands
{
public interface ICommandHandler<TCommand> : IDisposable where TCommand : ICommand
{
void Execute(TCommand command);
}
} |
using System;
using System.Collections.Generic;
using System.Fabric;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.ServiceFabric.Services.Communication.AspNetCore;
using Micro... |
using System;
using AsmJit.Common;
namespace AsmJit.CompilerContext
{
internal class ConstantPool
{
internal interface IVisitor
{
void Visit(Node node);
}
internal class Gap
{
internal Gap Next { get; set; }
internal int Offset { get; set; }
internal int Length { get; set; }
}
internal... |
using System.Collections.Generic;
using HelpRequest.Controllers;
using HelpRequest.Controllers.Helpers;
using HelpRequest.Core.Domain;
using HelpRequest.Tests.Core.Helpers;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using MvcContrib.TestHelper;
using Rhino.Mocks;
namespace HelpRequest.Tests.Controllers.Ticke... |
using ImageMetaExtractor.Common;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace ImageMetaExtractor.Reader
{
/// <summary>
/// 画像メタ情報インターフェースの抽象クラス
/// </summary>
abstract class ImageMetaBase : IImageMeta
{
public string ImagePath { get; }
... |
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>
namespace Zell.UiPathAutomation.Orchestrator.Models
{
using Newtonsoft.Json;
using System.Linq;
public partial class ... |
using UnityEngine;
using System.Collections.Generic;
using ILRuntime.Other;
using System;
using System.Reflection;
using ILRuntime.Runtime.Enviorment;
using ILRuntime.Runtime.Intepreter;
using ILRuntime.CLR.Method;
using ILRuntime.CLR.TypeSystem;
using ILRuntime.Runtime.Stack;
public unsafe class Vector2Binder : Valu... |
// Decompiled with JetBrains decompiler
// Type: SqlDataProvider.Data.AchievementData
// Assembly: SqlDataProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: E6C792E1-372D-46D0-B366-36ACC93C90BB
// Assembly location: C:\Users\Pham Van Hungg\Desktop\Decompiler\Road\SqlDataProvider.dll
using System... |
using System;
class SumOfElements
{
static void Main()
{
string input = Console.ReadLine();
string[] stringNumbers = input.Split(' ');
long[] numbers = new long[stringNumbers.Length];
bool elementFound = false;
long minDifference = long.MaxValue;
long sum = 0;
... |
using AppKit;
namespace TextToSpeechSample.Mac
{
static class MainClass
{
static void Main(string[] args)
{
NSApplication.Init();
NSApplication.Main(args);
}
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;... |
using System.Collections.Generic;
namespace Sidekick.Business.Apis.Poe.Models
{
/// <summary>
/// Currencies, Fragments, Maps, etc.
/// </summary>
public class StaticItemCategory
{
public string Id { get; set; }
public string Label { get; set; }
public List<StaticItem> Entri... |
using Newtonsoft.Json;
using System.Collections.Generic;
namespace CCXT.NET.Shared.Coin.Private
{
/// <summary>
///
/// </summary>
public interface IWalletItem
{
/// <summary>
///
/// </summary>
string userId
{
get;
set;
}
... |
using System.Collections.Generic;
using Example.Destinations;
using Example.Resolvers;
using GeneratedMapper.Attributes;
namespace Example.Sources
{
[MapTo(typeof(SimpleDestination), Index = 1)]
[MapTo(typeof(ComplexDestination), Index = 2)]
public class Source
{
[MapWith("Name", Index = 2)]
... |
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fi... |
// Copyright © Dominic Beger 2018
using System;
using System.Drawing;
using System.Windows.Forms;
namespace nUpdate.UpdateInstaller.UI.Popups
{
public class Popup
{
/// <summary>
/// Shows a new popup-window.
/// </summary>
/// <param name="popupIcon">The icons of the popu... |
namespace Mtf.Windows.Enums
{
public enum DISPLAYCONFIG_ROTATION : uint
{
DISPLAYCONFIG_ROTATION_IDENTITY = 1,
DISPLAYCONFIG_ROTATION_ROTATE90 = 2,
DISPLAYCONFIG_ROTATION_ROTATE180 = 3,
DISPLAYCONFIG_ROTATION_ROTATE270 = 4,
DISPLAYCONFIG_ROTATION_FORCE_UINT32 = 0xFFFFFFFF
}
} |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using RC.Common.Enumerations;
namespace RC.Common.Model.Patterns
{
public class PatternStatisticModel
{
public IList<PatternAdjacentResultModel> PatternAdjacentResults { get; set; }
... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace ContactManager
{
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using MicroNetCore.AspNetCore.Paging;
using MicroNetCore.Models;
using MicroNetCore.Rest.Abstractions;
using MicroNetCore.Rest.MediaTypes.Hypermedia.Extensions;
using MicroNetCore.Rest.MediaTypes.Hypermedia.Helpers;
using Micro... |
using static Lsj.Util.Win32.User32;
namespace Lsj.Util.Win32.Enums
{
/// <summary>
/// <para>
/// <see cref="ChildWindowFromPointEx"/> Flags
/// </para>
/// <para>
/// From: <see href="https://docs.microsoft.com/zh-cn/windows/win32/api/winuser/nf-winuser-childwindowfrompointex"/>
/// </par... |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... |
using System.Collections.Generic;
using System.Collections.Immutable;
namespace Statiq.Common
{
/// <summary>
/// Contains a collection of documents output by pipelines.
/// </summary>
public interface IPipelineOutputs : IEnumerable<IDocument>
{
/// <summary>
/// Gets documents by ... |
using System.Collections.Generic;
using Entitas;
public class RenderPositionSystem : IReactiveSystem {
public IMatcher trigger
{ get
{
return Matcher.AllOf(Matcher.Position, Matcher.View)
;
}
}
public GroupEventType
eventType { get { return
G... |
using System.Collections.ObjectModel;
using System.Text.Json;
namespace Blockfrost.Api.Models
{
/// <summary>
/// A collection of <see cref="TxMetadataLabelCborResponse"/>
/// </summary>
public partial class TxMetadataLabelCborResponseCollection : Collection<TxMetadataLabelCborResponse>
{
/... |
using System.Threading;
using Prometheus;
namespace Lucent.Common
{
/// <summary>
/// Shim class to handle distributed values
/// </summary>
public class DistributedValue
{
long _current = 0L;
/// <summary>
/// Get/Set the last value
/// </summary>
/// <valu... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using System.Text;
using Silk.NET.Core;
using Silk.NET.Core.Native;
using Silk.NET.Core.At... |
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
namespace Owin.IAppBuilderBridge
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddDataProtection();
}
... |
using System.IO;
using System.Text;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using NLog;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace TimberWinR.Outputs
{
public class FileOutput : OutputSender
{
private Ti... |
namespace ImageSharp.Benchmarks.General.Vectorization
{
using System.Numerics;
using BenchmarkDotNet.Attributes;
public class MulUInt32
{
private uint[] input;
private uint[] result;
[Params(32)]
public int InputSize { get; set; }
private uint testValue;
... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Diagnostics;
u... |
// ---------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// ---------------------------------------------------------------
namespace Microsoft.Azure.Devices
{
using Newtonsoft.Json;
/// <summary>
/// Result of a device message queue ... |
using System;
using System.Runtime.Serialization;
namespace BondTech.HotkeyManagement.Win
{
#region **Exceptions
[Serializable]
public class HotKeyAlreadyRegisteredException : Exception
{
public GlobalHotKey HotKey { get; private set; }
public LocalHotKey LocalKey { get; private set; }... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IteratorsAndComaparators
{
public class Library : IEnumerable<Book>
{
private List<Book> books;
public Library(params Book[] books)
{
this.books = new L... |
using System.Linq;
using System.Threading.Tasks;
using Abp.Application.Services;
using HostingStore.Products;
namespace HostingStore.ProductService
{
public interface IProductBrandService : IApplicationService
{
Task<ProductBrand> Create(string name, string desc, string image);
Task<ProductBra... |
using System;
using System.Runtime.Serialization;
namespace CoreWCF
{
[Serializable]
public class ServiceActivationException : CommunicationException
{
public ServiceActivationException() { }
public ServiceActivationException(string message) : base(message) { }
public ServiceActiva... |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.ApiHub;
namespace Microsoft.Azure.WebJobs.Extensions.ApiHub.Table
{
internal class Tab... |
using System;
using JetBrains.Annotations;
namespace BenchmarkDotNet.Engines
{
public static class HostExtensions
{
[StringFormatMethod("messageFormat")]
public static void WriteLine(
this IHost host, string messageFormat, params object[] args) =>
host.WriteLine(string.... |
using System;
namespace Questionnaire.Host.Polls
{
public sealed class AnswerViewModel
{
public Guid Id { get; set; }
public string Text { get; set; }
public EntityType NextEntityType { get; set; }
public Guid NextEntityId { get; set; }
public enum EntityType
... |
using System;
namespace BusinessApp.DatabaseTest.Model
{
public class PocoProperties
{
public long Id { get; set; }
public string Title { get; set; }
public DateTime Date { get; set; }
}
} |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using Humanizer;
using ModelHelper.Core.Project;
using ModelHelper.Core.Project.V1;
using Newtonsoft.Json;
namespace ModelHelper.Core.Extensions
{
... |
using ordercloud.integrations.library;
namespace Headstart.Models.Headstart
{
public class HSLineItemOrder
{
public HSOrder HSOrder { get; set; }
public HSLineItem HSLineItem { get; set; }
}
} |
using Bloom.Data.Interfaces;
namespace Bloom.Data.Tables
{
/// <summary>
/// Represents the album table.
/// </summary>
/// <seealso cref="Bloom.Data.Interfaces.ISqlTable" />
public class AlbumTable : ISqlTable
{
/// <summary>
/// Gets the create album table SQL.
/// </... |
#pragma checksum "C:\Users\Robby\Documents\GitHub\invocationsofgreatness\Pages\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7091c65830b0329e613be026ede8a57552863778"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(... |
// MonoGame - Copyright (C) The MonoGame Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
using System;
using System.Collections.Generic;
using System.IO;
using Eto.Drawing;
using Eto.Forms;
namespace MonoGame.Tools.Pipeline
{
pu... |
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
using SportyApi.Models.Core.Domain;
using SportyApi.Models.Core.Repositories;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SportyApi.Models.Persistence.Repositories
{
public clas... |
using App.Identity.Managers;
using Domain.Core.Entities;
using Microsoft.AspNet.Identity;
using System.Security.Claims;
using System.Threading.Tasks;
namespace App.Identity
{
public class AppUserEntity : UserEntity, IUser<int>
{
public int ScreenAutoLockMinutes { get; set; }
public async Task<ClaimsIdentity> G... |
using System;
using Octopus.Client.Model;
namespace Octopus.Client.Repositories
{
public interface IDeploymentProcessRepository : IGet<DeploymentProcessResource>, IModify<DeploymentProcessResource>
{
ReleaseTemplateResource GetTemplate(DeploymentProcessResource deploymentProcess, ChannelResource channe... |
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2019 iText Group NV
Authors: iText Software.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3
as published by the Free Software Foundation ... |
// Copyright (c) .NET Foundation and Contributors. All Rights Reserved. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
using System;
namespace LLVMSharp.Interop
{
public unsafe partial struct LLVMRemarkParserRef : IEquatable<LLVMRemarkParserRef>
{
pub... |
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace UnityCoroutineUtils
{
public static class Co
{
//disable naming convention rules
#pragma warning disable IDE1006
public static IEnumerator sequence(IEnumerator first, params IEnumerator[] others)
... |
using Repository;
using System;
namespace HRIS.Data.Entity
{
public class sys_CompanySetting : EntityBase
{
public Guid settingId { get; set; }
public Guid? companyId { get; set; }
public string value { get; set; }
public Guid updatedBy { get; set; }
public DateTime upda... |
// <copyright file="Highlight.cs" company="Geo.NET">
// Copyright (c) Geo.NET.
// Licensed under the MIT license. See the LICENSE file in the solution root for full license information.
// </copyright>
namespace Geo.Here.Models.Responses
{
using System.Collections.Generic;
using Newtonsoft.Json;
/// <sum... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Text;
using Approve.Common;
using Approve.EntityBase;
public partial class Share_Sys_SysNameList : System.Web.UI.Page
{
protected void Page_Load(object sender, Ev... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
/****************************************************************************
op1%op2, op1 is of type r8, op2 can be i4, u4, i8, u8, r4, r8, decimal
op1 and op2 can be static, local,... |
// Fig. 12.17: ComplexNumber.cs
// Class that overloads operators for adding, subtracting
// and multiplying complex numbers.
using System;
public class ComplexNumber
{
// read-only property that gets the real component
public double Real { get; private set; }
// read-only property that gets the imagina... |
#region Copyright notice and license
// Copyright 2017 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless req... |
using FluentAssertions;
using System;
using System.Collections.Generic;
using Xunit;
namespace Kf.Essentials.Tests.UnitTests.System
{
public sealed class ObjectExtenions_DebuggingTests
{
[Theory, MemberData(nameof(CreateDebugString_with_expressions_creates_correct_string_TestData))]
public voi... |
// *** WARNING: this file was generated by the Pulumi SDK Generator. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
namespace Pulumi.Azur... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace PersistentClipboard
{
public class ClippedItemFile : IDisposable, ICollection<ClippedItem>
{
private const UInt32 blockSize = 4096;
private long lastSaved... |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// As informações gerais sobre um assembly são controladas através do seguinte
// conjunto de atributos a seguir. Altere esses valores de atributo para modificar as informações
// associadas a um assembly.
[assembly:... |
using System.Collections.Generic;
using UnityEngine;
using YxFramwork.Common.Utils;
using Sfs2X.Entities.Data;
using Assets.Scripts.Game.bjlb.View;
using YxFramwork.Common.Model;
using YxFramwork.Enums;
namespace Assets.Scripts.Game.bjlb
{
public class BjlGameData:YxGameData
{
public bool BeginBet =... |
namespace cmdwtf.NumberStones.Rollers
{
/// <summary>
/// Easy to use instances of the different available rollers.
/// </summary>
public static class Instances
{
/// <summary>
/// The default roller. Currently an instance of <see cref="MersenneTwisterDieRoller"/>
/// </summary>
public static IDieRoller D... |
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Wms.Models.Data.Agile;
public class TeamEntityTypeConfiguration : IEntityTypeConfiguration<Team>
{
public void Configure(EntityTypeBuilder<Team> builder)
{
// builder.HasKey(c => new {
// ... |
// Copyright (c) Microsoft Open Technologies, Inc. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Generic;
using Microsoft.CodeAnalysis.Text;
using Roslyn.Utilities;
using Cci = Microsoft.Cci;
namespace Mic... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.5466
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// This file does NOT gener... |
namespace _07.SalesReport
{
public class Sale
{
public string Town { get; set; }
public string Product { get; set; }
public decimal Price { get; set; }
public decimal Quantity { get; set; }
public Sale(string town, string product, decimal price, decimal quantity)
... |
using Hummingbird.Extensions.Cacheing;
using Hummingbird.Extensions.Cacheing.StackExchange;
using Hummingbird.Extensions.Cacheing.StackExchangeImplement;
using System;
namespace Microsoft.Extensions.DependencyInjection
{
public static class DependencyInjectionExtersion
{
#if NETSTANDARD || NET461
publ... |
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "l... |
using System;
using System.Collections.Generic;
using BurningKnight.level.rooms;
using BurningKnight.save;
using BurningKnight.state;
using BurningKnight.util;
using Lens.util;
using Lens.util.math;
namespace BurningKnight.level.builders {
public class LineBuilder : RegularBuilder {
private float Direction;
publ... |
using ReactUnity.Converters;
using ReactUnity.Styling;
using ReactUnity.Types;
using UnityEngine;
using UnityEngine.UIElements;
namespace ReactUnity.UIToolkit
{
public class ImageComponent : UIToolkitComponent<Image>
{
public ImageComponent(UIToolkitContext context, string tag) : base(context, tag)
... |
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
... |
// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Overlays;
using SixLabors.ImageSharp.Tests.TestUtilities;
using Xunit;
namespace SixLabors.I... |
/* * * * * * * * * * * * * *
* A simple expression parser
* --------------------------
*
* The parser can parse a mathematical expression into a simple custom
* expression tree. It can recognise methods and fields/contants which
* are user extensible. It can also contain expression parameters which
* are regis... |
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
// Ported from um/winnt.h in the Windows SDK for Windows 10.0.20348.0
// Original source is Copyright © Microsoft. All rights reserved.
namespace TerraFX.Interop
{
publ... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.