text
stringlengths
1
932k
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TeachMeSkills.Zikunov.Homework5 { class ATM { public event Action<decimal, string> BalanceHandler; private decimal _balance = 0m; public void WithdrawalMoney(...
using Store.Domain.Contracts.Repositories; using Store.Domain.Enitities; using System.Collections.Generic; using System.Linq; namespace Store.Data.EF.Repositories { public class ProdutoRepositoryEF : RepositoryEF<Produto>, IProdutoRepository { public ProdutoRepositoryEF(StoreDataContextEF ctx) : base(...
namespace dotless.Core.Response { using Abstractions; using System.IO.Compression; public class CssResponse : IResponse { public readonly IHttp Http; public CssResponse(IHttp http, bool isCompressionHandledByResponse) { Http = http; IsCompressionHandledB...
/* * 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 required by applicable law or agreed to in writing, software * distribute...
@model TwitterLikeSystem.Models.SetPasswordViewModel @{ ViewBag.Title = "Create Password"; } <h2>@ViewBag.Title.</h2> <p class="text-info"> You do not have a local username/password for this site. Add a local account so you can log in without an external login. </p> @using (Html.BeginForm("SetPassword", ...
// 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 System.Reflection; using System.Reflection.Emit; using System.Runtime.Intero...
// 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...
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 App.Infrastructure.Constants; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Identity; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Security.Claims; using System.Text; using System.Threading.Tasks; namespace App.Infrastructure ...
// Copyright (c) Johnny Z. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace NetUV.Core.Tests.Buffers { using NetUV.Core.Buffers; using Xunit; public abstract class ByteBufferAllocatorTests { protected abstract...
/* * 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. // Runtime Version:4.0.30319.18408 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
using System.Runtime.InteropServices; namespace Vulkan { [StructLayout(LayoutKind.Sequential)] public struct VkVertexInputBindingDescription2EXT { public VkStructureType SType; [NativeTypeName("void *")] public nuint PNext; [NativeTypeName("uint32_t")] public uint Binding; ...
/* * 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; 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 LiveCharts; using LiveCharts.Wpf; using ShopIM.BLL; using ShopIM.Entity; namespace ShopIM.UI.Contr...
using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Marten.Events.Projections.Async { public interface IDaemonLogger { void BeginStartAll(IEnumerable<IProjectionTrack> values); void DeterminedStartingPosition(IProjectionTrack track); void FinishedSta...
using Monday.Client.Models; namespace Monday.Client.Mutations { /// <summary> /// Create a new board mutation. /// </summary> public class CreateBoard { /// <summary> /// The board's name. /// </summary> public string Name { get; set; } /// <summary...
namespace MetinGo.Infrastructure.Database { public interface IDatabasePathProvider { string GetPath(); } }
using UGF.EditorTools.Editor.IMGUI.Scopes; using UnityEditor; using UnityEngine; namespace UGF.EditorTools.Editor.IMGUI.EnabledProperty { public class EnabledPropertyListDrawer : ReorderableListDrawer { public EnabledPropertyListDrawer(SerializedProperty serializedProperty) : base(serializedProperty) ...
using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading; using System.Threading.Tasks; using Storage.Net.Microsoft.Azure.DataLakeGen2.Store.Gen2.Interfaces; using Storage.Net.Microsoft.Azure.DataLake.Store.Gen2.Models; using Storage.Net.Microsoft.Azure.DataLake....
// 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 Microsoft.Data.DataView; using Microsoft.ML.Runtime; namespace Microsoft.ML.Data { /// <su...
using System; namespace AutoFixture { /// <summary> /// A customization that enables numeric specimens to be random and unique per equivalence set of type and range limits. /// </summary> [Obsolete("The RandomRangedNumberGenerator now is used by default, therefore this customization is no longer neede...
using System; using System.Net; using System.Net.Mail; using System.Net.Mime; namespace InfoGather { class SMTP { public static void SendNewMessage() { string logContents = ""; string emailBody = ""; DateTime now = DateTime.Now; string subject ...
using System; using System.Collections.Generic; namespace KaiStuff { public class Utils { /** * Returns the current timestamp with timezone. * Named a la PostgreSQL's `TIMESTAMPTZ`. * * --- * * > The "O" or "o" standard format [...] complies with ISO 8...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Security; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using NAudio.Wave; using NAudio.Wave.SampleProviders; using Syste...
using System; using System.Collections.Generic; using R5T.T0045; using Instances = R5T.T0045.X0001.Instances; namespace System { public static class ICodeFileGeneratorExtensions { public static void CreateInstances(this ICodeFileGenerator _, string filePath, string namespace...
using System; using UnityEngine; public class ColorPicker : MonoBehaviour { #region Fields private float _hue; private float _saturation; private float _brightness; private float _red; private float _green; private float _blue; private float _alpha = 1; public ColorChangedEvent ...
using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Windows; namespace GitHubFolderDownloader.Toolkit { //from http://geekswithblogs.net/lbugnion/archive/2009/09/05/detecting-design-time-mode-in-wpf-and-silverlight.aspx public class Designer { private static bool? _isI...
/* * Copyright 2018 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 "licens...
/**** * Created by: Garron Denney * Date Created: April 18, 2022 * * Last Edited by: Aidan Pohl * Last Edited: April 23, 2022 * * Description: projects a circle around the given object, visual to indicate radius ****/ using UnityEngine; using System.Collections; [RequireComponent(typeof(LineRenderer))] publ...
using LanguageExt.TypeClasses; namespace LanguageExt.ClassInstances { public struct OrdOptionUnsafe<OrdA, A> : Ord<OptionUnsafe<A>> where OrdA : struct, Ord<A> { public int Compare(OptionUnsafe<A> x, OptionUnsafe<A> y) => default(OrdOptionalUnsafe<OrdA, MOptionUnsafe<A>, OptionUnsa...
// <auto-generated /> using FinalProject.Data; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using System; namespace Fin...
using System; using Xamarin.Forms; namespace TemperatureMonitor.Converters { public class InverseBooleanConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { return !(bool)value; } ...
<p>@Model.Summary</p>
using Pliant.Utilities; namespace Pliant.Ebnf { public interface IEbnfDefinition : IEbnfNode { IEbnfBlock Block { get; } } public sealed class EbnfDefinitionSimple : ValueEqualityBase<EbnfDefinitionSimple>, IEbnfDefinition { public IEbnfBlock Block { get; } public EbnfDef...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClient; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Techsist { //Start of the Login Form public partial class...
// ***************************************************************************** // BSD 3-Clause License (https://github.com/ComponentFactory/Krypton/blob/master/LICENSE) // © Component Factory Pty Ltd, 2006 - 2016, All rights reserved. // The software and associated documentation supplied hereunder are the // prop...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class MoneyTrapPeople4easy : MonoBehaviour { //Controls movement for people objects [Header("Reference to target (Jewel)")] [SerializeField] private GameObject target; [Header("How fast person moves horizontal...
using SimelERP.Application.Interfaces.Mapping; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; namespace SimelERP.Application.Infrastructure.AutoMapper { public class MapperProfileHelper { public sealed class Map { publi...
// ---------------------------------------------------------------------------- // The MIT License // LeopotamGroupLibrary https://github.com/Leopotam/LeopotamGroupLibraryUnity // Copyright (c) 2012-2019 Leopotam <leopotam@gmail.com> // ---------------------------------------------------------------------------- using...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _01.MobilePhone { class GSMTest { static void Main(string[] args) { //Problem 7: Write a class GSMTest to test the GSM class Console.WriteLine("...
//--------------------------------------------------------------------- // <copyright file="AssemblyInfo.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCL...
using System; using System.Diagnostics.CodeAnalysis; using System.Threading; using System.Threading.Tasks; using Duracellko.PlanningPoker.Service; using Microsoft.VisualStudio.TestTools.UnitTesting; using RichardSzalay.MockHttp; namespace Duracellko.PlanningPoker.Client.Test.Service { [TestClass] [SuppressMes...
//------------------------------------------------------------------ // // For licensing information and to get the latest version go to: // http://www.codeplex.com/perspective // // THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT // L...
using Unity.Collections.LowLevel.Unsafe; namespace UnityS.Physics { internal static class UnsafeEx { internal unsafe static int CalculateOffset<T, U>(ref T value, ref U baseValue) where T : struct where U : struct { return (int) ((byte*) UnsafeUtility.Address...
using System.Numerics; using System.Threading.Tasks; using AltV.Net.NetworkingEntity.Elements.Entities; using Entity; namespace AltV.Net.NetworkingEntity { public interface IEntityStreamer { void CreateEntity(INetworkingEntity networkingEntity); Task RemoveEntity(INetworkingEntity networkingEn...
// 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 ...
// ---------------------------------------------------------------------------------- // // Copyright Microsoft Corporation // 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.apa...
// Copyright 2009-2012 Matvei Stefarov <me@matvei.org> using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using JetBrains.Annotations; // ReSharper disable ClassCanBeSealed.Global namespace GemsCraft.Utils { /// <summary> Spec...
using System.Globalization; using SingleStoreConnector.Core; using SingleStoreConnector.Protocol; using SingleStoreConnector.Protocol.Payloads; using SingleStoreConnector.Protocol.Serialization; #if NET45 || NET461 #pragma warning disable SA1402 // File may only contain a single type #pragma warning disable SA1403 // ...
using EPiServer.Core; using EPiServer.DataAbstraction; using EPiServer.DataAnnotations; using EPiServer.Shell.ObjectEditing; using Foundation.Features.Folder; using Foundation.Features.Shared; using Foundation.Infrastructure; using Geta.EpiCategories.DataAnnotations; using System.Collections.Generic; using System.Compo...
// <Snippet1> using System; using System.Collections.Generic; public class DinoComparer: IComparer<string> { public int Compare(string x, string y) { if (x == null) { if (y == null) { // If x is null and y is null, they're // equal. ...
using PolishSpeechLibrary.Model; namespace PolishSpeechLibrary { public interface ITranscriptionProcessor { Transcription Process(Transcription source); } }
using System; class Program { static void Main() { int num = int.Parse(Console.ReadLine()); if (num == 1) { Console.WriteLine("one"); } else if (num == 2) { Console.WriteLine("two"); } else if (num == 3) { ...
// // Copyright 2020 Google LLC // // 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, Ver...
using System; using System.Threading; using System.Threading.Tasks; namespace EntityFrameworkCore.Triggered.Benchmarks.Triggers { public class SetStudentRegistrationDateTrigger : IBeforeSaveTrigger<Student> { public Task BeforeSave(ITriggerContext<Student> context, CancellationToken cancellationToken)...
using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using AutoMapper; using AutoMapper.QueryableExtensions; using Hive.Common.Core.Mappings; using Hive.Common.Core.Models; using Hive.UserProfile.Application.Interfaces; using MediatR; using Microsoft.EntityFrameworkCore; namespace H...
using System.Threading.Tasks; using Elastic.Xunit.XunitPlumbing; using Nest; using Tests.Framework; using static Tests.Framework.UrlTester; namespace Tests.Modules.SnapshotAndRestore.Repositories.VerifyRepository { public class VerifyRepositoryUrlTests { [U] public async Task Urls() { var repos = "repos1"; ...
@{ ViewData["Title"] = "Home Page"; } <hr /> <div class="row"> <div class="col-md-4"> <h3>Show Dashboard</h3> <p>@Html.ActionLink("Create", "Index", "Viewer")</p> </div> <div class="col-md-4"> <h3>Edit Dashboard</h3> <p>@Html.ActionLink("Create", "Index", "Designer")</...
using System; using System.IO; using System.Xml; using System.Xml.Xsl; using System.Reflection; namespace svg2xaml { class MainClass { public static void Main(string[] args) { if (args.Length == 0) { Console.WriteLine ("Usage: svg2xaml input.svg [output.xaml].\n"); Console.WriteLine (" If you ...
// 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.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Diagnostics.ContractsLight; using System.IO; using System.Linq; using System...
using System.Data.Entity.Migrations; namespace NuGetGallery.Migrations { public partial class AddAdditionalIndexForPackageDeletes : DbMigration { public override void Up() { Sql("IF NOT EXISTS(SELECT * FROM sys.indexes WHERE name = 'nci_wi_Packages_IsListedDeleted' AND object_id = O...
//------------------------------------------------------------------------------ // <copyright file="SqlConnectionHelper.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> //------------------------------------------------------------------------------ namespace ...
using SharpDX; namespace Engine { /// <summary> /// Particle system dynamic parameters /// </summary> public struct ParticleSystemParams { /// <summary> /// Scale operator /// </summary> /// <param name="p">Particle parameters</param> /// <param name="scale"...
using Xamarin.Essentials; using Xunit; namespace Tests { public class Email_Tests { } }
// 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. // Ported from https://github.com/llvm/llvm-project/tree/llvmorg-13.0.0/llvm/include/llvm-c // Original source is Copyright (c) the LLVM Project and ...
using Semicolon.OnlineJudge.Models; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using YamlDotNet.Serialization; using YamlDotNet.Serialization.NamingConventions; namespace Semicolon.OnlineJudge.Services { public class BuildRoleService : IBuildR...
#if NETCORE using System.Net.Sockets; namespace WampSharp.RawSocket { internal static class TcpClientExtensions { public static void Close(this TcpClient client) { client.Dispose(); } } } #endif
using Microsoft.Xna.Framework.Graphics; using MonoMod.Cil; using System; using System.Reflection; using Terraria; using Terraria.ModLoader; using Terraria.UI.Gamepad; namespace NPCFlagsAlways.Common.Hooks { internal partial class HookLoader { private const string ILFailMessage = "NPCFlagsAlways could not patch {0...
#region Copyright © 2015 Couchcoding // File: SyslogDetailsControl.cs // Package: Logbert // Project: Logbert // // The MIT License (MIT) // // Copyright (c) 2015 Couchcoding // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files...
@model MasteringEFCore.QueryObjectPattern.Starter.Models.Category @{ ViewData["Title"] = "Create"; } <h2>Create</h2> <form asp-action="Create"> <div class="form-horizontal"> <h4>Categories</h4> <hr /> <div asp-validation-summary="ModelOnly" class="text-danger"></div> <div clas...
using System; using System.Collections.Generic; using System.Text; namespace Crass.PackageCore { public sealed class PackageIndex : List<IPackageContentIndex>, IPackageIndex { static PackageIndex()=> Empty = new PackageIndex(); public PackageIndex() { } public Package...
using System; using System.IO; using System.Text; using System.Collections.Generic; #line hidden namespace Reggie { internal partial class Generator { public static void SqlLexerSetMatched(TextWriter Response, IDictionary<string, object> Arguments) { #line 1 "C:\Users\gazto\source\repos\Reggie\R...
@*@{ Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; } @model DapperDino.Areas.HappyToHelp.Models.HomeViewModel <section id="features" class="features"> <div class="container" style="margin-bottom:20px;"> <div class="row"> <div class="col-md-12"> <h2>Dashboard</h2> ...
using System.Collections; using System.Collections.Generic; using UnityEngine; using GameSpark.Plus; namespace GameSpark { [System.Serializable] public class CameraSystem : GameSparkModule { List<GameCam> cams; private static CameraSystem manager; public CameraSettingData cameraSe...
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using Microsoft.MixedReality.Toolkit.Input; using Microsoft.MixedReality.Toolkit.Utilities.Editor; using UnityEngine.Events; namespace Microsoft.MixedReality.Toolkit.UI { /// <summary> /// An event receiver that listens to toggle even...
using System; using System.Threading.Tasks; using FSM.BankAccount.Domain; using FSM.Orleans; namespace FSM.BankAccount.Orleans { public partial class BankAccount { private static async Task<BankAccountGrainState> ActiveStateProcessor( BankAccountGrainState state, BankAccountMess...
// 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 System; using WInterop.Errors; using WInterop.Support; using WInterop.Windows.Native; namespace WInterop.Windows { public static partial class Windows...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using Windows.Foundation; using Windows.Foundation.Collections; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Controls.Primitives; using Windows.UI.Xam...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Microso...
/* * 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.IO; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; namespace JavaScriptClient { public class Program { ...
using BEDA.Utils; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace BEDA.CIB.Contracts.Responses { /// <summary> /// 3.19.6跨境资金池集中收付汇响应主体 /// </summary> public class V1_CBCPTRANSFERTRNRS : IResp...
// 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; namespace Microsoft.Data.Entity.Migrations.Infrastructure { public class MigrationMetadataCompa...
using Gridify; using Gridify.Result; namespace Sample.Repository { public interface IStudentRepository { ServiceResult RetrieveStudents(GridRequest request); } }
/* * 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.Linq; using System.Text; namespace Sultanlar.DbObj.Internet { public class fiyatlar : DbObj { public int TIP; public int GMREF; public string GRUPKOD; public string OZELKOD; public string HK; public st...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; namespace _01_FirstStep { publi...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Moq; using NUnit.Framework; using ManagementSales.BUS; using ManagementSales.BUS.Interfaces; using ManagementSales.DAO; using System.Data; using FizzWare.NBuilder; using ManagementSales.DTO; using ...
using System; using System.Linq; using System.IO; using System.Text; using System.Collections; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Runtime.Serialization; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using PureCloudPlatform.Client.V2.Client; namespace PureClo...
///////////////////////////////////////////////////////////////////////////////// // Paint.NET // // Copyright (C) dotPDN LLC, Rick Brewster, Tom Jackson, and contributors. // // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. ...
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("AWSSDK.StorageGateway")] [assembly: Assemb...
#region License // /* // * ###### // * ###### // * ############ ####( ###### #####. ###### ############ ############ // * ############# #####( ###### #####. ###### ############# ############# // * ###### #####( ###### #####. ###### ##### ###### ##...
// 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. #nullable enable using System; using Test.Cryptography; using Xunit; namespace System.Formats.Cbor.Tests { pub...
namespace PuyoTools.GUI { partial class ArchiveExplorer { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
using System; using System.Collections.Generic; using System.Linq; using EventStore.Core.Data; using EventStore.Core.Messages; using EventStore.Core.Services.Storage.ReaderIndex; using EventStore.Core.Services.TimerService; using EventStore.Core.Tests; using EventStore.Core.TransactionLog.LogRecords; using EventStore.P...
// <auto-generated /> using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using CodeFirstEntityCore.Data; namespace CodeFirstEntityCore.Data.Migrations { [D...
/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * ...
using System; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; // 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: Asse...
namespace BlazorHero.CleanArchitecture.Application.Requests.Finance { public class GetAllPagedTransactionsRequest : PagedRequest { public string SearchString { get; set; } } }