text
stringlengths
13
6.01M
namespace _12._LegendaryFarming { using System; using System.Collections.Generic; using System.Linq; public class Startup { public static void Main() { string input = Console.ReadLine(); Dictionary<string, long> keyMaterials = new Dictionary<string, long>();...
using System; // ReSharper disable once CheckNamespace namespace Aquarium.Util.Extension.ObjectExtension { public static class DecimalConvertExtension { #region ToNullableDecimal /// <summary> /// An object extension method that converts the @this to a nullable decimal. //...
using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace NetNote.Models { public class NoteContext : IdentityDbContext<NoteUser> { public NoteContext(DbContex...
namespace JustOffer.MenuDatabase { public class PotentialRelationship { public object From { get; set; } public object To { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Web; /// <summary> /// Description résumée de ContactClientRepository /// </summary> public class ContactClientRepository { public ContactClientRepository() { // // TODO: Add constructor logic here // }...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using VerbiLib.Phraser; namespace VerbiIDE.Code { public static class Utils { public static void TryTwice(Action callback, Action<Exception> fail1, Action<Exception> fail2) ...
using System; using System.Collections.ObjectModel; using System.Linq; namespace SalesDetail { class Program { static void Main(string[] args) { Console.Clear(); Console.WriteLine("Enter blank line to stop"); Console.WriteLine("Give the input"); ...
using CrossCutting; using Cs_Gerencial.Aplicacao.Interfaces; using Cs_Gerencial.Dominio.Entities; using Cs_Notas.Aplicacao.Interfaces; using Cs_Notas.Dominio.Entities; using Cs_Notas.Dominio.ValuesObject; using Cs_Notas.Windows.Escritura; using Cs_Notas.WindowsAgurde; using System; using System.Collections.Generic; us...
using System.Collections.Generic; namespace StringIssue { public static class StringHelpers { /// <summary> /// Method that does not perform well. /// </summary> /// <param name="strs"></param> /// <returns></returns> public static string MergeStrings(IEnumerable<string> strs) { var toReturn = "...
using System; using System.Collections.Generic; using System.Text; using CoreEFTest.Models; using DLL_Technician; using DTO; namespace BLL_Technician { public class UC4_Scan { private IClinicDB clinicDB; private IScanner scanner; public UC4_Scan(IClinicDB clinicDb, IScanner scanner) ...
using System; using System.Collections.Generic; namespace TagProLeague.Models { public class Player : Document { public DateTime? PlayedSince { get; set; } public DateTime? LastOnline { get; set; } public string ImageUrl { get; set; } public ContactProfile ContactProfile { get;...
using System; using SharpDX.Windows; using System.Windows.Forms; namespace MDX { public class entry { [STAThread] public static void Main(string[] args) { Window renderWindow = new Window(); RenderLoop.Run(renderWindow, () => { ...
using SistemasBR.SerializadorTx2; using SistemasBR.SerializadorTx2.Configuracao; using System; namespace ConsumidorSerializador { public static class Program { private static void Main() { var obj = new Mock { Teste = string.Empty, Teste2...
using System; using System.Collections.Generic; namespace CourseHunter_46_StackAndQueue { class Program { static void Main(string[] args) { Stack<int> stack2 = new Stack<int>(); // или(зачастую используется второй вариант) var stack = new Stack<int>(); ...
// Copyright (c) 2020, mParticle, Inc // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agr...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Pe.Stracon.SGC.Aplicacion.TransferObject.Response.Contractual { /// <summary> /// Representa el objeto response de Reporte de Contrato Pnedinte de Elaborar /// </summary> /// <...
#if Top using System.Collections.ObjectModel; #endif using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Reflection; using Phenix.Core.Cache; using Phenix.Core.Data; using Phenix.Core.Dictionary; using Phenix.Core.Log; using Phenix.Core.Mapping; using Phenix.Core....
using Abp.AspNetCore.Mvc.Controllers; using Abp.IdentityFramework; using Microsoft.AspNetCore.Identity; namespace Dg.fifth.Controllers { public abstract class fifthControllerBase: AbpController { protected fifthControllerBase() { LocalizationSourceName = fifthConsts.LocalizationSour...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace IRAP.Entity.FVS { public class TrendFTTofAPWO { /// <summary> /// 序号 /// </summary>{get;set;} public int Ordinal { get; set; } /// <summary> /// 班次第Ordi...
using ProductsAPI.IServices; using System; using System.Collections.Generic; using ProductsAPI.Repository; using Microsoft.AspNetCore.JsonPatch; using ProductsAPI.Models; namespace ProductsAPI.Services { public class ProductService : IProductService { public List<Product> Create(Product pro...
public interface ISCResponse { bool isSuccess { get; } string errorMsg { get; } }
using System; using System.Collections.Generic; using Framework2D; using Framework2D.Assets; using Framework2D.Graphics; using Framework2D.Inputs; using OpenTK.Mathematics; namespace SandboxGame { class MainGame : Game { Texture2D texA; public MainGame() : base(1280, 720, "Title") { ...
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Core.IService { public interface IGenericService<T> { Task<List<T>> Get(); Task<T> Get(int id); Task<T> Put(int id, T entity); Task<T> Post(T entity); Task<bool> D...
using UnityEngine; using System.Collections; using System.Collections.Generic; public class RoundMove : BasicMove { private Vector3[] directionsSet; public RoundMove() { directionsSet = new Vector3[]{Step.FORWARD, Step.LEFT_FORWARD, Step.LEFT, Step.LEFT_BACKWARD, Step.BACKWARD, Step.RIGHT_BACKWARD, Step.RIGHT, S...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ex2 { class Program { /*2. Написать программу «Телефонный справочник»: создать двумерный массив 5х2, хранящий список телефонных контактов: первый элемент хранит...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace SimpleShop.Models { public class Purchase { [Key] public int Id { get; set; } public DateTime Date { get; set; } public decimal Sum { get; set; } public int? ClientId { get; set; } public virtual ...
namespace gView.Framework.Geometry.Compress { class ByteCompressor { static internal byte[] Compress(int val) { bool isNeg = val < 0; if (isNeg) { val = -val; } byte[] c = new byte[5]; for (int i = 0; i < 5...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class TimeCounter : MonoBehaviour { public Text finish; public Text timeCounter; public float timeNow = 0; public bool isCounting; // Use this for initialization void Start () { isCo...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Strategy2 { public class LengthSorter : Sorter { public void Sort(IComparable[] datas) { for (int i = 0; i < datas.Length; i++) { string current ...
using System; using System.Collections.Generic; using System.Configuration; using System.IO; using System.Linq; using System.Net; using System.Transactions; using Pe.Stracon.Politicas.Aplicacion.Core.ServiceContract; using Pe.Stracon.Politicas.Aplicacion.TransferObject.Request.General; using Pe.Stracon.Politicas.Aplic...
using System.Collections.Generic; using System.Threading.Tasks; using OrchardCore.Contents.AuditTrail.Models; namespace DFC.ServiceTaxonomy.VersionComparison.Services { public interface IAuditTrailQueryService { Task<List<AuditTrailContentEvent>> GetVersions(string contentItemId); } }
using System; using System.Collections.Generic; using System.Text; namespace Lcn.Cli.CoreBase { /// <summary> /// 用例错误 /// 非致命错误 /// </summary> public class LcnCliCoreBaseUsageException : Exception { public LcnCliCoreBaseUsageException(string message) : base(message) { ...
using UnityEngine; using System.Collections; [RequireComponent (typeof (BoxCollider2D))] public class Controller2D : MonoBehaviour { const float skinWidth = 0.015f; public int horizontalRayCount = 4; public int verticalRayCount = 4; float horizontalRaySpacing; float verticalRaySpacing; float maxClimbAngle=45; ...
using System; namespace helloworld { class MainClass { public static void Main(string[] args) { Console.WriteLine("Hello World!"); Console.WriteLine("Sofiia"); Console.WriteLine("Sofiia2"); Console.WriteLine("Hello World!(Bohdan)"); Co...
using System; using System.Threading; using System.Threading.Tasks; using Ardalis.ApiEndpoints; using AutoMapper; using BlazorShared.Models.Appointment; using FrontDesk.Core.Aggregates; using Microsoft.AspNetCore.Mvc; using PluralsightDdd.SharedKernel.Interfaces; using Swashbuckle.AspNetCore.Annotations; namespace Fr...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Serialization; namespace MapPosition.Map { [Serializable] public class City : ChinaArea { [XmlElement("Piecearea")] public Piecearea[] Area { get; set; ...
using System; using System.Collections.Generic; using Newtonsoft.Json; namespace AMTDll.Models { public class ServiceModel : VehicleServiceModel { [JsonProperty("provider")] public Guid ProviderId { get; set; } [JsonProperty("type")] public MaintenanceTypeEnum ServiceType { get...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using static _7zipExample.LoggerClass; namespace _7zipExample { public partial class AboutForm : For...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using TravelMvcProject.Models.Siniflar; namespace TravelMvcProject.Controllers { public class İletisimController : Controller { // GET: İletisim Context c = new Context(); public...
using System; using Utilities; namespace EddiEvents { [PublicAPI] public class ExplorationDataPurchasedEvent : Event { public const string NAME = "Exploration data purchased"; public const string DESCRIPTION = "Triggered when you purchase exploration data"; public const string SAMP...
using System.Collections.Generic; using Vlc.DotNet.Core.Interops; using Vlc.DotNet.Core.Interops.Signatures; namespace Vlc.DotNet.Core { public sealed class AudioTracksManagement : ITracksManagement { private readonly VlcManager myManager; private readonly VlcMediaPlayerInstance myMediaPlayer;...
using CEMAPI.DAL; using CEMAPI.Models; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CEMAPI.BAL { public class CustomisationBAL { TETechuvaDBContext context = new TETechuvaDBContext(); RecordExceptions excepton = new RecordExceptions(); ...
using System.Collections.Generic; using System.Diagnostics; using Configy.Containers; using Leprechaun.Filters; namespace Leprechaun.Model { [DebuggerDisplay("{Configuration.Name}")] public class ConfigurationCodeGenerationMetadata { public ConfigurationCodeGenerationMetadata(IContainer configuration, IReadOnlyC...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Nailhang.IndexBase.PublicApi { public static class Extensions { public static string GenericsString(this Method method, bool printBrackets = false) { if (method.GenericParameters.Length ...
using Microsoft.AspNetCore.Mvc; namespace WorkScheduleManagement.Controllers { public class ErrorsController : Controller { [HttpGet] public IActionResult Error400() => View(); [HttpGet] public IActionResult Error403() => View(); [HttpGet] publ...
namespace FailureSimulator.Core.RepairPolicy.Factories { public abstract class BaseRepqairQueueFactory : IRepairFactory { public abstract IRepairQueue CreateQueue(); public abstract string Name { get; } public override string ToString() => Name; } }
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; namespace RPG.Characters { public class HealthSystem : MonoBehaviour { [SerializeField] float deathVanishSeconds = 2f; [SerializeField] float maxHealthPoints = 100f; [Seriali...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class setPlayerPosition : MonoBehaviour { // Start is called before the first frame update [SerializeField] Transform playerObject; Image fader = null; [SerializeField] string animationName = "";...
namespace System.ComponentModel.DataAnnotations { /// <summary> /// Used to mark one or more entity properties that provide the entity's unique identity /// </summary> [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)] public sealed c...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sparda.Core.Generation.Sql { internal class BackendLimitations { private static BackendLimitations msSqlLimitations; private static BackendLimitations oracleLimitation...
namespace SAAS.FrameWork.Module.SsApiDiscovery.ApiDesc.Attribute { /// <summary> /// 标识函数第一个参数为Api的参数实体。(忽略其他参数(若存在),调用函数时其他参数(若存在)为空) /// </summary> public class SsArgEntityAttribute : System.Attribute { } }
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Devsoft.AddonBase.ApplicationEvents { public static class LayoutKeyEvent { public static void SBO_Application_LayoutKeyEvent(ref SAPbouiCOM.LayoutKeyInfo eventInfo, out bool B...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace PhotographyEvent.MasterPages { public partial class Main : System.Web.UI.MasterPage { protected void Page_Load(object sender, EventArgs e) {...
using MonoDevelop.Core.Serialization; using System; using System.IO; namespace MonoDevelop.NUnit { public class TestAssembly : NUnitAssemblyTestSuite { [ItemProperty("Path")] private string path; public override string Name { get { return System.IO.Path.GetFileNameWithoutExtension(this.path); } ...
using System.Web.Mvc; namespace DevExpress.Web.Demos { public partial class GridViewController : DemoController { public ActionResult Summary() { return DemoView("Summary", NorthwindDataProvider.GetInvoices()); } public ActionResult SummaryPartial() { return PartialV...
using System; using NUnit.Framework; using Tests.Utils.TestFixtures; using Tests.Utils.Various; namespace Tests.Unit.Infrastructure.ApplicationSettings { public class ApplicationSettingsTest : BaseTestFixture { [Test] public void AccessingNonExistingApplicationSettingThrowsException() ...
using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class Album : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (Session["user"] == null) ...
using DAL.Models; using DAL.Repositories; using System.Linq; using System.Web.Mvc; using System.Web.Script.Serialization; namespace TurpialPOS.Controllers { public class InventoryController : Controller { private ProductRepository _productRepository; private readonly int storeId = 1; ...
using UnityEngine; using System.Collections; using System.Text; public class StrategyTileInfoText : MonoBehaviour { private UnityEngine.UI.Text uiText; private void Start() { this.uiText = GetComponent<UnityEngine.UI.Text>(); } private void Update() { if (Input.GetMouseButtonUp(0))...
using System; using System.Collections; using System.Collections.Generic; using com.Sconit.Entity; //TODO: Add other using statements here namespace com.Sconit.Entity.ISI { [Serializable] public partial class ProcessApply : EntityBase { #region O/R Mapping Properties private Int32 _id; publi...
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace SbdProjekto.Models { public class Nadawca { public int NadawcaId { get; set; } ...
using NUnit.Framework; namespace IRO.ImageOrganizer.Tests { [TestFixture] public sealed class PresentationTest { } }
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using KartLib.Views; using KartObjects; using KartLib; namespace KartSystem { public partial class MeasuresView : KartUserControl,...
using System.Linq; using System.Threading.Tasks; using CrudIrpf.Domain; using Microsoft.EntityFrameworkCore; namespace CrudIrpf.Repository { public class CrudIrpfRepository : ICrudIrpfRepository { private readonly CrudIrpfContext _context; public CrudIrpfRepository(CrudIrpfContext crudIrpfContext) { ...
namespace Votter.DropboxApi { using System; using System.Diagnostics; using System.IO; using System.Linq; using Spring.IO; using Spring.Social.Dropbox.Api; using Spring.Social.Dropbox.Connect; using Spring.Social.OAuth1; public class DropBoxCloud { private const string ...
namespace Alabo.Cloud.Shop.Footprints.Controllers { //2019年9月24日 重构注释 ///// <summary> ///// ///// </summary> //[ApiExceptionFilter] //[Route("Api/Footprint/[action]")] //public class ApiFootprintController : ApiBaseController<Footprint, ObjectId> { // /// <summary> // /// /...
using System.Web; using System.Web.Optimization; namespace TripDestination.Web.MVC { public class BundleConfig { // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { RegisterS...
using Alabo.Cloud.Shop.Footprints.Domain.Entities; using Alabo.Cloud.Shop.Footprints.Dtos; using Alabo.Datas.UnitOfWorks; using Alabo.Domains.Entities; using Alabo.Domains.Repositories; using Alabo.Domains.Services; using Alabo.Extensions; using Alabo.Industry.Shop.Products.Domain.Services; using Alabo.Industry.Shop.Pr...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace UsedClass.models.Stadt { public class Adress { public int Id { get; set; } public string AdressName { get; set; } public string AdressNumber { get; set; } public string ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DTO.DataCollect { public class UserPermissionDTO { public int Id { get; set; } public int UserId { get; set; } public bool Raporlama { get; set; } public bool Asansör { get; set; } ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Shutdowner { public partial class Shutdowner : Form { public Shutdowner() ...
using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.Xml.Serialization; namespace Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution { [Serializable] [GeneratedCode("wsdl", "2.0.50727.42")] [DebuggerStepThrough] [DesignerCategory("...
using System; using System.Collections.Generic; using System.Web.Mvc; using PROYECTOFINAL.Models; using Libreria; using Microsoft.Reporting.WebForms; namespace PROYECTOFINAL.Controllers { public class ProveedoresController : Controller { // GET: Proveedores public ActionResult Index() {...
using System; using System.ComponentModel.DataAnnotations; namespace com.Sconit.Entity.ORD { [Serializable] public partial class OrderOperation : EntityBase, IAuditable { #region O/R Mapping Properties public Int32 Id { get; set; } public string OrderNo { get; set; } public...
using Microsoft.Xna.Framework; using Terraria; using Terraria.DataStructures; using Terraria.ModLoader; namespace StarlightRiver.Items { public class WispSuck : ModItem { public override void SetDefaults() { item.width = 30; item.height = 42; item.useStyle =...
using System.CodeDom.Compiler; using System.ComponentModel; namespace Microsoft.Reporting.WinForms.Internal.Soap.ReportingServices2005.Execution { [GeneratedCode("wsdl", "2.0.50727.42")] [EditorBrowsable(EditorBrowsableState.Never)] public delegate void SetExecutionCredentials2CompletedEventHandler(object sender, S...
using System; using System.Transactions; using Microsoft.AspNetCore.Mvc.Filters; namespace App.Web.Filters { public class TransactionFilter : IActionFilter { private readonly IServiceProvider ServiceProvider; private TransactionScope TransactionScope; public TransactionFilter(IServiceP...
using System.Collections.Generic; using System.Windows.Controls; using System.Windows.Media; using System.Windows.Media.Imaging; using MahApps.Metro.Controls; using MinecraftToolsBox; namespace MinecraftToolsBoxSDK { public abstract class MtbPlugin { public static MtbPlugin Plugin; public stri...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Slack.Webhooks; using PoGoSlackBot.Configuration; using PoGoSlackBot.Entities; namespace PoGoSlackBot.Messages.Pokemon { public class NearbyPokemonMessage : BaseMessage { ...
using System; using OpenQA.Selenium; using OpenQA.Selenium.Support.UI; using OpenQA.Selenium.Support.PageObjects; namespace Training { internal class HeaderCart : Page { public HeaderCart(IWebDriver driver, WebDriverWait wait) : base(driver, wait) { PageFactory.InitElements(driver, this); } [FindsBy(How...
using System.Collections.Generic; using System.Reflection; using AutoTests.Framework.TestData.Entities; using AutoTests.Framework.TestData.TestDataProviders.EmbeddedResourceProviders; namespace AutoTests.Framework.Tests.TestData.Providers { public class EmbeddedJsonProvider : EmbeddedJsonProviderBase { ...
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; using System.Net.Http; using Barcabot.Common; namespace Barcabot.Web { public class FootballDataApiRetrievalService : DataRetrievalService { public FootballDataApiRetrievalService(HttpClient http) : base(http) { Client.DefaultRequestHeaders.Clear(); Client....
using System; using System.Threading.Tasks; using Android.App; using Android.OS; using Android.Support.V4.Widget; using Android.Views; using Android.Widget; using MvvmCross.Platform; using MvvmCross.Platform.Droid.Platform; using ResidentAppCross.Services; using ZXing.Mobile; namespace ResidentAppCross.Droid.Services...
using CommonMark.Syntax; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MarkdownUtils.MdDoc { public class MdDocument { public List<MdBlock> Blocks { get; } = new List<MdBlock>(); } public class MdBlock { ...
namespace StringMatrixRotation { using System; using System.Collections.Generic; using System.Text; public class Startup { public static void Main(string[] args) { Console.WriteLine(Execute()); } private static string Execute() { var...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace GardenControlUI.Models { public class ScheduleViewModel { public int ScheduleId { get; set; } public string Name { get; set; } public GardenControlCore.Enums.TriggerTyp...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using DAL; using Models; namespace HotelTeacher { public partial class AdminLogin : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) ...
using System; using System.Collections.Generic; using System.Linq; using DM7_PPLUS_Integration.Messages.DM7; using DM7_PPLUS_Integration.Daten; namespace DM7_PPLUS_Integration.Implementierung.DM7 { public static class Message_mapper { public static List<Leistung> Als_Leistungen(Leistungen_V1 leistunge...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using BO; using TpWeb1.Models; namespace TpWeb1.Controllers { public class WarriorController : Controller { private static List<Warrior> warriors = new List<Warrior>(); priva...
 using Kingmaker.Blueprints; using Kingmaker.Blueprints.Classes; using Kingmaker.Blueprints.Classes.Selection; using Kingmaker.Blueprints.Classes.Spells; using Kingmaker.Designers.Mechanics.Facts; using Kingmaker.EntitySystem.Stats; using Kingmaker.Enums; using Kingmaker.UI.Common; using Kingmaker.UnitLogic.Abilities....
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ene04 : MonoBehaviour { Rigidbody2D rigidbody2D; private SpriteRenderer spRenderer; private Animator anim; public bool on_damage = false; //ダメージフラグ private int checkLR = -1; public int speed = -3; private in...
using System.Collections.Generic; namespace DataLightning.Core; public class SubscriptionManager<T> { private readonly List<ISubscriber<T>> _subscribers = new(); public ISubscription Subscribe(ISubscriber<T> subscriber) { _subscribers.Add(subscriber); return new Subscription<T>(_subscrib...
namespace Rhino.Mocks.Tests.FieldsProblem { using Xunit; /// <summary> /// Problem reported by Steinkauz (https://groups.google.com/forum/?fromgroups=#!topic/RhinoMocks/gta6a6bHhT8). /// </summary> public class FieldProblem_Steinkauz { /// <summary> /// Just a interface for moc...
// Copyright (c) 2017 Gwaredd Mountain, https://opensource.org/licenses/MIT #if !UNIUM_DISABLE && ( DEVELOPMENT_BUILD || UNITY_EDITOR || UNIUM_ENABLE ) using System; using System.Collections.Generic; using System.Linq; using System.Reflection; namespace gw.gql { ////////////////////////////////////////...
using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using lsc.Model; using System.Linq; using lsc.Common; namespace lsc.Dal { public class UserRoleJurisdictionDal { private static UserRoleJurisdictionDal _Ins; public static UserRoleJurisdictionDal I...
namespace Core { public class PaymentMethod { public int PaymentMethodId { get; } public string PaymentName { get; } /// <summary> /// конструктор /// </summary> /// <param name="id">ID метода оплаты</param> /// <param name="name">название метода оплаты<...
using Clients.Conforming; using Common; using Common.Log; using Common.Presentation; using SessionSettings; using System; using System.ServiceModel; using System.Threading; namespace Conforming.Modals { public partial class NotesForm : SkinnableModalBase { #region Private Fields private ClientPresentation mClie...
/* * Builded by Lars Ulrich Herrmann (c) 2013 with f.fN. Sense Applications in year August 2013 * The code can be used in other Applications if it makes sense * If it makes sense the code can be used in this Application * I hold the rights on all lines of code and if it makes sense you can contact me over the pub...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace Restaurant.Models { public class NewMessage { public int NewMessageID { get; set; } [Required] [MinLength(2, ErrorMessage = "You must...