text
stringlengths
1
932k
using Senparc.CO2NET.APM; using Senparc.CO2NET.Extensions; using Senparc.CO2NET.Helpers; using Senparc.CO2NET.Trace; using Senparc.CO2NET.Utilities; using Senparc.NeuChar.Entities; using Senparc.NeuChar.NeuralSystems; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text...
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("Cod...
using Cofoundry.Core.DependencyInjection; using Cofoundry.Domain; using System; using System.Collections.Generic; using System.Text; namespace Cofoundry.Plugins.Imaging.ImageSharp { public class ImageResizerDependencyRegistration : IDependencyRegistration { public void Register(IContainerRegister cont...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //---...
using System; namespace SteamLib.Models { public interface ISteamReportSubscription { long ID { get; } long UserID { get; } long TemplateID { get; } bool Enabled { get; } bool Deleted { get; } ReportPeriodType PeriodType { get; } } }
using Microsoft.AspNetCore.Mvc; using RealEstates.Services; namespace RealEstates.Web.Controllers { public class PropertiesController : Controller { private readonly IPropertiesService propertiesService; public PropertiesController(IPropertiesService propertiesService) { t...
using System; using Obd2NetCore.InfrastructureContracts.Protocols; namespace Obd2NetCore.Protocols { public class UnknownProtocol : ProtocolBase { protected override int TxIdEngine => 0; public override string ElmName => "Unknown"; public override string ElmId => "U"; public...
using System.Collections.Concurrent; using System.Text.Json; using System.Threading; using System.Threading.Tasks; using Content.Server.Database; using Content.Server.GameTicking; using Content.Server.GameTicking.Events; using Content.Shared.Administration.Logs; using Content.Shared.CCVar; using Content.Shared.Databas...
// Authors: // Jose Medrano <josmed@microsoft.com> // // Copyright (C) 2018 Microsoft, Corp // // 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; using System.Linq; namespace _1_Action_Point { class Program { static void Main(string[] args) { Action<string> names = (name) => { Console.WriteLine(name); }; Console.ReadLine().Split(" ", StringSplitOptions.RemoveE...
using RepoDb.Extensions; using RepoDb.Interfaces; using RepoDb.Resolvers; using System; using System.Collections.Concurrent; using System.Data; using System.Linq.Expressions; using System.Reflection; namespace RepoDb { /// <summary> /// A class that is being used to cache the mappings between the <see cref="D...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class CreateContentBrowserItem : MonoBehaviour { [SerializeField] private GameObject contentHolder; [SerializeField] private GameObject contentPrefab; [SerializeField] private ToggleGroup toggleGro...
/** * Copyright (c) 2017-present, PFW Contributors. * * 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 agre...
// <copyright file="LogFileEventTracing.cs" company="Microsoft Corporation"> // Copyright (c) Microsoft Corporation. All rights reserved. // </copyright> namespace Microsoft.Azure.Networking.Infrastructure.RingMaster { using System; using System.Collections.Generic; using System.Diagnostics; using ...
// c:\program files (x86)\windows kits\10\include\10.0.22000.0\shared\d3dkmdt.h(1515,9) namespace DirectN { public enum _DXGKMDT_CERTIFICATE_TYPE { DXGKMDT_OPM_CERTIFICATE = 0, DXGKMDT_COPP_CERTIFICATE = 1, DXGKMDT_UAB_CERTIFICATE = 2, DXGKMDT_INDIRECT_DISPLAY_CERTIFICATE = 3, ...
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.IO; namespace BizHawk.Emulation.DiscSystem { public class FFMpeg { public static string FFMpegPath; public class AudioQueryResult { public bool...
using Amazon.JSII.Runtime.Deputy; #pragma warning disable CS0672,CS0809,CS1591 namespace aws { [JsiiByValue(fqn: "aws.Wafv2WebAclRuleStatementRateBasedStatementScopeDownStatementNotStatementStatementAndStatementStatementSqliMatchStatementFieldToMatchAllQueryArguments")] public class Wafv2WebAclRuleStatementRa...
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("Ba...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; namespace Ginfo.Web.Controllers { [Route("api/[controller]")] [ApiController] public class ValuesController : ControllerBase { // GET api/values [HttpGet] ...
using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Reflection; using System.Text; using Gimela.Common.Configuration; namespace Gimela.Rukbat.GUI.Cultures { public static class CultureHelper { internal const string CultureKey = @"Culture"; public st...
using Microsoft.AspNetCore.Razor.TagHelpers; namespace Host.UI.TagHelpers { [HtmlTargetElement(Attributes = "hide-if")] public class HideIfTagHelper : TagHelper { [HtmlAttributeName("hide-if")] public bool HideIf { get; set; } public override void Process(TagHelperContext context,...
@model Bomberfun.Models.VerifyPhoneNumberViewModel @{ ViewBag.Title = "Verify Phone Number"; } <h2>@ViewBag.Title.</h2> @using (Html.BeginForm("VerifyPhoneNumber", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { @Html.AntiForgeryToken() @Html.Hidden("phoneNumber", @Model....
using System; using System.Diagnostics; using System.Linq; using d60.Cirqus.Aggregates; using d60.Cirqus.Events; using d60.Cirqus.Extensions; using d60.Cirqus.Serialization; namespace d60.Cirqus.Snapshotting { /// <summary> /// Decorator for <see cref="IAggregateRootRepository"/> that uses the supplied <see c...
namespace Microsoft.AspNetCore.Mvc { internal enum FCPActionResultType { /// <summary> /// depend on FCPDoResultType /// </summary> none, /// <summary> /// 201 Created /// </summary> created, /// <summary> /// 204 NoContent ...
//------------------------------------------------------------------------------ // <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> //--...
/* * Copyright (c) 2014, Firely (info@fire.ly) and contributors * See the file CONTRIBUTORS for details. * * This file is licensed under the BSD 3-Clause license * available at https://raw.githubusercontent.com/ewoutkramer/fhir-net-api/master/LICENSE */ using System; using System.Linq; using Microsoft.VisualS...
using System; using System.IO; using System.Net.Http; using System.Text; using System.Threading.Tasks; using Microsoft.Extensions.Logging; using Newtonsoft.Json; using TrackApartments.Contracts; namespace TrackApartments.Core.Load { public class ResponseParser : IResponseParser { private readonly ILog...
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 Abot.Core; using Abot.Poco; using Moq; using NUnit.Framework; using System; namespace Abot.Tests.Unit.Core { [TestFixture] public class RobotsDotTextTest { private RobotsDotText _unitUnderTest; private Uri _rootUri = new Uri("http://www.spidertestsite1.com/"); privat...
/** * Copyright 2018 IBM Corp. 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. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law o...
namespace ClearHl7.Codes.V251 { /// <summary> /// HL7 Version 2 Table 0315 - Living Will Code. /// </summary> /// <remarks>https://www.hl7.org/fhir/v2/0315</remarks> public enum CodeLivingWillCode { /// <summary> /// F - Yes, patient has a living will but it is not on file. ...
using System; using Box.V2.Auth; using Box.V2.Config; using Box.V2.Converter; using Box.V2.Managers; using Box.V2.Plugins; using Box.V2.Request; using Box.V2.Services; namespace Box.V2 { /// <summary> /// The central entrypoint for all SDK interaction. The BoxClient houses all of the API endpoints and are repr...
#region Copyright notice and license // Copyright 2019 The gRPC 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...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MobileNotification.Infra.Model { public enum QueueCreateOptions { Default, LongRunning } }
// Copyright (c) The Avalonia Project. All rights reserved. // Licensed under the MIT license. See licence.md file in the project root for full license information. using System; using System.Collections.Generic; using System.Diagnostics; using System.Reactive.Subjects; using System.Reflection; using Avalonia.Data; us...
// Copyright (c) .NET Foundation and contributors. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.IO.Pipes; using System.Threading.Tasks; using FluentAssertions; using Microsoft.DotNet.Interactive.Commands; using Mi...
// 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 System.IO; using System.Collections; using System.Collections.Generic; using System.Comp...
using DatabaseOperations; using FileSearcherDemo.BindingModels.RenameFileForm; using FileSearcherDemo.Services.RenameFileService; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace ToolBoxGNAUnit...
// This file was automatically generated and may be regenerated at any // time. To ensure any changes are retained, modify the tool with any segment/component/group/field name // or type changes. namespace Machete.HL7Schema.V26 { using HL7; /// <summary> /// EHC_E15_ADJUSTMENT_PAYEE (Group) - /// </su...
// Python Tools for Visual Studio // Copyright(c) Microsoft Corporation // 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. You may obtain a copy of the // License at http://www.apache.org/licenses/LICENSE-2.0 //...
using System; using System.Collections.Generic; using System.Linq; namespace maze_library { public class RecursiveBacktracker : IMazeAlgorithm { public void CreateMaze(Grid grid) { var rnd = new Random(); var stack = new Stack<Cell>(); stack.Push(grid.Random...
/* * 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...
namespace Firefly.CloudFormationParser.TemplateObjects.Traversal.AcceptExtensions { using System.Collections.Generic; /// <summary> /// Adds accept methods to <see cref="IDictionary{TKey,TValue}"/> /// </summary> internal static class DictionaryAcceptExtensions { /// <summary> ...
using System.Collections.Generic; using BitCoinWatcher.DataAccess.Entities; using BitCoinWatcher.DataAccess.Repositories.Base; namespace BitCoinWatcher.DataAccess.Repositories { public interface ITransactionRepository : IRepository { IList<Transaction> GetAll(); void Add(Transaction transactio...
using System.Collections.Generic; using System.Text.Json.Serialization; namespace Traefik.Contracts.TcpConfiguration { public class Tcp { [JsonPropertyName("routers")] public Dictionary<string, TcpRouter> Routers { get; set; } [JsonPropertyName("services")] public Dictionary<string, BaseTcpService> Service...
using System; using System.Runtime.Serialization; namespace Frapid.WebsiteBuilder.Models.Themes { [Serializable] public sealed class ThemeFileLocationException : Exception { public ThemeFileLocationException() { } public ThemeFileLocationException(string message) : base(me...
using System; using System.Net; using System.Net.Http; using System.Threading.Tasks; using Exceptionless; using KdyWeb.BaseInterface.BaseModel; using KdyWeb.BaseInterface.KdyRedis; using KdyWeb.Dto.KdyFile; using KdyWeb.Dto.KdyHttp; using KdyWeb.IService.KdyFile; using KdyWeb.IService.KdyHttp; using KdyWeb.Utility; us...
using System; using System.Linq; using System.Threading.Tasks; using System.Web; using System.Web.Mvc; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.Owin; using Microsoft.Owin.Security; using WebApplication5.Models; namespace WebApplication5.Controllers { [Authorize] public class ManageCont...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Xamarin.Forms; using Xamarin.Forms.Xaml; using ZeroChaos.TimesheetPOC.IServices; using ZeroChaos.TimesheetPOC.Models.Request.Timesheet; using ZeroChaos.TimesheetPOC.Models.Response.Timesheet; usin...
/* * MindTouch DekiWiki - a commercial grade open source wiki * Copyright (C) 2006 MindTouch, Inc. * www.mindtouch.com oss@mindtouch.com * * For community documentation and downloads visit www.opengarden.org; * please review the licensing section. * * This program is free software; you can redistribute it and...
namespace Divstack.Company.Estimation.Tool.Emails.Payments.PaymentInitialized.Sender; internal record PaymentInitializedEmailRequest( string FirstName, string LastName, string AmountToPayCurrency, decimal? AmountToPayValue, string ClientEmail, Guid PaymentId) { internal string AmountToPay ...
namespace Homm3.WPF.Model { public enum Town { Castle, Conflux, Cove, Dungeon, Fortress, Inferno, Rampart, Necropolis, Stronghold, Tower, Neutral } }
using System; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.Linq; using System.Threading; using OpenQA.Selenium; using OpenQA.Selenium.Support.Extensions; using WDSE.Properties; // ReSharper disable InconsistentNaming namespace WDSE.Helpers { public static c...
// *** 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...
// 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.Windows.Forms { using System.Text; using System.Runtime.InteropServices; using System....
using System; using System.Text.RegularExpressions; using System.Web; namespace JR.DevFw.PluginKernel.Web { /// <summary> /// B/S插件宿主 /// </summary> [PluginHost("B/S插件宿主", "使用{module}.sh/{action}访问自定义扩展")] public abstract class BaseWebPluginHost : BasePluginHost, IWebPluginHost { prote...
using System.Reflection; using System.Runtime.CompilerServices; // Information about this assembly is defined by the following attributes. // Change them to the values specific to your project. [assembly: AssemblyTitle("TestIPCB")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: ...
// Assembly BackgroundCopyManager2_5, Version 1.0.0.0 [assembly: System.Reflection.AssemblyVersion("1.0.0.0")] [assembly: System.Runtime.InteropServices.ImportedFromTypeLib("BackgroundCopyManager2_5")] [assembly: System.Runtime.InteropServices.TypeLibVersion(1, 0)] [assembly: System.Runtime.InteropServices.Guid("4974...
//Copyright SimBlocks LLC 2021 //https://www.simblocks.io/ //The source code in this file is licensed under the MIT License. See the LICENSE text file for full terms. namespace sbio.owsdk { public interface IVisitor<T> { void Accept(T obj); } } //Copyright SimBlocks LLC 2021 //https://www.simblocks.io/ //Th...
#region MigraDoc - Creating Documents on the Fly // // Authors: // Stefan Lange (mailto:Stefan.Lange@pdfsharp.com) // Klaus Potzesny (mailto:Klaus.Potzesny@pdfsharp.com) // David Stephensen (mailto:David.Stephensen@pdfsharp.com) // // Copyright (c) 2001-2009 empira Software GmbH, Cologne (Germany) // // http://ww...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Code.Extensions.Generic; using FluentAssertions; namespace Code.Tests.Generic { public abstract class RenderingADictionary : RenderingTests { void GivenADictionaryWithTokensInTheValues() { } async Task WhenPr...
// // Authors: // Ben Motmans <ben.motmans@gmail.com> // // Copyright (c) 2007 Ben Motmans // // 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 limita...
using System; using System.Collections.Generic; namespace lab04 { public partial class CurrentPage { public string AccountName { get; set; } public string ContainerName { get; set; } public string BlobName { get; set; } public DateTime VersionTimestamp { get; set; } pub...
//----------------------------------------------------------------------------- // Copyright : (c) Chris Moore, 2020 // License : MIT //----------------------------------------------------------------------------- namespace Z0 { using System; using System.Runtime.CompilerServices; using System.Runti...
using RogueEssence.Ground; using System; namespace RogueEssence.Script { /// <summary> /// Handles script interactions with character AI /// </summary> class ScriptAI : ILuaEngineComponent { /// <summary> /// Assign the given scripted AI class to the specified GroundChar. ...
namespace Datagrammer.Quic.Protocol.Tls { public static class EncryptedExtensions { public static void WriteEmpty(MemoryCursor cursor) { HandshakeType.EncryptedExtensions.WriteBytes(cursor); using (HandshakeLength.StartWriting(cursor)) { var ...
@model NewLife.CMX.SiteConfig @{ Layout = "~/Views/Shared/_Ace_Layout.cshtml"; ViewBag.Title = "网站配置"; } <div class="panel panel-default"> <div class="form-horizontal"> @using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.ValidationSummary() @Html....
// Copyright © 2020 EPAM Systems, Inc. All Rights Reserved. All information contained herein is, and remains the // property of EPAM Systems, Inc. and/or its suppliers and is protected by international intellectual // property law. Dissemination of this information or reproduction of this material is strictly forbidde...
// // 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 // distr...
using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace Concurrency.PaulButcher.Chapter2.Day1.DiningPhilosophers { class Philosopher { private static int _counter; private readonly int _number; private readonly Object _leftHand; pri...
using System; using System.Collections.Generic; using System.Data; using System.Linq.Expressions; using System.Threading.Tasks; using Abp.Domain.Entities; using Abp.MultiTenancy; using Abp.Reflection.Extensions; namespace Abp.Dapper.Repositories { /// <summary> /// Base class to implement <see cref="IDapp...
using Microsoft.Extensions.DependencyInjection; using Polly; using Polly.Registry; using Sample.Services; using System.Threading.Tasks; namespace Sample.Workers { public class WithoutPolicyScope : IWithoutPolicyScope { public WithoutPolicyScope(IServiceScopeFactory serviceScopeFactory, IReadOnlyPolicy...
namespace AnimalFarm.Models { using System; public class Chicken { public const int MinAge = 0; public const int MaxAge = 15; private string name; private int age; internal Chicken(string name, int age) { this.Name = name; this.Age ...
// 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 Internal.Runtime.Augments; using Internal.NativeFormat; using Internal.Runtime.TypeLoader; using...
using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Reflection; using System.Text; using System.Collections.Concurrent; using System.Reflection.Emit; using System.Threading; using Dapper; namespace Dapper.Contrib.Extensions { /// <summary> /// The Dapper.Contrib...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Reflection; using System.Diagnostics; using System.Threading; namespace PowerArgs { /// <summary> /// A class that lets you customize how your usage displays /// </summary> [Obsolete("Yo...
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; using Microsoft.Extensions.Configuration; using Plenumsoft.Configuration; using Plenumsoft.Web; namespace Plenumsoft.EntityFrameworkCore { /* This class is needed to run "dotnet ef ..." commands from command line on development. Not ...
namespace WebApi.Models.v1.Sign { /// <summary> /// 标记喜欢方法入参 /// </summary> public class DtoSign { /// <summary> /// 表名 /// </summary> public string Table { get; set; } /// <summary> /// 记录ID /// </summary> public long TableId { ge...
using System; using System.Runtime.InteropServices; namespace WindowsFormsAero.InteropServices { [Serializable] [StructLayout(LayoutKind.Sequential)] internal struct SIZEL { public int X; public int Y; } }
using System; using System.Collections.Concurrent; using System.Diagnostics; using System.Globalization; using System.IO; using System.Reflection; using System.Threading.Tasks; namespace VectronsLibrary.Logging; /// <summary> /// A very basic file logger. /// </summary> public static class BasicLogger { /// <sum...
using Glav.CognitiveServices.FluentApi.Core; using Glav.CognitiveServices.FluentApi.Face.Configuration; namespace Glav.CognitiveServices.FluentApi.Face { public static class ConfigurationBuilderExtensions { public static FaceAnalysisSettings WithFaceAnalysisActions(this CoreAnalysisSettings analysisSe...
using System; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Microsoft.Azure.Devices.Client.Test.Transport { using System.Collections.Generic; using System.Net.Sockets; using System.Threading; using System.Threading.Tasks; using Microsoft.Azure.Devices.Client.Transport; using Mi...
using System.ComponentModel; namespace EncompassRest.Loans.Enums { /// <summary> /// DisclosureType /// </summary> public enum DisclosureType { /// <summary> /// Initial disclosure estimated at time of application /// </summary> [Description("Initial disclosure estim...
using System; using NetRuntimeSystem = System; using System.ComponentModel; using NetOffice.Attributes; namespace NetOffice.WordApi { /// <summary> /// DispatchInterface Legend /// SupportByVersion Word, 14,15,16 /// </summary> /// <remarks> MSDN Online: http://msdn.microsoft.com/en-us/en-us/library/office/ff84...
namespace Ding.Ui.Operations.Forms { /// <summary> /// 重置项 /// </summary> public interface IResetOption { } }
using System; using System.Collections.Generic; using Dfc.CourseDirectory.Core.DataStore.Sql.Models; namespace Dfc.CourseDirectory.Core.DataStore.Sql.Queries { public class GetCourseUploadRows : ISqlQuery<(IReadOnlyCollection<CourseUploadRow> Rows, int TotalRows)> { public Guid CourseUploadId { get; s...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.VisualStudio.TestPlatform.ObjectModel.DataCollection { using System; /// <summary> /// Class defining execution events that...
// $Id$ // // 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"...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Routing; namespace WebClient { public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pat...
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class ScoreDisplay : MonoBehaviour { calculator calc; int monstercount = 0; public Text score; // Start is called before the first frame update void Start() { calc = FindObjectOf...
using System; using System.Collections.Generic; using System.Net; using System.Net.Sockets; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using Renci.SshNet.Channels; using Renci.SshNet.Common; namespace Renci.SshNet.Tests.Classes { [TestClass] public class ForwardedPortLocalTest_Dispose_Port...
using System; namespace Newtonsoft.Json.Extensions { public static class JsonConverter { public static T TryDeserializeObject<T>(string value, Type type) where T : class { try { return JsonConvert.DeserializeObject(value, type) as T; } ...
// <copyright file="DenseEvd.cs" company="Math.NET"> // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics // http://mathnetnumerics.codeplex.com // // Copyright (c) 2009-2013 Math.NET // // Permission is hereby granted, free of charge, to an...
#nullable disable using PasPasPas.Globals.Parsing; namespace PasPasPas.Parsing.SyntaxTree.Standard { /// <summary> /// class method definition /// </summary> public class ClassMethodSymbol : StandardSyntaxTreeBase { /// <summary> /// create a new class method symbol /...
using Discord.Commands; using System; using System.Threading.Tasks; namespace LiveBot.Discord.Helpers { internal class EnhancedBoolTypeReader : TypeReader { /// <inheritdoc/> public override Task<TypeReaderResult> ReadAsync(ICommandContext Context, string Input, IServiceProvider Services) ...
/* * Author: Shon Verch * File Name: ICryptographicMethod.cs * Project Name: NetworkCryptography * Creation Date: 9/7/2017 * Modified Date: 9/7/2017 * Description: A generic interface for all cryptography method. */ namespace NetworkCryptography.Core { /// <summary> /// Interface for all cryptography m...
// Copyright (c) Rapid Software LLC. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Scada.Comm.Config; using Scada.Comm.DataSources; using Scada.Forms; using Scada.Lang; namespace Scada.Comm.Drivers.DrvDsOpcUaServer.View { ...
// MonoGame - Copyright (C) The MonoGame Team // This file is subject to the terms and conditions defined in // file 'LICENSE.txt', which is part of this source code package. namespace Microsoft.Xna.Framework.Graphics { /// <summary> /// Defines types for effect parameters and shader constants. /// </summary> publ...
//=================================================================================== // Microsoft patterns & practices // Composite Application Guidance for Windows Presentation Foundation and Silverlight //=================================================================================== // Copyright (c) Microsoft C...
using System.Collections.Generic; namespace GenerateWord { public class DynamicTable { public DynamicTable() { Rows = new List<Row>(); } public string TableName { get; set; } public TypeIntegration TypeIntegration { get; set; } public List<Row> Ro...