text
stringlengths
1
932k
using System.Collections.Generic; using System.Text.RegularExpressions; namespace Nvelope { public static class RegexExtensions { public static IEnumerable<Group> ToList(this GroupCollection coll) { foreach (var g in coll) yield return g as Group; } } }
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // <auto-generated/> #nullable disable using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Threading; using System.Threading.Tasks; using A...
public class Employee { private string name; private decimal salary; private string position; private string department; private string email = "n/a"; private int age = -1; public Employee(string name, decimal salary, string position, string department) { this.Name = name; ...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.1 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------...
using CocosSharp; using System; using CozyAdventure.View.Layer; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CozyAdventure.View.Scene { public class AdventureScene: CCScene { public AdventureScene() : base(AppDelegate.SharedWindow) ...
// Copyright (c) Six Labors and contributors. // Licensed under the Apache License, Version 2.0. namespace SixLabors.ImageSharp.Metadata.Profiles.Exif { /// <summary> /// All exif tags from the Exif standard 2.31. /// </summary> internal enum ExifTagValue { /// <summary> /// Unknown...
using System; namespace Avalonia.Remote.Protocol.Designer { [AvaloniaRemoteMessageGuid("9AEC9A2E-6315-4066-B4BA-E9A9EFD0F8CC")] public class UpdateXamlMessage { public string Xaml { get; set; } public string AssemblyPath { get; set; } public string XamlFileProjectPath { get; set; }...
//using System.Collections; //using System.Collections.Generic; //using UnityEngine; //using Unity.Entities; //using AISenses; //using Unity.Burst; //using Unity.Jobs; //using IAUS.ECS2.Component; //using Unity.Collections; //namespace IAUS.ECS2.Systems //{ // public class WaitActionSystem : SystemBase // { // ...
using System; namespace ECMABasic.Core.Expressions { public class VariableExpression : IExpression { public VariableExpression(string name) { Name = name; } public string Name { get; } public bool IsString { get { return Name.EndsWith('$'); } } public bool IsNumeric { get ...
using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Reflection; using System.Text; using VRC.Udon.Common.Interfaces; using VRC.Udon.Editor; using VRC.Udon.EditorBindings; using VRC.Udon.Graph; using VRC.Udon.Graph.Interfaces; using VRC.Udon.Graph.NodeRegistries; using VRC.Udon.U...
using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Test")] [assembly: AssemblyDescription(""...
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; using Microsoft.Extensions.Configuration; using Blog_Test_Petros_Ohanyan.Configuration; using Blog_Test_Petros_Ohanyan.Web; namespace Blog_Test_Petros_Ohanyan.EntityFrameworkCore { /* This class is needed to run "dotnet ef ..." comma...
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Dynamic.Core; using System.Net; using System.Threading; using System.Threading.Tasks; using MongoDB.Driver; using MongoDB.Driver.Linq; using Volo.Abp.Domain.Repositories.MongoDB; using Volo.Abp.MongoDB; namespace Volo.Abp.AuditLoggin...
namespace NFCerta.NFe.Schemas.Cabecalhos { /// <remarks/> [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")] [System.SerializableAttribute()] [System.Diagnostics.DebuggerStepThroughAttribute()] [System.ComponentModel.DesignerCategoryAttribute("code")] [System.Xml.Seriali...
// *** 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 Dapper; using Discount.Grpc.Entities; using Microsoft.Extensions.Configuration; using Npgsql; using System; using System.Threading.Tasks; namespace Discount.Grpc.Repositories { public class DiscountRepository : IDiscountRepository { private readonly IConfiguration _configuration; public...
namespace MyProject.Infrastructure.EntityFrameworkDataAccess.Proxies { using System; using System.Collections.Generic; using MyProject.Domain.Customers; public class Customer : Domain.Customers.Customer { public Customer(Domain.Customers.Customer customer, IEnumerable<Guid> accounts) ...
using System; using System.Configuration; using Nucleo.Configuration; using Nucleo.Providers.Configuration; namespace Nucleo.Security.Configuration { public class SecuritySettingsSection : ProviderConfigurationSectionBase { [ ConfigurationProperty("defaultProvider", DefaultValue="NucleoDatabaseSecurityManagemen...
using System; using NetRuntimeSystem = System; using System.ComponentModel; using NetOffice.Attributes; namespace NetOffice.OutlookApi { /// <summary> /// DispatchInterface _DistListItem /// SupportByVersion Outlook, 9,10,11,12,14,15,16 /// </summary> [SupportByVersion("Outlook", 9,10,11,12,14,15,16)] [EntityT...
using System; using System.ComponentModel.Design; using EnvDTE80; using Extension.ConfigurationRelated; using Extension.Other; using Microsoft.VisualStudio.Shell; using Ninject; using Task = System.Threading.Tasks.Task; namespace Extension.Command { /// <summary> /// Command handler /// </summary> inte...
using Xunit; namespace Float.TinCan.ActivityLibrary.Tests { public class TinCanStatementBuilderTests { [Fact] public void TestBuildStatement() { var statement = new TinCanStatementBuilder() .SetVerb("http://example.com/tested", "tested") .Set...
// // XmlTypeMapping.cs: // // Author: // John Donagher (john@webmeta.com) // Lluis Sanchez Gual (lluis@ximian.com) // // (C) 2002 John Donagher // // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal...
using exampleservice.Framework.BaseFramework; namespace exampleservice.CustomerService.Contract { public class CustomerRegisteredEvent : EventBase { public CustomerSpecification Customer { get; set; } } }
using System; using System.Globalization; using Plugin.GoogleAnalytics.Abstractions; using Plugin.GoogleAnalytics.Abstractions.Model; using System.IO; using AppKit; using WebKit; namespace Plugin.GoogleAnalytics { public class DeviceInfo : IDeviceInfo { private const string GoogleAnalyticsFolder = "ga...
using System; using System.Threading.Tasks; using GRA.CommandLine.FakeWeb; using GRA.Domain.Model; using McMaster.Extensions.CommandLineUtils; namespace GRA.CommandLine.Base { abstract class BaseCommand : CommandLineApplication { protected readonly ServiceFacade _facade; protected readonly Con...
// Copyright (c) 2019, WebsitePanel-Support.net. // Distributed by websitepanel-support.net // Build and fixed by Key4ce - IT Professionals // https://www.key4ce.com // // Original source: // Copyright (c) 2015, Outercurve Foundation. // All rights reserved. // // Redistribution and use in source and binary forms, wit...
using System.Collections.Generic; using System.Web.Mvc; using System.Web.Routing; using Orchard.Mvc.Routes; namespace HelloWorld { public class Routes : IRouteProvider { public void GetRoutes(ICollection<RouteDescriptor> routes) { foreach (var routeDescriptor in GetRoutes()) rou...
using System.Collections.Generic; using GW2EIEvtcParser; using GW2EIEvtcParser.EIData; namespace GW2EIBuilders.HtmlModels { public class PlayerDto : ActorDto { public int Group { get; internal set; } public string Acc { get; internal set; } public string Profession { get; internal set...
using UnityEngine; public class Paddle : MonoBehaviour, IPaddle { public float movementSpeed = 8; private int movementDirection; private float movementBounds; public Vector2 Velocity => velocity; public GamePlaySide playSide { get; set; } private Rigidbody2D myRigidBody; private Vector2 velocity; ...
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. #nullable disable using NUnit.Framework; using osu.Game.Rulesets.Osu.Mods; namespace osu.Game.Rulesets.Osu.Tests { [TestFixture] public class TestSceneSliderHi...
// Copyright 2022 Google LLC // // 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 // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in ...
using System; using System.ComponentModel; using EfsTools.Attributes; using EfsTools.Utils; using Newtonsoft.Json; using EfsTools.Items.Data; namespace EfsTools.Items.Nv { [Serializable] [NvItemId(669)] [Attributes(9)] public class FmDaccQaccum1 { [ElementsCount(1)] [ElementType("ui...
#load "../common.cake" var FB_VERSION = "4.37.0"; var TARGET = Argument ("t", Argument ("target", "Default")); var ARTIFACTS = new List<ArtifactInfo> { new ArtifactInfo("facebook-android-sdk", "5.0.3"), new ArtifactInfo("facebook-core", "5.0.3"), new ArtifactInfo("facebook-common", "5.0.3"), new ArtifactInfo("fa...
using System.Collections.Generic; using System.IO; using System.Net; namespace UltimaOnline { public class Firewall { #region Firewall Entries public interface IFirewallEntry { bool IsBlocked(IPAddress address); } public class IPFirewallEntry : IFirewallEnt...
using System.Reflection; using UnityEditor.UIElements; using UnityEngine; namespace UniBT.Editor { public class CurveResolver : FieldResolver<CurveField, AnimationCurve> { public CurveResolver(FieldInfo fieldInfo) : base(fieldInfo) { } protected override CurveField CreateEditorF...
using System; using Newtonsoft.Json; using System.Xml.Serialization; namespace Essensoft.AspNetCore.Payment.Alipay.Domain { /// <summary> /// AlipayUserPointRefundModel Data Structure. /// </summary> [Serializable] public class AlipayUserPointRefundModel : AlipayObject { /// <summary> ...
// 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.Collections.ObjectModel; using System.Linq; using System.Threading.Tasks; using Microsoft.Templates.Co...
using System; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; using Newtonsoft.Json; using Newtonsoft.Json.Serialization; using NServiceBus; using NServiceBus.Transport.SQLServer; class Program { static string connectionString = @"Data Source=.\Sq...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Sitecore.SharedSource.DataImporter.Extensions; using Sitecore.Data.Items; using Sitecore.Data; using Sitecore.SharedSource.DataImporter.Mappings.Fields; using Sitecore.SharedSource.DataImporter.Mappings.Properties; using System...
// 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.Diagnostics; using System.Runtime.InteropServices; using System.Text; using Windows.UI.No...
// ---------------------------------------------------------------------------------- // // FXMaker // Created by ismoon - 2012 - ismoonto@gmail.com // // ---------------------------------------------------------------------------------- using UnityEngine; #if UNITY_EDITOR using UnityEditor; using System.Collections; ...
using System.Diagnostics.CodeAnalysis; namespace nac.CurlThin.Enums { [SuppressMessage("ReSharper", "InconsistentNaming")] public enum CURLpoll { /// <summary> /// Register, not interested in readiness (yet). /// </summary> NONE = 0, /// <summary> /// ...
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css'> <link rel="stylesheet" type="text/css" href="~/css/styles.css" /> <title>Customer added successful</title> </head> <body class="container"> <h...
/* * Copyright 2010-2013 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 UnityEngine; using UnityEngine.Playables; using UnityEngine.Timeline; using System.Collections.Generic; [TrackColor(0.855f, 0.8623f, 0.87f)] [TrackClipType(typeof(SpritePlayableClip))] [TrackBindingType(typeof(SpriteRenderer))] public class SpritePlayableTrack : TrackAsset { public override Playable CreateTr...
// Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using System.Linq; using Microsoft.Build.Framework; using NuGet.Frameworks; using NuGet.Packagin...
using Amazon.JSII.Runtime.Deputy; namespace Amazon.JSII.Tests.CalculatorNamespace { /// <remarks> /// <strong>Stability</strong>: Experimental /// </remarks> [JsiiClass(nativeType: typeof(Amazon.JSII.Tests.CalculatorNamespace.BaseJsii976), fullyQualifiedName: "jsii-calc.BaseJsii976")] public class ...
using Newtonsoft.Json; namespace ESIConnectionLibrary.ESIModels { internal class EsiV3UniverseNames { [JsonProperty(PropertyName = "category")] public EsiV3UniverseNamesCategory Category { get; set; } [JsonProperty(PropertyName = "id")] public int Id { get; set; } [Js...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using SanicballCore.Server; // For more information on enabling Web API for empty projects, visit https://go.microso...
// --------------------------------------------------------------------------------- // <copyright file="WalkPosture.cs" company="https://github.com/sant0ro/Yupi"> // Copyright (c) 2016 Claudio Santoro, TheDoctor // </copyright> // <license> // Permission is hereby granted, free of charge, to any person obtaining ...
using System; using System.Collections.Generic; using System.Text.RegularExpressions; using Com.AimUI.TagCore; using Com.AimUI.TagCore.Exceptions; namespace Com.AimUI.TagParser { public class RegxpEngineCommon<T> where T : TagContext { internal static string TagRegNames; internal const RegexOpt...
/* * 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 Microsoft.AspNetCore.Http; using Microsoft.Extensions.Diagnostics.HealthChecks; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace HealthChecks.Publisher.Prometheus { public sealed class PrometheusResponseWriter : LivenessPrometheusMetrics { public static async Tas...
using System; using System.Collections.Generic; using System.Runtime.Serialization; using Libplanet; namespace LibUnity.Backend.Action.Exceptions { [Serializable] public class InvalidTransferMinterException : Exception { public HashSet<Address> Minters { get; } public Address Sender { get;...
namespace LogFlow.DataModel { public interface ILogSourceFactoryData { string LogFormat { get; } } }
using ApprovalTests; using ApprovalTests.Reporters; using NUnit.Framework; using UnitTest.Base; using UnitTest.Base.Utils; namespace UnitTest.Md { [UseReporter(typeof(DiffReporter))] public class UnitTestMd : UnitTestBase { [Test] [RunOnUI] public void Transform_givenTest1_generates...
namespace GovUk.Education.ExploreEducationStatistics.Data.Model { public class Provider : ObservationalUnit { public Provider(string ukprn, string name) : base(ukprn, name) { } public static Provider Empty() { return new Provider(null, null); ...
using System; using System.IO; using System.Security.Cryptography.X509Certificates; using System.Text; using YamlDotNet.Serialization; namespace KubeClient.Extensions.KubeConfig.Models { /// <summary> /// User identity configuration for a Kubernetes client. /// </summary> public class UserIdentity...
/* * 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 System; using System.Web.UI; using Swarmops.Common.Enums; using Swarmops.Frontend; using Swarmops.Logic.Financial; using WebSocketSharp; namespace Swarmops.Controls.Financial { public partial class ComboBudgets : ControlV5Base { public enum AccountListType { Unknown = 0, ...
using Dapper.AmbientContext.Storage; using Machine.Specifications; namespace Dapper.AmbientContext.Tests { internal class LogicalCallContextStorageTests { [Subject("Logical CallContext Storage")] class When_getting_existing_item_from_logical_callcontext_storage { Establish ...
#region Copyright Syncfusion Inc. 2001-2020. // Copyright Syncfusion Inc. 2001-2020. All rights reserved. // Use of this code is subject to the terms of our license. // A copy of the current license can be obtained at any time by e-mailing // licensing@syncfusion.com. Any infringement will be prosecuted under // applic...
#pragma warning disable 436 namespace GitHub.Unity { static partial class ApplicationInfo { #if DEBUG public const string ApplicationName = "GitHub for Unity Debug"; public const string ApplicationProvider = "GitHub"; #else public const string ApplicationName = "GitHubUnity"; pub...
using System.Collections.Generic; using XamlIl.TypeSystem; using Visitor = XamlIl.Ast.IXamlIlAstVisitor; namespace XamlIl.Ast { #if !XAMLIL_INTERNAL public #endif interface IXamlIlLineInfo { int Line { get; set; } int Position { get; set; } } #if !XAMLIL_INTERNAL public #endif ...
@model IEnumerable<Kontext.Data.Models.ViewModels.BlogViewModel> @{ Layout = null; } <li class="nav-item dropdown dropdown-hover megamenu"> <a class="nav-link" href="#" aria-expanded="true" data-toggle="dropdown"><i class="fa fa-list-alt"></i> @SharedHtmlLocalizer["Docs"]&nbsp;<i class="fa fa-chevron-down"></...
using System; using System.Drawing; using System.Windows.Forms; using Mesher.Core.Collections; using Mesher.Core.Objects.Scene; using Mesher.Core.Renderers; using Mesher.Core.SceneContexts.Components; using Mesher.GraphicsCore.Camera; using Mesher.GraphicsCore.Primitives; using Mesher.GraphicsCore.RenderContexts; usin...
@using ynhnTransportManage @model ynhnTransportManage.Models.WRReport18Model <script type="text/javascript"> $(function () { $("#BeginDate").datepicker(); $("#EndDate").datepicker(); $("#query").button(); $("#export").button(); $("#compute").button(); }); </script> @usi...
// <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 UiPath.Web.Client20194.Models { using Newtonsoft.Json; using System.Collections; using System.Collections.Ge...
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Threading; using Microsoft.CodeAnalysis.D...
using System; using System.IO; using System.Runtime.InteropServices; using UnityEngine; using Object = System.Object; namespace Assets.Sources.Graphics.Movie { public class MovieMaterial { private MovieMaterial() { this.advance = true; this.loopCount = 1; this.playSpeed = 1f; this.scanDuration = tru...
using TaleWorlds.Library; using TaleWorlds.ModdingCommunity.ModsSettings.ViewModels; namespace TaleWorlds.ModdingCommunity.ModsSettings.ProvidersLocator { public interface ILocator { MBBindingList<ModSettingsViewModel> GetProvidedModSettings(); } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; using System.IO.MemoryMappedFiles; namespace swbf { class Ucfb_editor { public Ucfb_editor(MemoryMappedFile file) { _file = file; using (var reader ...
// // Encog(tm) Core v3.2 - .Net Version // http://www.heatonresearch.com/encog/ // // Copyright 2008-2014 Heaton Research, Inc. // // 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 // // htt...
using System; using System.Collections; using System.Runtime.InteropServices; using System.Web; namespace CppCMS.Session { public class Session : SessionBase { public const int SESSION_FIXED=0; public const int SESSION_RENEW=1; public const int SESSION_BROWSER=2; internal Session(SessionPool...
namespace Autopilot { public class Coordinate { public static readonly Coordinate Center = new Coordinate(0, 0, "N/A"); public readonly int X; public readonly int Y; public string Identifier { get; set; } //public int Distance { get; set; } public Coordinate(in...
using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using Elasticsearch.Net; using Examine; using Examine.LuceneEngine.Providers; using Examine.Providers; using Nest; using Novicell.Examine.ElasticSearch.EventArgs; using Novicell.Examine.ElasticSearch.Model; using DocumentWrit...
using System; using eth.Eve.PluginSystem; namespace eth.PluginSamples { public class ReplyWithExceptionPlugin : PluginBase, IHealthListener { public override PluginInfo Info => new PluginInfo(new Guid(), "ReplyWithException", "ReplyWithException", "0.0.0.1"); public override HandleResult Hand...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Security.Cryptography; namespace Homeinns.Common.Base.Encrypt { /// <summary> /// MD5安全类 /// </summary> public class MD5Encrypt { /// <summary> /// MD5加密 /// </summary> ...
/* * 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 System.Diagnostics; using System.Linq; using System.Text; using System.Runtime.InteropServices; using EasyHook; //using SlimDX.DXGI; //using SlimDX.Direct3D10; //using SlimDX; using System.IO; using System.Threading; //using Device = SlimDX.Direct3D10.Device; using...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XOutput.Devices; namespace XOutput.UI.Component { public interface IUpdatableView { /// <summary> /// Updates the view from a device. /// </summary> /// <pa...
using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Windows.Forms; namespace Dungeon { public class DungeonForm : Form { private readonly ScenePainter scenePainter; private readonly ScaledViewPanel scaledViewPanel; private readonly Timer timer; protected ov...
using System; namespace Amoenus.PclTimer { /// <summary> /// Timer that counts up /// </summary> /// <seealso cref="Amoenus.PclTimer.BaseTimer" /> public class CountDownTimer : BaseTimer, ICountDownTimer { /// <summary> /// Initializes a new instance of the <see cref="C...
using System; // Autogenerated @ 21/08/18 namespace InterfaceMatchmaking { /// <summary> /// Implements the map for interface SteamMatchmaking009 /// </summary> [Core.Interface.Map(Name = "SteamMatchmaking009")] public class SteamMatchmaking009_Map : Core.Interface.IBaseInterfaceMap { } }
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.Threading.Tasks; using osu.Framework.Input.Bindings; using osu.Game.Beatmaps; using osu.Game.Input.Bindings;...
/* * TickHistory * * TickHistory provides dynamic access to historical tick data for a specific security for specific dates or date range. * * The version of the OpenAPI document: 1.0.0 * Generated by: https://github.com/openapitools/openapi-generator.git */ using System; using System.Collections.Generic; usin...
// <copyright file="RigidFixture.cs" company="federrot Software"> // Copyright (c) federrot Software. All rights reserved. // </copyright> // <summary> // Defines the Atom.Physics.Farseer.RigidFixture class. // </summary> // <author> // Paul Ennemoser (Tick) // </author> namespace Atom.Physics.Farseer { ...
//////////////////////////////////////////////////////////////////////////////// //NUnit tests for "EF Core Provider for LCPI OLE DB" // IBProvider and Contributors. 04.12.2020. using System; using System.Data; using System.ComponentModel.DataAnnotations; using System.ComponentMode...
// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See License.txt in the repo root for license information. // ------------------------------------------------------------ namespace Microsoft.Azure.I...
using FiscalBr.Common; using FiscalBr.Common.Sped; using System; using System.Collections.Generic; namespace FiscalBr.EFDFiscal { /// <summary> /// BLOCO C: DOCUMENTOS FISCAIS I - MERCADORIAS (ICMS/IPI) /// </summary> public class BlocoC { public RegistroC001 RegC001 { get; set; } ...
using DallEX.io.API.MarketTools; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace DallEX.io.API { public interface IMarkets { /// <summary>Gets a data summary of the markets available.</summary> Task<IDictionary<CurrencyPair, IMarketData>> GetSummaryAsync...
// Copyright (c) 2019, WebsitePanel-Support.net. // Distributed by websitepanel-support.net // Build and fixed by Key4ce - IT Professionals // https://www.key4ce.com // // Original source: // Copyright (c) 2015, Outercurve Foundation. // All rights reserved. // // Redistribution and use in source and binary forms, wit...
/* * C# Design Pattern Essentials * Copyright 2012, Ability First Limited * * This source code is provided to accompany the book and is provided AS-IS without warranty of any kind. * It is intended for educational and illustrative purposes only, and may not be re-published * without the express written perm...
using FastDFSCore.Client; using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using Xunit; namespace FastDFSCore.Tests.FastDFSCore { public class FDFSOptionTranslatorTest { static IServ...
using System; using System.Linq; using System.Collections; using System.Collections.Generic; using UnityEditor; using UnityEditor.Experimental; using UnityEditor.Experimental.VFX; using UnityEditor.SceneManagement; using UnityEngine; using UnityEngine.Experimental.VFX; using UnityEditor.VFX; using UnityEditor.VFX.UI; ...
@model Contoso.Apps.SportsLeague.Web.Models.CheckoutModel @{ ViewBag.Title = "Index"; } @section HeaderOverlay { <div class="button-wrapper"> <div class="container"> <div class="row"> <a href="#" class="btn-content">Order Checkout</a> </div> </div> ...
/* Copyright (C) 2008-2015 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov * * 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 restriction, including without limitation t...
using System.Collections.Generic; namespace Sekure.Models { public class Quote { public string PlanId { get; set; } public string InsuredValue { get; set; } public List<CoverageResultAPI> Coverages { get; set; } public List<InfoResultAPI> Deductible { get; set; } public...
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Cyotek Scripting Host Demo")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Cyotek Ltd")] [assembly: AssemblyProduct("Cyotek Scripting Host Demo")] [assembly: ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using FluentValidation; using Fluxor; using vsWork.Data; using vsWork.Stores; using vsWork.Utils; namespace vsWork.Validators { public class HolidayValidator : AbstractValidator<Holiday> { /// <summary> ...