text
stringlengths
1
932k
using System; using PrimeFuncPack.UnitTest; using Xunit; using static PrimeFuncPack.UnitTest.TestData; namespace PrimeFuncPack.Tests; partial class SixDependencyTest { [Theory] [MemberData(nameof(TestEntitySource.StructTypes), MemberType = typeof(TestEntitySource))] public void GetFirst_ExpectResolvedValu...
using System.Collections.Generic; using System.IO; using System.Linq; using UnityEditor; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.TestTools; namespace Edgar.Unity.Tests { public class TestBase : IPrebuildSetup, IPostBuildCleanup { private const string TestSceneFolder = "...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Cumulocity.SDK.Client.Rest.Representation.Messaging.Notifications { public class NotificationSubscriptionMediaType : CumulocityMediaType { public NotificationSubscriptionMediaT...
using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Web.UI.DataVisualization.Charting; using MOE.Common.Business.WCFServiceLibrary; namespace MOE.Common.Business.SplitFail { public class SplitFailChart { public Chart Chart; public SplitFailCha...
using System; using System.IO; using System.Text; namespace GSD.UnitTests.Mock { public class ReusableMemoryStream : Stream { private byte[] contents; private long length; private long position; public ReusableMemoryStream(string initialContents) { this.con...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using MediatR; namespace OmniSharp.Extensions.LanguageServer.Protocol { public class RegistrationNameAttribute : Attribute { public string Method { get; } public RegistrationNameAttribute(string method...
using System.Reflection; using System.Runtime.CompilerServices; 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("04...
/* * 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...
//------------------------------------------------------------------------------ // <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> //----------------------------------------...
// *** 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 Cauldron.Core.Entities; using Cauldron.Core.Entities.Effect; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Cauldron.Shared.MessagePackObjects { public static class CardConditionExtensions { public static async ValueTask<Card[]> ListMatchedCards(thi...
using Newtonsoft.Json; namespace Resonance.SubsonicCompat { public enum SubsonicReturnFormat { [JsonProperty("xml")] Xml, [JsonProperty("json")] Json, [JsonProperty("jsonp")] Jsonp } }
using System; using System.Collections.Generic; using System.Linq; namespace GameAIPos { public class Grafo<VT, ET> where VT : class { protected Dictionary<VT, List<Tuple<ET, VT>>> VerticesAdjecentes = new Dictionary<VT, List<Tuple<ET, VT>>>(); public IEnumerable<VT> PegarVertices() ...
using System; using System.Collections; using AutoFixture; using FluentAssertions; using Xunit; namespace NCollection.Test.Set { public abstract class ISetTest { protected Fixture Fixture { get; } protected ISetTest() { Fixture = new Fixture(); } protected ...
using BenchmarkDotNet.Attributes; using BenchmarkDotNet.Jobs; using Unity.Benchmarks; using Unity.Lifetime; using Unity.Resolution; namespace Unity.v6 { [ShortRunJob(RuntimeMoniker.Net48)] [SimpleJob(RuntimeMoniker.NetCoreApp50)] public class UnityRegisterAPI : RegisterAPI { protected static R...
using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Windows.Forms; using Bloom.Api; using Bloom.Book; using Bloom.Collection; using Bloom.MiscUI; using Bloom.Registration; using Bloom.Utils; using DesktopAnalytics; using L10NSharp;...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShoppingList.ApiServices.SharedModels { public class BasePagination { public int? Count { get; set; } public int? Offset { get; set; } public DateTime? FromDate...
namespace ClArc.Sync.Core { /// <summary> /// Interface for business logick. /// </summary> /// <typeparam name="TRequest"></typeparam> /// <typeparam name="TResponse"></typeparam> public interface IUseCase<in TRequest, out TResponse> where TRequest : IRequest<TResponse> where...
using GServer; using NUnit.Framework; using System; using System.Collections.Generic; using GServer.Connection; using GServer.Messages; namespace Unit_Tests { internal class ConnectionTest { [Test] public void ReliableAlghoritmTest() { var con = new Connection(null); va...
// Copyright (c) Jeremy W. Kuhne. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using WInterop.Handles; using WInterop.Storage.Native; namespace WInterop.Storage { /// <summary> /// Handle for enumerating volumes. /// </summary...
namespace FastFood.Models { using System.Collections.Generic; using System.ComponentModel.DataAnnotations; public class Item { public Item() { this.OrderItems = new HashSet<OrderItem>(); } public int Id { get; set; } [Required] [MinLength(3...
/* Copyright 2019 FXCM Global Services, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use these files except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or ag...
/* 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 may not use this ...
using System; using System.Collections.Generic; namespace Lumpn.Dungeon { public sealed class StateEqualityComparer : IEqualityComparer<State> { public static readonly StateEqualityComparer Default = new StateEqualityComparer(); public bool Equals(State a, State b) { retur...
using System; using System.Collections.Generic; using System.Drawing; using System.Text; namespace Mystify.Model { public class Corner { public readonly double Width; public readonly double Height; public double X { get; private set; } public double Y { get; private set; } ...
#region Usings using System; using System.Collections.Generic; using System.Text; using FlatRedBall; using FlatRedBall.Input; using FlatRedBall.Instructions; using FlatRedBall.AI.Pathfinding; using FlatRedBall.Graphics.Animation; using FlatRedBall.Graphics.Particle; using FlatRedBall.Math.Geometry; using FlatRedBall....
// Copyright(c) Microsoft Corporation. // All rights reserved. // // Licensed under the MIT license. See LICENSE file in the solution root folder for full license information. using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Threading.Tasks; using...
@{ Layout = "_Layout"; } <h3>Hello, Dr. Sneuss.</h3> <h4>Let's organize your database.</h4> <div class="content"> <p>@Html.ActionLink("See all Engineers", "Index", "Engineers")</p> <p>@Html.ActionLink("See all Machines", "Index", "Machines")</p> </div>
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ /...
using System; using System.Web; using LanguageExt; using SJP.Schematic.Core; using SJP.Schematic.Core.Utilities; using SJP.Schematic.Lint; namespace SJP.Schematic.Reporting.Html.Lint.Rules { internal sealed class ForeignKeyIsPrimaryKeyRule : Schematic.Lint.Rules.ForeignKeyIsPrimaryKeyRule { public For...
using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Book_Project { public class Program { public s...
#region License, Terms and Author(s) // // ELMAH - Error Logging Modules and Handlers for ASP.NET // Copyright (c) 2004-9 Atif Aziz. All rights reserved. // // Author(s): // // Atif Aziz, http://www.raboof.com // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file excep...
/* * 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 JDMallen.Toolbox.Interfaces; using JDMallen.Toolbox.RepositoryPattern.Interfaces; // using System.Data.SqlClient; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using MySql.Data.MySqlClient; using SprintFeedback.Data.Config; using SprintFeedback.Data.Context.EF...
// Copyright (c) 2020 Sergio Aquilini // This code is licensed under MIT license (see LICENSE file for details) using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Threading; using System.Threading.Tasks; using Con...
using System; using Xamarin.Forms; using Xamarin.Forms.Xaml; [assembly: XamlCompilation(XamlCompilationOptions.Compile)] namespace QRID { public partial class App : Application { public App() { InitializeComponent(); MainPage = new NavigationPage(new LoginPage()); ...
using System.Collections.Generic; using HotChocolate; using HotChocolate.Data; using HotChocolate.Types; using HotChocolate.Types.Relay; using StarWars.Repositories; namespace StarWars.Characters { [ExtendObjectType(Name = "Query")] public class CharacterQueries { /// <summary> /// Retrieve...
using Neo.Cryptography; using Neo.Cryptography.ECC; using Neo.IO; using Neo.Ledger; using Neo.Network.P2P.Payloads; using Neo.Persistence; using Neo.SmartContract; using Neo.SmartContract.Native; using Neo.VM; using Neo.Wallets; using System; using System.Collections.Generic; using System.IO; using System.Linq; using S...
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading.Tasks; namespace Blocshop.ScoketsForCordova { public interface ISocketAdapter { Task Connect(String host, int port); Task Write(byte[] data);...
// 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.Collections.Immutable; using System.Linq; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; u...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using L2ScriptMaker.Extensions.VbCompatibleHelper; namespace L2ScriptMaker.Mod...
namespace Karmatach.ThreeDeePee { using LED_Matrix; using SharpSCAD; public static partial class Scenes { public static Scene LedMatrix_16x32_Kickstand => new Scene( "kickstand" ) { new Kickstand() }; public static Scene LedMatrix_16x32_Board => new Scene( ...
//------------------------------------------------------------------------------ // <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> //--...
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; namespace System { partial class IocContainer { /// <summary> /// 表示解析映射类型时发生。 /// </summary> public event MapResolveEventHandler MapResolve; /// <summary> ...
using System; using NUnit.Framework; namespace Twilio.Api.Tests.Integration { [TestFixture] public class RecordingTests { [Test] public void TestMethod1() { } } }
using System.Reflection; using System.Runtime.CompilerServices; 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("Ser...
using MediatR; using Microsoft.ApplicationInsights; using Microsoft.ApplicationInsights.DataContracts; using Microsoft.Extensions.DependencyInjection; using STAIExtensions.Abstractions.Collections; using STAIExtensions.Abstractions.Common; namespace STAIExtensions.Abstractions.CQRS.DataSetViews.Queries; /// <summary...
// SPDX-License-Identifier: MIT // Copyright (C) 2018-present iced project and contributors // ⚠️This file was generated by GENERATOR!🦹‍♂️ #nullable enable #if DECODER using System; namespace Iced.Intel { /// <summary>Decoder options</summary> [Flags] public enum DecoderOptions : uint { /// <summary>No option...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using AGI.Ui.Plugins; using AGI.STKObjects; using stdole; namespace ValispacePlugin { public partial...
namespace DesignPatterns.Structural.Adapter.Shapes { /// <summary> /// Details of a round peg. /// </summary> public class RoundPeg { /// <summary> /// Radius of the peg. /// </summary> public virtual int Radius { get; set; } /// <inheritdoc /> publi...
using System.ComponentModel.DataAnnotations; namespace DotNextDemo.Users.Dto { public class ChangePasswordDto { [Required] public string CurrentPassword { get; set; } [Required] public string NewPassword { get; set; } } }
// *** 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.Reflection; using System.Runtime.CompilerServices; 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("Rea...
@model PagedList.IPagedList<Employee> @{ // Querystring RouteValueDictionary parameters = Request.QueryString.ToRouteValues().WithDefaults(new List<KeyValuePair<string, object>> { new KeyValuePair<string, object>("department", ""), new KeyValuePair<string, object>("location", ""), new KeyValu...
// Copyright 2018 Google LLC. // Copyright 2020 James Przybylinski // // 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 require...
namespace WebPlex.Core.Domain.Entities.Security { using System; using WebPlex.Core.Extensions; public class BannedIpEntity : EntityBase { public virtual string IpAdrress { get; set; } public virtual string Reason { get; set; } public virtual DateTime StartDateUtc { get; set; } public virtual DateTime? Exp...
using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; namespace pspbe.Migrations.BlogDb { public partial class AddModels : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( ...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="CecilExtensions.members.cs" company="Catel development team"> // Copyright (c) 2008 - 2014 Catel development team. All rights reserved. // </copyright> // ----------------------...
#region Copyright 2009-2012 by Roger Knapp, Licensed under the Apache License, Version 2.0 /* 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....
// <auto-generated /> // Built from: hl7.fhir.r4.core version: 4.0.1 // Option: "NAMESPACE" = "fhirCsR4" using fhirCsR4.Models; namespace fhirCsR4.ValueSets { /// <summary> /// This value set includes sample Revenue Center codes. /// </summary> public static class ExRevenueCenterCodes { /// <summary> ...
using System.IO; using System.Xml; using System.Xml.Linq; using LinqToEdmx.Model.StorageV3; using Xml.Schema.Linq; namespace LinqToEdmx.DesignerV3 { public class XRootNamespace { private XDocument _doc; private XTypedElement _rootObject; private XRootNamespace() { } public XRootNamespac...
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // Les informations générales relatives à un assembly dépendent de // l'ensemble d'attributs suivant. Pour modifier les informations // associées à un assembly, changez les valeurs de ces attributs. [assembly: Assem...
using System; namespace StackLang.Core.InputOutput { public class ConsoleInputManager : IInputManager { public string ReadLine() { Console.ForegroundColor = ConsoleColor.Red; Console.Write("<<: "); Console.ForegroundColor = ConsoleColor.White; return Console.ReadLine(); } public void Dispose() {...
using System; using System.Collections.Generic; using System.Linq; using Foundation; using Plugin.FirebasePushNotification; using UIKit; namespace LitleW.iOS { // The UIApplicationDelegate for the application. This class is responsible for launching the // User Interface of the application, as well as liste...
using System.Collections.Generic; using System.Web.Mvc; using Web.Infrastructure; namespace Web.Areas.Admin.Controllers { public class ClaimsController : Controller { private readonly ClaimedActionsProvider claimedActionsProvider; public ClaimsController(ClaimedActionsProvider claimedAction...
// https://github.com/xamarin/Xamarin.Forms/blob/174d8a5a9373127e16df8fb2ad8d41f83010b1c7/Xamarin.Forms.Core/Crc64.cs using System; using System.Runtime.InteropServices; using System.Security.Cryptography; using System.Text; /// <summary> /// https://github.com/xamarin/java.interop/blob/master/src/Java.Interop.Tools....
// <auto-generated/> //--------------------------------------------------------------------- // <copyright file="CsdlConstants.cs" company="Microsoft"> // Copyright (C) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. // </copyright> //----------------------...
using System.Reflection; using System.Runtime.CompilerServices; 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("bla...
 namespace Graphviz4Net.Dot { using System.Windows; using System.Collections.Generic; using Graphs; /// <summary> /// Represents a vertex in a <see cref="DotGraph{TVertexId}"/> obtained from an output of the DOT program. /// </summary> /// <remarks> /// <para> /// A vertex can have...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using log4net; using Microsoft.Isam.Esent.Interop; using Rhino.Queues.Model; using Rhino.Queues.Protocol; namespace Rhino.Queues.Storage { public class SenderActions : AbstractActions { private reado...
using System; class ProspectInHospitality { static void Main() { decimal builders = decimal.Parse(Console.ReadLine());//The amount of builders needed. decimal receptionists = decimal.Parse(Console.ReadLine());//The amount of receptionists needed. decimal chambermaids = decimal.Parse(Co...
using System.Collections; using System.Diagnostics; using System.Threading; using UnityEngine; using UnityEngine.UI; namespace Maca { public class GUIManager : Singleton<GUIManager> { public GameObject loadScreen; public GameObject introScreen; public GameObject gameModeSettingsScreen;...
//#define OLD_ISF //----------------------------------------------------------------------- // <copyright file="StrokeSerializer.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> //----------------------------------------------------------------------- using System; ...
using System.Collections; using EugenePetrenko.Gui2.Kernell2.Container; using EugenePetrenko.Gui2.MorseKernel2; namespace EugenePetrenko.Gui2.Kernell2.Node { /// <summary> /// Summary description for Results. /// </summary> public class ResultSet : IEnumerable { private ArrayList results = new ArrayList(...
using System; using System.Collections.Generic; #nullable disable namespace PetShop.Database { public partial class Zivotinja { public Zivotinja() { Proizvods = new HashSet<Proizvod>(); } public int Id { get; set; } public string Naziv { get; set; } ...
using System; using System.Linq.Expressions; using System.Threading.Tasks; using Ding.Domains; namespace Ding.Datas.Stores.Operations { /// <summary> /// 查找数量 /// </summary> /// <typeparam name="TEntity">对象类型</typeparam> /// <typeparam name="TKey">对象标识类型</typeparam> public interface ICountAsyn...
namespace Tampleworks.WindowsApplicationBlock.Demo.ApplicationLogic.ReportGeneration { public enum ReportGenerationState { Running, Cancelled, Failed, Completed, } }
using System; using System.Runtime.InteropServices; namespace cleanCore { public class WoWLocalPlayer : WoWPlayer { [UnmanagedFunctionPointer(CallingConvention.ThisCall)] public delegate int ClickToMoveDelegate( IntPtr thisPointer, int clickType, ref ulong interactGuid, ref Lo...
using System.ComponentModel.DataAnnotations; namespace CustomerOnionProj.Domain.Auth { public class ForgotPasswordRequest { [Required] [EmailAddress] public string Email { get; set; } } }
using System; using R5T.Lincoln; namespace R5T.Liverpool.Database.Migrations { public class ConnectionStringProvider : IConnectionStringProvider { public string GetConnectionString() { var connectionString = @"Server=(localdb)\MSSQLLocalDB;Database=Liverpool;Trusted_Connection=Tr...
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.Threading; using MediatR; using NSubstitute; using NSubstitute.ClearExtensions; using NSubstitute.Core; using NUnit.Framework; using System.Threading.Tasks; using TT.Domain.Identity.CommandRequests; using TT.Domain.Identity.Entities; using TT.Domain.Identity.QueryRequestHandlers; using TT.Domain.Identity....
using System; namespace TeachMeSkills.WebApi.Helpers { /// <summary> /// JWT settings. /// </summary> public class JwtSettings { /// <summary> /// Secret key. /// </summary> public string SecretKey { get; set; } /// <summary> /// Lifetime. /...
// 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.Buffers; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Runt...
using System; using System.Threading.Tasks; using JsonRpcSharp.Client; using Nethereum.RPC.Eth.DTOs; using Nethereum.RPC.Eth.Transactions; using Xunit; namespace Nethereum.RPC.Tests.Testers { public class EthGetTransactionReceiptTester : RPCRequestTester<TransactionReceipt>, IRPCRequestTester { [Fact] ...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Controls; namespace DeltaPatchGeneratorWindowsGUI { class TextBoxTraceListener : TextWrite...
using EntityFrameworkExtras.EF6.Tests.Integration.StoredProcedures; using NUnit.Framework; namespace EntityFrameworkExtras.EF6.Tests.Integration { [TestFixture] public class ParameterNvarCharTests : DatabaseIntegrationTests { [Test] public void Parameter_Execute_NoErrors() { ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Dependenc...
using System; using System.Collections.ObjectModel; using System.Linq; using Omu.ValueInjecter; using VirtoCommerce.Platform.Core.Common; using VirtoCommerce.Platform.Data.Common.ConventionInjections; using coreModel = VirtoCommerce.Domain.Customer.Model; using dataModel = VirtoCommerce.CustomerModule.Data.Model; nam...
using System; using System.Collections.Generic; using System.Linq; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using Umbraco.Cms.Core.IO; using Umbraco.Cms.Core.Models; using Umbraco.Cms.Core.PropertyEditors; using Umbraco.Cms.Core.Serialization; using Umbraco.Cms.Core.Services;...
using Blazor.Fluxor; namespace StuffPacker.store.packlist { public class PackListDataFeature : Feature<PackListDataState> { public override string GetName() => "PackListData"; protected override PackListDataState GetInitialState() { return new PackListDataState( ...
using System; namespace SortSimples { class Program { static void Main(string[] args) { string linha = Console.ReadLine(); string[] valores = linha.Split(' '); int a = Convert.ToInt32(valores[0]); int b = Convert.ToInt32(valores[1]); ...
// <auto-generated /> using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using ShopApp.DataAccess.Concrete.EfCor...
// 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.Generic; using Xunit; namespace System.Text.Tests { public class EncodingConvertTests ...
using System; using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.JSInterop; namespace MsBlazorServerPlayGround.Objects { /// <summary> /// CallMeInAClass JavaScript method is found in ~/wwwroot/js/JsInDotNet.js /// </summary> public class JsInAClass { private s...
@{ Layout = "Redesign_Layout_EmployersHub"; ViewBag.Title = "The road to a quality apprenticeship"; ViewBag.PageTitle = ViewBag.Title; ViewBag.LandingPageSlug = "setting-it-up"; ViewBag.LandingPageTitle = "Setting it up"; ViewBag.ArticlePageSlug = "the-road-to-a-quality-apprenticeship"; ViewBag.ArticlePag...
using System.Collections.Generic; using System.IO; using System.Net; using System.Threading; using System.Threading.Channels; using System.Threading.Tasks; using ServiceStack.Host; using ServiceStack.Web; namespace ServiceStack.Grpc { public class GrpcResponse : IHttpResponse, IHasHeaders, IWriteEvent, IWriteEvent...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MediaBrowser.Plugins.SoundCloud.ClientApi.Model { public class TrackResult : BaseResult { public string future_href { get; set; } public Track[] collection { get; set; ...
@model MvcBasic.Models.ForgotPasswordViewModel @{ ViewBag.Title = "パスワードを忘れた場合"; } <h2>@ViewBag.Title</h2> @using (Html.BeginForm("ForgotPassword", "Account", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() <h4>電子メールを入力してください。</h4> <hr /> @Html.Vali...
using System.Collections; using System.Collections.Generic; using UnityEngine; using System.Linq; public class WeaponTable : MonoBehaviour { public static WeaponTable WeaponTableSingleton = null; public List<int> Weaponid; public List<GameObject> WeaponModel; internal List<int> weaponiDSpawn = new Lis...