text
stringlengths
3
1.02M
//----------------------------------------------------------------------- // <copyright file="XmlObjectExtension.cs" company="NJsonSchema"> // Copyright (c) Rico Suter. All rights reserved. // </copyright> // <license>https://github.com/rsuter/NJsonSchema/blob/master/LICENSE.md</license> // <author>Rico Suter, mai...
using System; using System.Collections.Generic; using System.Text; using System.Net; using System.Net.Sockets; using System.ComponentModel; using System.IO; using System.Text.RegularExpressions; namespace GRebind { public class HttpData { public WebHeaderCollection Headers; public...
using System; using System.Collections.Generic; using System.Linq; namespace _01.CountCharsInAString { class Program { static void Main(string[] args) { string[] text = Console.ReadLine() .Split(" ",StringSplitOptions.RemoveEmptyEntries) .ToArray(); ...
using System; using NetOffice; namespace NetOffice.MSHTMLApi.Enums { /// <summary> /// SupportByVersion MSHTML 4 /// </summary> [SupportByVersionAttribute("MSHTML", 4)] [EntityTypeAttribute(EntityType.IsEnum)] public enum _htmlZOrder { /// <summary> /// SupportByVersion MSHTML 4 /// </su...
/* * 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 Rakor.Blazor.ECharts.Option.Enum; namespace Rakor.Blazor.ECharts.Option { public class LineStyle : AreaStyle { /// <summary> /// 线宽。 /// </summary> public double? Width { set; get; } /// <summary> /// 线的类型。 /// </summary> public LineStyle...
//------------------- // Copyright 2019 // Reachable Games, LLC //------------------- using System; using System.Collections; using UnityEngine; using UnityEngine.Networking; using UnityEditor; namespace ReachableGames { namespace SmoothTrails { public class AssetsPopup : EditorWindow { static string kNextC...
/* This file is part of the iText (R) project. Copyright (c) 1998-2022 iText Group NV Authors: iText Software. This program is offered under a commercial and under the AGPL license. For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below. AGPL licensing: This program is free...
using UnityEngine; using UnityEngine.UI; public class MoleculeText : MonoBehaviour { public int option; public Image line; private void OnEnable() { ContentAdaptationManager.NextMolecule += SetText; } private void OnDisable() { ContentAdaptationManager.NextMolecule -= Se...
@using Syncfusion.EJ2.PivotView @section Meta{ <meta name="description" content="This demo for Essential JS2 ASP.NET MVC Pivot Table control demonstrate the cell selection feature" /> } @section ControlsSection{ <div class="col-lg-8 control-section" style="overflow:auto"> <div class="content-wrapper"> ...
using System; using System.Collections.Generic; using System.Text; using FlubuCore.Context; using FlubuCore.Tasks; using FlubuCore.Tasks.Process; namespace FlubuCore.Azure.Tasks.Sf { public partial class AzureSfClusterClientCertificateTask : ExternalProcessTaskBase<AzureSfClusterClientCertificateTask> { ...
namespace _07.RawData { public class Car { public string Model { get; set; } public Engine Engine { get; private set; } public Cargo Cargo { get; private set; } public Tire[] Tires { get; private set; } public Car(string model, Engine engine, Cargo cargo, Tire[] tires) ...
// *** 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.IO; using System.Net; using System.Net.Security; using System.Net.Sockets; using System.Security.Authentication; using System.Security.Cryptography.X509Certificates; using System.Threading; using System.Threading.Tasks; namespace Myrtille.Fleck { public class SocketWrapper : ...
// Copyright 2015-2018 The NATS 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 required by applicable law or agreed to...
namespace HuaweiMobileServices.IAP { public class OrderStatusCode { public const int ORDER_STATE_SUCCESS = 0; public const int ORDER_STATE_FAILED = -1; public const int ORDER_STATE_CANCEL = 60000; public const int ORDER_STATE_PARAM_ERROR = 60001; public const int ORD...
using System; using System.IO; using System.Linq; namespace AdventOfCode { class Program { static void Main (string[] args) { string[] dimensions = File.ReadLines(@"input.txt").ToArray(); ulong lengthOfRibbon = 0; foreach (var dim in dimensions) ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Antlr.Runtime; using Compiler.SemanticStructures; using Compiler.Errors; using Compiler.CodeGenerators; using System.Reflection; using System.Reflection.Emit; namespace Compiler.AST { public class RecordDotAccessNode : Ac...
/* *************************************************************************** * This file is part of SharpNEAT - Evolution of Neural Networks. * * Copyright 2004-2016 Colin Green (sharpneat@gmail.com) * * SharpNEAT is free software; you can redistribute it and/or modify * it under the terms of The MIT License ...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.CompilerServices; using RimWorld; using Verse; using AbilityUser; using AbilityUserAI; using Verse.AI; using UnityEngine; using CompDeflector; namespace TorannMagic { [CompilerGenerated] [Serializable] [StaticConstruct...
using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using Microsof...
using System; using System.Linq; using System.Threading.Tasks; using Fluid; using Microsoft.AspNetCore.Routing; using Microsoft.Extensions.Options; using OrchardCore.Autoroute.Model; using OrchardCore.Autoroute.Models; using OrchardCore.ContentManagement; using OrchardCore.ContentManagement.Handlers; using OrchardCore....
using UnityEngine; using System.Collections; using UnityEngine.UI; public class PlayerController : MonoBehaviour { // Use this for initialization private Animator anim; private Rigidbody2D rb2d; public Transform posPe; [HideInInspector] public bool tocaChao = false; //Declaração da variaveis do pulo public ...
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tasks; namespace DllToInject { //this awesome code was extracted from here: https://stackoverflow.com/a/53029501 class PointerToObject { [Stru...
using System.Collections.Immutable; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; namespace Meziantou.Analyzer.Rules { [DiagnosticAnalyzer(LanguageNames.CSharp)] public sealed class StringShouldNotContai...
using System; class Program { static void Main(string[] args) { AVL<int> tree = new AVL<int>(); tree.Insert(1); tree.Insert(2); tree.Insert(3); tree.Insert(4); tree.Insert(5); tree.Insert(6); } }
@model BookStore.Models.Book @{ ViewData["Title"] = "Delete"; } <h1>Delete</h1> <h3>Are you sure you want to delete this?</h3> <div> <h4>Book</h4> <hr /> <dl class="row"> <dt class = "col-sm-2"> @Html.DisplayNameFor(model => model.id) </dt> <dd class = "col-sm-10"...
using System; using System.Collections.Generic; using System.IO; using System.Net; using System.Net.Sockets; using System.Reflection; using System.Text; using System.Threading; using System.Xml; using Orleans.Configuration; using Orleans.Providers; namespace Orleans.Runtime.Configuration { /// <summary> /// Or...
using ControleDespesas.Domain.Empresas.Interfaces.Repositories; using ControleDespesas.Infra.Data.Repositories; using ControleDespesas.Test.AppConfigurations.Base; using ControleDespesas.Test.AppConfigurations.Settings; using ControleDespesas.Test.AppConfigurations.Util; using NUnit.Framework; namespace ControleDespe...
using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using VideoOS.ConfigurationAPI; namespace ConfigAPIClient.Util { public static class BitmapFormatting { public static void PrivacyMaskOverlay(ConfigurationItem item, Bitmap bitmap, bool isShowin...
using System; using System.Diagnostics; using System.Linq; using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using Razer.Chroma.Broadcast; using RGBKit.Core; namespace AuraConnect { /// <summary> ...
// 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.Generic; using System.Diagnostics; using System.Reflection; using Microsoft.EntityFrameworkCore.ChangeTracking.Internal; using Microsoft.Entity...
using System; using CSF.Screenplay.Performables; namespace CSF.Screenplay.Actors { /// <summary> /// Represents an actor which is able to perform 'then' steps (post-conditions to performing actions, usually /// assertions). /// </summary> public interface IThenActor { /// <summary> /// Performs th...
using System.Text.Json.Serialization; namespace Horizon.Payment.Alipay.Response { /// <summary> /// AlipayOpenMiniMiniappFavoriteextDeleteResponse. /// </summary> public class AlipayOpenMiniMiniappFavoriteextDeleteResponse : AlipayResponse { /// <summary> /// 成功:true 失败:false ...
using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Reflection; using Invio.Extensions.Reflection; using Invio.Xunit; using Xunit; namespace Invio.Immutable { [UnitTest] public sealed class DoublePropertyHandlerProviderTests : PropertyHandlerProviderTestsBase { ...
/* * Copyright 2014, 2015 Dominick Baier, Brock Allen * * 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 applica...
using Microsoft.EntityFrameworkCore.Migrations; namespace DevIO.Data.Migrations { public partial class inicial : Migration { protected override void Up(MigrationBuilder migrationBuilder) { } protected override void Down(MigrationBuilder migrationBuilder) { } ...
using System; namespace _16.TrickyStrings { public class TrickyStrings { public static void Main(string[] args) { string delimiter = Console.ReadLine(); int numberN = int.Parse(Console.ReadLine()); string lastPartOfString = ""; string finalStrin...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Oppenheimer { public class CheckedListItem<T> : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private...
#region copyright // // Copyright (c) DOT Consulting scrl. All rights reserved. // Licensed under the provided EULA. See EULA file in the solution root for full license information. // #endregion using System; using System.Xml; using Dotc.MQ; using Dotc.Wpf.Controls.HexViewer; using Newtonsoft.Json.Linq; namesp...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TestConsole { class Program { static void Main(string[] args) { string localAppData = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationDa...
using System; using System.Threading.Tasks; namespace TestContainers.Container.Abstractions.Utilities { /// <summary> /// Worker that batches up requests /// </summary> public abstract class BatchWorker { private readonly object _lockable = new object(); private bool _startingCurre...
/* * Bybit API * * ## REST API for the Bybit Exchange. Base URI: [https://api.bybit.com] * * OpenAPI spec version: 0.2.10 * Contact: support@bybit.com * Generated by: https://github.com/swagger-api/swagger-codegen.git */ using System; using System.Linq; using System.IO; using System.Text; using System.Text....
using GherkinSpec.TestModel; using Microsoft.VisualStudio.TestPlatform.ObjectModel; using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging; using System.Threading.Tasks; namespace GherkinSpec.TestAdapter.Execution { public interface IStepsExecutor { Task<TestResult> Execute(TestCase testCase, D...
// <auto-generated /> using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Mistakes.Journal.Api; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; na...
// 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.Drawing; using System.Runtime.InteropServices; namespace System.Windows.Forms { public partial cl...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Telerik.Sitefinity.Frontend.Search { /// <summary> /// Defines different word mode for indexing service to search within /// </summary> public enum WordsMode { All...
//---------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. // All rights reserved. // // This code is licensed under the MIT License. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentat...
/* * 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 System; using GalaSoft.MvvmLight; namespace TEditXNA.Terraria { [Serializable] public class TileEntity : ObservableObject { private byte _type; private int _id; private Int16 _x; private Int16 _y; //data for when this is a dummy private Int16 _npc; ...
/* * 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...
 // AboutPage.xaml.cs // Copyright (c) 2014+ by Michael Penner. All rights reserved. using Xamarin.Forms; namespace Eamon.Mobile.Views { public partial class AboutPage : ContentPage { public AboutPage() { InitializeComponent(); } } }
// ------------------------------------------------------------------------------ // <auto-generated> // Generated by Xsd2Code. Version 3.4.0.18239 Microsoft Reciprocal License (Ms-RL) // <NameSpace>Mim.V6301</NameSpace><Collection>Array</Collection><codeType>CSharp</codeType><EnableDataBinding>False</EnableDat...
// <auto-generated /> using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; using MyProject.Admin.EntityFram...
using System; using System.Threading.Tasks; using CliFx; using CliFx.Attributes; using CliFx.Infrastructure; using DrfLikePaginations; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Mvc.ApplicationModels; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions...
// Standard using System.Collections; using System.Collections.Generic; namespace BagherMusic.Core.Structures { public class ResultSet<T> { public ResultSet(double delay, int count, HashSet<T> hits) { Delay = delay; Count = count; Hits = hits; } public double Delay { get; } public...
using PFM.DataAccessLayer.Repositories.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using PFM.DataAccessLayer.Entities; namespace PFM.DataAccessLayer.Repositories.Implementations { public class AtmWithdrawRepository : BaseRepositor...
using System; using Xamarin.Forms; using ZXing.Net.Mobile.Forms; using ZXing.Net.Mobile.Forms.WindowsUniversal; using Xamarin.Forms.Platform.UWP; using System.ComponentModel; using System.Reflection; [assembly: ExportRenderer(typeof(ZXingScannerView), typeof(ZXingScannerViewRenderer))] namespace ZXing.Net.Mobile.Form...
// Copyright (c) .NET Foundation. 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.Buffers; using System.Collections.Generic; using System.IO; using System.Runtime.ExceptionServices; using Microsoft.AspNetCor...
using System; using System.Net.Http; using System.Threading.Tasks; using System.Web.Http; using Microsoft.Bot.Connector; using System.Diagnostics; using Microsoft.Bot.Builder.Dialogs; using SellerNotesBot.Dialogs; namespace SellerNotesBot { [BotAuthentication] public class MessagesController : ApiController ...
@model Aiursoft.Developer.Models.SitesViewModels.CreateSiteViewModel @{ ViewData["Title"] = "Create New Site"; } <div class="container-fluid"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a asp-controller="Apps" asp-action="Index">@Localizer["Dashboard"]</a> </li> ...
/* * Copyright 2018 JDCLOUD.COM * * 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...
using System.Runtime.CompilerServices; namespace CulverinEditor.Debug { public enum Color { NONE = -1, BLUE, GREEN, YELLOW, ORANGE, PINK, RED } public enum Department { GENERAL = 0, PLAYER, IA, STAGE, ...
/* This file is part of the iText (R) project. Copyright (c) 1998-2021 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 with the addition of the...
/******************************************************************************************* * * raylib [text] example - Draw text inside a rectangle * * This example has been created using raylib 2.3 (www.raylib.com) * raylib is licensed under an unmodified zlib/libpng license (View raylib.h for details) * * E...
using UnityEngine; using System.Collections; using UnityEngine.UI; [ExecuteInEditMode] public class UITransparent : MonoBehaviour { [Range(0,1)] public float opacity = 1; private void Update() { GetComponent<Graphic>().color = GetComponent<Graphic>().color.Set(a: opacity); ...
using Microsoft.AspNetCore.Identity; using Microsoft.Extensions.Options; using Abp.Authorization; using ABPProject.Authorization.Roles; namespace ABPProject.Authorization.Users { public class UserClaimsPrincipalFactory : AbpUserClaimsPrincipalFactory<User, Role> { public UserClaimsPrincipalFactory( ...
namespace LocalStorage.Paging.Views { internal sealed class TypeListPage : AbstractLinkedListPageView { public TypeListPage(Page page) : base(page) { } } }
// TEMPLATE:.+ 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: As...
// <auto-generated></auto-generated> #region License // Copyright (c) 2007 James Newton-King // // 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 ...
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: AssemblyConfigurat...
using System; using System.Collections.Generic; using System.Text; namespace BusinessObjectLayer.Progressive.OnlineShop.V2.Part7 { // Resp: encaps. selected items public class OnlineBasket : List<OnlineBasketItem> { } }
using System; namespace CqrsFramework.Messaging { public interface IEvent { Guid SourceId { get; } } }
using System; using System.Diagnostics; using System.IO; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using Newtonsoft.Json; using SeguraChain_Desktop_Wallet.InternalForm.Setup; using SeguraChain_Desktop_Wallet.Language.Database; using SeguraChain_Desktop_Wallet.Settings.Enum; using Seg...
namespace NWN.FinalFantasy.Core.NWScript.Enum.Item.Property { public enum ImmunityMisc { Backstab = 0, LevelAbilityDrain = 1, Mindspells = 2, Poison = 3, Disease = 4, Fear = 5, Knockdown = 6, Paralysis = 7, CriticalHits = 8, DeathMa...
using System; using System.Collections.Generic; using System.Linq; using FluentAssertions; using Polly.Specs.Helpers; using Xunit; namespace Polly.Specs { public class RetryForeverAsyncSpecs { [Fact] public void Should_not_throw_regardless_of_how_many_times_the_specified_exception_is_raised() ...
namespace CompositionTests { partial class frmRefine { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> //...
using Pims.Core.Extensions; using Pims.Core.Helpers; using Pims.Dal; using System.Collections.Generic; using Entity = Pims.Dal.Entities; namespace Pims.Core.Test { /// <summary> /// EntityHelper static class, provides helper methods to create test entities. /// </summary> public static partial class En...
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="TypeHelper.cs" company="Catel development team"> // Copyright (c) 2008 - 2015 Catel development team. All rights reserved. // </copyright> // -----------------------------------...
namespace Exemplo2.Areas.HelpPage.ModelDescriptions { public class EnumValueDescription { public string Documentation { get; set; } public string Name { get; set; } public string Value { get; set; } } }
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Threading.Tasks; using NServiceBus.Extensibility; using NServiceBus.Unicast.Subscriptions; using NServiceBus.Unicast.Subscriptions.MessageDrivenSubscriptions; public class InMemorySubscriptionStorage : ISubscriptionStorag...
using System.Collections.Generic; using System.Linq; using UncommonSense.CBreeze.Core.Base; using UncommonSense.CBreeze.Core.Contracts; namespace UncommonSense.CBreeze.Core.Page { public class Pages : IntegerKeyedAndNamedContainer<Page>, INode { internal Pages(Application application, IEnumerable<Page>...
using System; using System.Collections.Generic; using System.Diagnostics.Contracts; using System.Text; using System.Threading; using System.Threading.Tasks; using AutoMapper; using MongoDB.Bson; using MongoDB.Bson.Serialization; using MongoDB.Driver; namespace ContractSystem.DAL.MongoDb.DbSetting { /// <summary> ...
using System; using System.Text; using Cosmos.System.Network.Config; using Cosmos.System.Network.IPv4; using Cosmos.System.Network.IPv4.TCP; using Con = System.Console; namespace Cosmos.System.Network { public class NetworkDebugger { /// <summary> /// TCP Server. /// </summary> ...
//------------------------------------------------------------------------------ // <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 Omnikeeper.Base.Entity; using Omnikeeper.Base.Entity.DataOrigin; using Omnikeeper.Base.Utils; using Omnikeeper.Base.Utils.ModelContext; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Omnikeeper.Base.Model { public interface IChangesetModel { ...
using System.Text.Json.Serialization; namespace Essensoft.AspNetCore.Payment.Alipay.Domain { /// <summary> /// PurchaseApplyInfoDTO Data Structure. /// </summary> public class PurchaseApplyInfoDTO : AlipayObject { /// <summary> /// 采购类目 /// </summary> [JsonPropertyN...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>@ViewData["Title"] - Blog_demo</title> <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" /> <link rel="stylesheet" href="~/css/site...
using System; using System.Collections.Generic; using System.Text; namespace BHackerOverhaul.FileHandler { public class HeaderReader { public string ReadHeader(byte[] file) { string OutPut = ""; UInt32 Length = ByteTools.Read4Bytes(file, (UInt32)0x4); OutPut...
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using MFiles.VAF.Common; using MFilesAPI; namespace MFiles.VAF.Extensions { /// <summary> /// Extension methods for the <see cref="MFSearchBuilder"/> class. /// </summary> // ReSharper disable once InconsistentN...
using Antrv.FFMpeg.Interop; namespace Antrv.FFMpeg.Model.Codecs; public abstract class Decoder: Coder { private protected Decoder(ConstPtr<AVCodec> ptr) : base(ptr, false) { } }
// Wi Advice (https://github.com/raste/WiAdvice)(http://www.wiadvice.com/) // Copyright (c) 2015 Georgi Kolev. // Licensed under Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0). using System; using System.Collections.Generic; using System.Web.UI.WebControls; using AjaxControlToolkit; usi...
using System.Collections; using System.Collections.Generic; using UnityEngine; using DG.Tweening; using System; using UnityEngine.EventSystems; public class PlayerMovement : MonoBehaviour { public Collider2D collider2d; [HideInInspector] public Rigidbody2D rigidbody2d; private Collision collisio...
namespace System; partial class Optional { public static Optional<Unit> True() => new(default); public static Optional<Unit> False() => default; }
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Transactions; using Autofac; using ChinhDo.Transactions.FileManager; using CKAN.Versioning; using CKAN.Configuration; using log4net; namespace CKAN { /// <summary> /// Manage multiple KSP installs. /// </summar...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Management.Automation; using System.Management.Automation.Internal; using Microsoft.PowerShell....
using AutoMapper; using FluentValidation; using MediatR; using Microsoft.EntityFrameworkCore; using Stickerzzz.Core.Users; using Stickerzzz.Infrastructure.Data; using Stickerzzz.Infrastructure.Errors; using Stickerzzz.Infrastructure.Security; using System; using System.Collections.Generic; using System.Linq; using Sys...
using System; using System.Collections.Generic; using System.Security.Cryptography; using System.Text; namespace Blockchain { public class StringUtil { public static string ApplySha256(string input) { var crypt = new System.Security.Cryptography.SHA256Managed(); var hash...
using System; using System.Collections.Generic; using System.Linq; public class Pizza { private string name; private List<Topping> toppings; private Dough dough; public Pizza(string name) { this.Name = name; this.Toppings = new List<Topping>(); } public string Name { ...
///////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Tencent is pleased to support the open source community by making behaviac available. // // Copyright (C) 2015 THL A29 Limited, a Tencent company. All rights reserved. // // Licensed under the BSD 3-Clau...