text
stringlengths
1
932k
using static TensorShader.VariableNode; namespace TensorShader { public partial class Field { /// <summary>QuaternionRRelu</summary> /// <remarks>実部のみReluを適用</remarks> public static Field QuaternionRRelu(Field x) { Field y = new(); Link link = new Links.QuaternionAri...
using BizHawk.Emulation.Common; namespace BizHawk.Emulation.Cores.Consoles.Nintendo.NDS { partial class NDS : ISaveRam { public new bool SaveRamModified => _core.SaveRamIsDirty(); public new byte[] CloneSaveRam() { int length = _core.GetSaveRamLength(); if (length > 0) { byte[] ret = new byte[le...
#pragma checksum "C:\Users\Jonathan Villeda\Documents\PROYECTOS C#\AppWebPersonal\Views\DetalleCompras\Edit.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2e2775cdb7e6c249087cec4b0aece3d407e53ca8" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledIte...
namespace AnnoSavegameViewer.Structures.Savegame.Generated { using AnnoSavegameViewer.Serialization.Core; public class ThreadState { [BinaryContent(Name = "LastReservationTime", NodeType = BinaryContentTypes.Attribute)] public object LastReservationTime { get; set; } [BinaryContent(Name = "Requesting...
using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; public class TabSchemeBRY : TabSchemeObject { public override void GetName() { title.text = Name + " " + ID; } public override void Load(BinaryReader reader) { Source sourse = schemeObj...
// 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.IO; using System.Linq; using Microsoft.AspNetCore.BuildTools; using Microsoft.Build.Framework; using Microsoft.Build.Utilities; using NuGet...
namespace Sudoku { partial class SudokuForm { /// <summary> /// Erforderliche Designervariable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Verwendete Ressourcen bereinigen. /// </summary> /// <para...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.IO; namespace Max_Sequence_of_Equal_Elements { class Program { static void Main(string[] args) { File.WriteAllText(@"..\..\Input.txt", "3 4 4 5 5 5 2 2"...
using System; using JetBrains.Annotations; namespace CodeJam.Collections { // DONTTOUCH: please, DO NOT move the OwnedCollection<TOwner, TKey, TItem> into its own file. // The code in it is a copy of the OwnedCollection<TOwner, TItem> and it's easier // to keep them in sync when both are in a single file. /// <...
/* Copyright 2012-2017 Marco De Salvo 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...
// 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. namespace System.Threading { public class HostExecutionContext : IDisposable { public HostExecutionC...
//--------------------------------------------------------------------- // <copyright file="ConvertFromUriLiteralTests.cs" company="Microsoft"> // Copyright (C) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. // </copyright> //------------------------------...
// ***************************************************************** // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the Microsoft Public License. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANT...
using System; using System.Diagnostics; namespace MatchNBuy.Model.TransferObjects; [DebuggerDisplay("[{KnownAs}] {FirstName} {LastName}")] [Serializable] public class UserForList : UserForLoginDisplay { public string FirstName { get; set; } public string LastName { get; set; } public string Introduction { get; set...
using System; namespace Spackle { /// <summary> /// Defines a generic version of <see cref="EventArgs"/>, which is useful with /// <see cref="EventHandler&lt;T&gt;"/> /// </summary> /// <typeparam name="T">The type of the event data.</typeparam> public partial class EventArgs<T> : EventArgs { /// <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; using System.Diagnostics; using System.IO; using System.Net.NetworkInformation; using Syst...
using System; using System.Threading; using Legacy.Core.Api; using Legacy.Core.Combat; using Legacy.Core.Entities.Items; using Legacy.Core.PartyManagement; using Legacy.Core.Spells.CharacterSpells; using Legacy.Core.UpdateLogic; using Legacy.Game.HUD; using Legacy.Game.IngameManagement; using Legacy.MMInput; using Uni...
using JBP.ConnectionUtilities; using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Sockets; using System.Text; using System.Threading; using System.Threading.Tasks; namespace A.HelperFunctions { class Server : ConnectionUtility { ...
 namespace Couchbase.Core.IO.Operations.Legacy.SubDocument { /// <summary> /// Represents one more fragments of an <see cref="IDocument{T}"/> that is returned by the sub-document API. /// </summary> /// <typeparam name="TDocument">The document</typeparam> public interface IDocumentFragment<out TDoc...
@model InterviewMvc.Models.MovieModel @{ ViewData["Title"] = "Edit"; } <h2>Edit</h2> <h4>MovieModel</h4> <hr /> <div class="row"> <div class="col-md-4"> <form asp-action="Edit"> <div asp-validation-summary="ModelOnly" class="text-danger"></div> <input type="hidden" asp-for="I...
using Microsoft.Extensions.DependencyInjection; using Nikcio.ApiAuthentication.Persistence.ApiKeys.Repositories; namespace Nikcio.ApiAuthentication.Persistence.ApiKeys.Extensions { /// <summary> /// Repository Extensions /// </summary> public static class RepositoryExtensions { /// <summary> ...
using HEC.MVVMFramework.Base.Interfaces; namespace HEC.MVVMFramework.Base.Implementations { public class Message : IMessage { private readonly string _message; string IMessage.Message { get { return _message; } } publi...
using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Windows; // アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 // アセンブリに関連付けられている情報を変更するには、 // これらの属性値を変更してください。 [assembly: AssemblyTitle("ListBoxForWpf")] [assembly: AssemblyDescription("")] [as...
using System; using System.Linq; using Baseline; using BlueMilk.IoC.Instances; using Microsoft.Extensions.DependencyInjection; using Shouldly; using Xunit; namespace BlueMilk.Testing.IoC.Acceptance { public class custom_policies { // SAMPLE: database-users public class DatabaseUser { ...
namespace Ship { namespace FirstEdition.TIESilencer { public class SienarJaemusAnalyst : TIESilencer { public SienarJaemusAnalyst() : base() { PilotInfo = new PilotCardInfo( "Sienar-Jaemus Analyst", 4, ...
// <copyright file="CommandLineOptionsUnitTests.cs" company="Muiris Woulfe"> // © Muiris Woulfe // Licensed under the MIT License // </copyright> namespace NuGetTransitiveDependencyFinder.UnitTests.ConsoleApp.Input { using FluentAssertions; using NuGetTransitiveDependencyFinder.ConsoleApp.Input; using NuGe...
namespace FoodControl.BusinessLogicLayer { using System; using System.Collections.Generic; using FoodControl.Model; /// <summary> /// The basic contract for the PortionService class. /// </summary> public interface IPortionService { void Add(Portion portion); Portion Ge...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Globalization; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Threading.Tasks; namespace Device.Net.Windows { /// <summary> /// TODO: Merge this factory class with othe...
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; namespace MovieShop.API.Infrastructure { public class ModelStateValidationFilterAttribute : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext context) { ...
//2.两数相加 //给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 数字。 //请你将两个数相加,并以相同形式返回一个表示和的链表。 //你可以假设除了数字 0 之外,这两个数都不会以 0 开头。 //示例 1: //输入:l1 = [2,4,3], l2 = [5, 6, 4] //输出:[7,0,8] //解释:342 + 465 = 807. //示例 2: //输入:l1 = [0], l2 = [0] //输出:[0] //示例 3: //输入:l1 = [9, 9, 9, 9, 9, 9, 9], l2 = [9, 9, 9, 9] //输出:[...
namespace HouseManager.Data.Migrations { using System; using Microsoft.EntityFrameworkCore.Migrations; public partial class InitialCreate : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "AspN...
//------------------------------------------------------------------------------ // <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> //--...
namespace RadioPi.MCP { public sealed class Register { public byte GPIOA { get { return Addresses.PORT_EXPANDER_GPIOA_REGISTER_ADDRESS; } } public byte GPIOB { get { return Addresses.PORT_EXPANDER_GPIOB_REGISTER_ADDRESS; } } public byte IODIRA { get { return Addresses.PORT_EXPANDER_GPIO...
// 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 Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Options; namespace Microsoft.AspNetCore.Identity.Service.IntegratedWebClient { public c...
using System; namespace Sigma { /// <summary> /// Specifies a range of time, that is, a time with a beginning and end. /// </summary> public class TimeRange : Record<DateTime, DateTime> { public TimeRange(DateTime startTime, DateTime endTime) : base(startTime, endTime) { } public D...
namespace Scottxu.WebServiceDataProvider.Demo { partial class FormDemo { /// <summary> /// 必需的设计器变量。 /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// 清理所有正在使用的资源。 /// </summary> /// <param name="disposi...
namespace PizzaBox.Domain { public abstract class PizzaComponent { public string Name {get;} public decimal Cost {get; set;} public PizzaComponent(string _name, decimal _cost) { Name = _name; Cost = _cost; } public override string ToString() { string[] t = this....
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations.Schema; namespace CCIA.Models { public partial class AppChanges { public int Id { get; set; } public ...
using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Linq; using System.Reflection; namespace SwaggerEx.Areas.HelpPage { /// <summary> /// This class will create an object of a given type and populate it with s...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; public static class MetaDataExtentios { //public static bool isX(this PropertyMetadata obj) //{ // Debug.WriteLine(obj.ToString()); //...
// Copyright Naked Objects Group Ltd, 45 Station Road, Henley on Thames, UK, RG9 1AT // 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 requi...
using System; using System.Threading.Tasks; using Abp.Application.Services; using Abp.Runtime.Session; namespace Todo.DemoPlugin.Calculation { /// <summary> /// Derive your application services from this class. /// </summary> public class CalculationService : ApplicationService, ICalculationService ...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; using Windows.Foundation.Metadata; using Windows.UI.Core; using Microsoft.Maui.Controls.Internals; using NativeAutomationProperties = Microsoft.UI.Xaml.Automation.A...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //----------------------------------------...
namespace Singleton { public class SingletonLazy { private static SingletonLazy uniqueInstance; private static readonly object lockObject = new object(); public int IntVariable { get; private set; } private SingletonLazy() { IntVariable = 1000; } ...
/* EmbeddedWinFormsControl.cs * * Copyright © 2013 by Adam Hellberg and Brandon Scott. * * 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 limitat...
/* * 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.Concurrent; using System.Runtime.InteropServices; internal static class ApiHelper { const string KERNEL32 = "kernel32.dll"; private static IntPtr LoadLibraryFromSystemPathIfAvailable(string libraryName) { IntPtr module = IntPtr.Zero; // KB253362...
using CorePacs.DataAccess.Contracts; using CorePacs.DataAccess.Domain; using Dicom.Network; using System; using System.Collections.Generic; using System.Text; namespace CorePacs.Dicom.Contracts { public interface IDicomParser { DicomRequestAttrs Extract(DicomService service,DicomCStoreRequest request)...
/* * MailSlurp API * * MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](https://www.mailslurp.com) ...
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Net; using System.Threading; using System.Threading.Tasks; using DynamicExpression.Entities; using DynamicExpression.Interfaces; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using ...
// CS3005: Identifier `B.TEST()' differing only in case is not CLS-compliant // Line: 15 // Compiler options: -warnaserror using System; [assembly: CLSCompliantAttribute (true)] public class A { [CLSCompliant (false)] public void Test () {} public void test () {} } public class B: A { publi...
namespace JsonRocket { public enum Token { Error = 0, Undefined, ObjectStart, ObjectEnd, ArrayStart, ArrayEnd, Key, String, Float, Integer, True, False, Null } }
using System; using System.Collections.Generic; using FluentValidation; using Prime.Models; namespace Prime.ViewModels.HealthAuthoritySites { public class HealthAuthoritySiteHoursOperationViewModel { public ICollection<BusinessDay> BusinessHours { get; set; } } public class HealthAuthoritySite...
using System.Collections.Generic; using System.Reflection; using System.Diagnostics; using System; using System.Text; using System.IO; using MediaServer.Media; namespace MediaServer.Web { internal class Lighttpd { private Process _proc; #region Singleton private static readonly Lazy<Lighttpd> SingletonInstanc...
using GoRogue; using System; using System.Collections.Generic; namespace Engine.Utilities.Mathematics { public class PolarCoord { public readonly double Radius; //in meters public readonly double Theta; //in degrees clockwise public PolarCoord(double radius, double theta) { ...
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // <auto-generated/> #nullable disable using System.Collections.Generic; using System.Text.Json; using Azure.Core; using Azure.ResourceManager.AppPlatform; namespace Azure.ResourceManager.AppPlatform.Models { interna...
using System.Collections.Generic; namespace TeamCityTheatre.Core.Client.Responses { public class BuildChangesResponse { public int Count { get; set; } public List<BuildChangeResponse> Change { get; set; } } }
using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Threading.Tasks; using Newtonsoft.Json; namespace CloudStack.Net { public class IssueNuageVspResourceRequestRequest : APIRequest { public IssueNuageVspResourceRequestRequest() : base("issueNuageVspResourc...
// // Copyright (c) 2008-2011, Kenneth Bell // // 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 // the rights to use, copy, modify, merge, ...
// ---------------------------------------------------------------------------------------------------------------------- // <copyright file="IAspectRegistrationBuilderExtensions.cs" company="James Consulting LLC"> // Copyright (c) 2019 All Rights Reserved // </copyright> // <author>Rudy James</author> // <summ...
namespace PackSite.Library.Modeling.Querying { using System; using System.Linq; using Microsoft.Extensions.DependencyInjection; using PackSite.Library.Modeling.Querying.Policies; /// <summary> /// <see cref="IServiceCollection"/> extensions. /// </summary> public static class ServiceCo...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.IO; using System.Runtime.InteropServices; using System.Text; using System.Windows.Forms; namespace GTMP { public partial class GTMPForm : Form { string openedFile; public GTMPForm() ...
/* * 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...
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "5CBB1AC2D8ED3DC4A48754FE55FF761066962808" //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Change...
// Licensed under the MIT License. // Copyright (c) Microsoft Corporation. All rights reserved. using System.Collections.Generic; using System.Runtime.CompilerServices; using Microsoft.Bot.Schema; using Newtonsoft.Json; namespace Microsoft.Bot.Builder.Dialogs.Adaptive.Conditions { /// <summary> /// Actions t...
// Copyright 2007-2017 Chris Patterson, Dru Sellers, Travis Smith, et. al. // // Licensed under the Apache License, Version 2.0 (the "License"); you may not use // this file except in compliance with the License. You may obtain a copy of the // License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unles...
// Copyright 2018 Esri. // // 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...
/* * 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...
namespace Yandex.Alice.Sdk.Models { using System.Text.Json.Serialization; public class AliceSessionModel { [JsonPropertyName("new")] public bool New { get; set; } [JsonPropertyName("session_id")] public string SessionId { get; set; } [JsonPropertyName("message_id"...
using System; using System.Collections.Generic; using Uial.Scopes; namespace Uial { public class ValueDefinition { private string LiteralValue { get; set; } private string ReferenceName { get; set; } private ValueDefinition() { } public string Resolve(RuntimeScope scope) ...
using System.Threading.Tasks; using Abp.Application.Services; using Book.Authorization.Accounts.Dto; namespace Book.Authorization.Accounts { public interface IAccountAppService : IApplicationService { Task<IsTenantAvailableOutput> IsTenantAvailable(IsTenantAvailableInput input); Task<Register...
namespace Charlotte.LevelEditors { partial class LevelEditorDlg { /// <summary> /// 必要なデザイナー変数です。 /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// 使用中のリソースをすべてクリーンアップします。 /// </summary> /// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。...
using System; using System.Linq; using FirebaseDotNetCore.Subscriptions; using Newtonsoft.Json.Linq; namespace FirebaseDotNetCore.Filters { internal class StartAtStringFilter : ISubscriptionFilter { private readonly string _startingValue; public StartAtStringFilter(string startingValue) ...
#region MIT. // // Gorgon. // Copyright (C) 2013 Michael Winsor // // 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 the rights // to use...
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("CM...
// ---------------------------------------------------------------------------- // The MIT License // LeopotamGroupLibrary https://github.com/Leopotam/LeopotamGroupLibraryUnity // Copyright (c) 2012-2019 Leopotam <leopotam@gmail.com> // ---------------------------------------------------------------------------- using...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Runtime.CompilerServices; namespace System.Drawing { [DebuggerDisplay(...
using Microsoft.VisualBasic; using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.Diagnostics; using BlueSheep.Data.Pathfinding.Positions; using BlueSheep.Data.D2p; using BlueSheep.Core.Map; namespace BlueSheep.Data.Pathfinding { internal sealed class SimpleCel...
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("Ma...
using Aurora.EffectsEngine; using Aurora.Profiles.CSGO.GSI; using Aurora.Profiles.CSGO.GSI.Nodes; using Aurora.Profiles.Payday_2.GSI; using Aurora.Profiles.Payday_2.GSI.Nodes; using Aurora.Settings; using Aurora.Settings.Layers; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Diagno...
using System.Runtime.CompilerServices; using Eldemarkki.VoxelTerrain.Settings; using Eldemarkki.VoxelTerrain.Utilities; using Eldemarkki.VoxelTerrain.VoxelData; using Unity.Collections; using Unity.Jobs; using Unity.Burst; using Unity.Mathematics; using UnityEngine; [CreateAssetMenu(fileName = "ClassicIslandGenerator...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace devdap.Controllers { public class ElementsController : Controller { // GET: Elements public ActionResult accordion() { return View(); } publi...
using System; using NUnit.Framework; using QS.Utilities.Text; namespace QS.Test.Utilities.Text { [TestFixture(TestOf = typeof(StringManipulationHelper))] public class StringManipulationHelperTest { [Test(Description = "Различные кейсы")] [TestCase("https://shopvodovoz.uberserver.ru/bitrix/admin/", "/", "", Exp...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // <auto-generated/> #nullable disable using System.Collections.Generic; using Azure.Core; using Azure.ResourceManager.Network; namespace Azure.ResourceManager.Network.Models { /// <summary> Response for ListLoadBala...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FS_BMK_ui.HelperClasses { public class Hardpoint { private string _hardpointName; private float _x; private float _y; private float _z; public...
// 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.Linq.Expressions; using System.Reflection; using Microsoft.EntityFrameworkCore.Internal; using Microsoft.EntityFrameworkCore...
// Copyright (c) .NET Core Community. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using System.Net; using System.Threading.Tasks; namespace DotNetCore.CAP.Dashboard { internal class BatchCommandDispatcher : IDashboardDispatche...
/* In App.xaml: <Application.Resources> <vm:ViewModelLocator xmlns:vm="clr-namespace:Retrospective.Clients.WPF" x:Key="Locator" /> </Application.Resources> In the View: DataContext="{Binding Source={StaticResource Locator}, Path=ViewModelName}" You can also use Blend to ...
// 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; namespace NetGear.Core { [Serializable] public class AddressInUseException : InvalidOperationException { public Addr...
using Microsoft.EntityFrameworkCore; using MySql.Data.MySqlClient; using Newtonsoft.Json; using Npgsql; using NpgsqlTypes; using NPOI.HSSF.UserModel; using NPOI.HSSF.Util; using NPOI.SS.UserModel; using NPOI.SS.Util; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; usi...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ /...
using UnityEngine; namespace Holders { class PositionRotation { public Vector3 Position { get; set; } public Vector3 Rotation { get; set; } public PositionRotation(Vector3 position, Vector3 rotation) { Position = position; Rotation = rotation; } ...
/* * AssistantComputerControl * Made by Albert MN. * Updated: v1.4.0, 26-12-2019 * * Use: * - Checks for updates */ using System.IO; using System.Windows.Forms; using System.Net; using System.Diagnostics; using Newtonsoft.Json; using System; using System.ComponentModel; using System.Threading; namespace Assi...
// --------------------------------------------------------------------------------------------------------------------- // <copyright file="ExternalTypeWalker.cs" company="Justin Rockwood"> // Copyright (c) Justin Rockwood. All Rights Reserved. Licensed under the Apache License, Version 2.0. See // LICENSE.txt in ...
using System; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("NServiceBus Object Builder Spring Implementation")] [assembly: AssemblyDescription("Implementation of object building functionality on top of the Spring Framework.")] [assembly: AssemblyCopyright("Copyright 2010-201...
using FossLock.Model.Base.SharpArchitecture; namespace FossLock.Model.Base { public abstract class EntityBase : EntityWithTypedId<int>, IEntityBase { } }
using System; using System.Reflection; namespace FoxDb { public static class PropertyResolutionStrategy { public const BindingFlags BINDING_FLAGS = BindingFlags.Instance | BindingFlags.Public | BindingFlags.DeclaredOnly; public static PropertyInfo GetProperty(Type type, string name) {...
namespace BookList.BooklistManagement.Books.Dtos { public class BookEditDto { public long? Id { get; set; } /// <summary> /// 书名 /// </summary> public string BookName { get; set; } /// <summary> /// 作者 /// </summary> public string Author...