text
stringlengths
1
932k
@model IEnumerable<MVCResearchTracker.Models.MyDiscovery> @{ ViewBag.Title = "Discoveries"; } <h2>Discoveries</h2> <table class="table"> <tr> <th> @Html.DisplayNameFor(model => model.Capability) </th> <th> @Html.DisplayNameFor(model => model.EndpointUri) ...
using Godot; using System; public class Missile : Bullet { // Export Variables/Properties [Export] public float SteerForce { get; set; } // Global Variables private Vector2 _acceleration = new Vector2(); private PhysicsBody2D _target = null; // Initialize the missile public override void ...
using System; using Xunit; using OpenActive.Server.NET; using OpenActive.NET; namespace OpenActive.Server.NET.Tests { public class StoreBookingEngineTest { [Fact] public void StoreBookingEngine_ProcessOrderQuoteCheckpoint() { // Set up engine with engine settings (outside...
// Copyright 2005-2010 Gallio Project - http://www.gallio.org/ // Portions Copyright 2000-2004 Jonathan de Halleux // // 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.a...
/* * 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...
using System.Resources; 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. [ass...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Cats.Models.Hubs.ViewModels { public class ReceiveNewViewModel { #region View Properties public Guid ReceiveId { get; set; } [RegularExpression("[0-9]*", ErrorMessage = @"Only numb...
using System; using System.IO; namespace cslox { public static class Lox { private static bool hadError; private static bool hadRuntimeError; private static readonly Interpreter interpreter = new Interpreter(); public static void RunFile(string path) { var...
using Pote; using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Linq; namespace Spot.Ebnf { /// <summary> /// Defines extension methods for the <see cref="IEnumerable{T}"/> interface. /// </summary> [EditorBrowsable(EditorBro...
using System; namespace SpatialLite.Core.IO { /// <summary> /// Represents exception that occurs if WkbReader encouters invalid data. /// </summary> public class WkbFormatException : Exception { /// <summary> /// Initializes a new instance of the WktParseException class. /// </summary> /// <pa...
using Xunit; public class NunitTests : IntegrationTestsBase { [Fact] public void StringContains_should_have_message() { var assertionMessage = CallTestMethod(); Assert.Contains("StringAssert.Contains(\"test\", actual);", assertionMessage); } [Fact] public void AreEqual_should_...
namespace HeroicallyRecipes.Services.Data { using System.Linq; using HeroicallyRecipes.Data.Models; using HeroicallyRecipes.Data.Repositories; using HeroicallyRecipes.Services.Data.Contracts; public class CategoriesService : ICategoriesService { private IDbRepository<Category> categor...
using NTI.iMeter.ComponentStandard.UI.Converter; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DateTimeComponent.UI { public class ConverterInstanceSettingOperator : ConverterUIComponentInstanceSettingOperatorBase { static...
namespace Swan.Net { using Net.Dns; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Net.NetworkInformation; using System.Net.Sockets; using System.Threading; using System.Threading.Tasks; /// <summary>...
using System; using System.Collections.Generic; using System.Reflection; using UnityEngine; namespace XNode { [Serializable] public class NodePort { public enum IO { Input, Output } public int ConnectionCount { get { return connections.Count; } } /// <summary> Return the first non-nul...
using Microsoft.SharePoint.Client; using PnP.Framework.Attributes; using System; using System.Text.RegularExpressions; namespace PnP.Framework.Provisioning.ObjectHandlers.TokenDefinitions { [TokenDefinitionDescription( Token = "{pageuniqueidencoded:[siterelativepath]}", Description = "Returns the HTML s...
/* * 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...
@model APPBASE.Models.UserChangepasswordVM @using APPBASE.Helpers @{string vsErrClass = "";} @{string vsDisableButton = "";} @{Boolean isShowDropdown = true;} @{string vsReadonlyTextboxKey = "Readonly";} @{string vsReadonlyTextbox = "";} @if (ViewBag.CRUD_type == hlpFlags_CRUDOption.CREATE) { vsReadonlyTextboxKey = "...
using RC.KeywordRank.Attributes; using RC.KeywordRank.Constants; using System.ComponentModel; namespace RC.KeywordRank.Extensions { public static class AgeGroupExtensions { /// <summary> /// 연령대의 DataAge를 제공 /// </summary> /// <param name="ageGroup">연령대</param> /// <ret...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; using System.Windows; using System.Windows.Controls; using Metabolomics.Core; using Metabolomics.MsLima.Bean; using ChartDrawing; using Microsoft.Win32; namespace Metabolomics.Ms...
// <copyright file="IMeasure.cs" company="OpenTelemetry Authors"> // Copyright 2018, OpenTelemetry 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...
namespace _03.WildFarm.Models.Foods { public class Seeds : Food { public Seeds(int quantity) : base(quantity) { } } }
using System; using System.Collections.Generic; using System.Text; namespace GraphLinqQL.Resolution { public class ContractMapping : IContract { public IReadOnlyList<ContractEntry> Resolvables { get; } public ContractMapping(Type contractType, Type domainType) : this(new[] { new C...
using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Xml.Schema; using System.Xml.Serialization; namespace Workday.ResourceManagement { [GeneratedCode("System.Xml", "4.6.1590.0"), DesignerCategory("code"), DebuggerStepT...
using System; using System.Collections; using System.Linq; using AutoFixture; using Xunit; namespace ListPool.Netstandard2_0.UnitTests.ListPool { public class ListPoolAsIListTests : ListPoolTestsBase { public override void Add_items_when_capacity_is_full_then_buffer_autogrow() { usi...
#nullable enable namespace Nerdbank.GitVersioning.Managed { using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using Nerdbank.GitVersioning; using Nerdbank.GitVersioning.ManagedGit; using Newtonsoft.Json; using Validation; //...
using System; using System.Data.Common; using System.Data; using StackExchange.Profiling; using System.Reflection; using System.Reflection.Emit; #pragma warning disable 1591 // xml doc comments warnings namespace StackExchange.Profiling.Data { [System.ComponentModel.DesignerCategory("")] public class Profile...
using CsvHelper.Configuration; using EdFi.SampleDataGenerator.Core.Entities; namespace EdFi.SampleDataGenerator.Core.Serialization.CsvHelper.EducationOrganization { public sealed partial class EducationOrganizationPeerAssociationCsvClassMap : CsvClassMap<EducationOrganizationPeerAssociation> { public E...
using System; using System.ComponentModel; using System.Drawing; using System.Resources; using System.Windows.Forms; namespace pooremma { public class Randomizer : Form { private IContainer components = null; private Button button1; private CheckBox NormalChoice; private CheckBox BossesChoice; private ...
// *** 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...
 namespace DynamicRepository.Contract { public interface IDataRepository { } public interface IDataRepository<TEntity> : IStoreReader<TEntity>, IStoreWriter<TEntity>, IDataRepository { } }
// 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.Linq; using JetBrains.Annotations; using Microsoft.EntityFrameworkCore.Internal; using Microsoft.EntityFrameworkCore.Metadata; using Micros...
using Pretzel.Logic.Templating.Context; using Xunit; namespace Pretzel.Tests.Templating.Razor { public class RazorExtensionsTests { [Fact] public void IsRazorFile_ForExpectedExtensions_ReturnsTrue() { Assert.True(".cshtml".IsRazorFile()); } } }
// ------------------------------------------------------------------------------ // <auto-generated> // This code was generated by SpecFlow (http://www.specflow.org/). // SpecFlow Version:2.2.0.0 // SpecFlow Generator Version:2.2.0.0 // // Changes to this file may cause incorrect behavior and wi...
using Domain.Models; namespace Services.TagActionHandlers { public class DiscussionTagCreationHandler : ITagActionHandler { public void Handle(Tag tag, Project project, ProjectService projectService) { if (!tag.Name.StartsWith("Discuss")) { return; ...
using System.Collections.Generic; using System.Linq; using DefensiveProgrammingFramework; using TorrentClient.Extensions; using TorrentClient.PeerWireProtocol.Messages; using TorrentClient.TrackerProtocol.Udp.Messages.Messages; namespace TorrentClient.TrackerProtocol.Udp.Messages { /// <summary> /// The scrap...
// *********************************************************************** // Assembly : MPT.CSI.API // Author : Mark Thomas // Created : 06-10-2017 // // Last Modified By : Mark Thomas // Last Modified On : 06-10-2017 // **********************************************************************...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Net; using System.Security.Authentication; using System.Text; using System.Threading; using SuperSocket.Common; using SuperSocket.SocketBase.Config; using SuperSocket.SocketBase.Logging; using SuperSock...
using System.IO; namespace Parsec.Helpers { public static class FileHelper { /// <summary> /// Check if a file exists. /// </summary> /// <param name="path">Path to the file to check</param> public static bool FileExists(string path) => File.Exists(path); ...
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Human : Character { private void Awake() { type = CharacterType.human; hp = 100; speed = 5; enemies.Add(CharacterType.vampire); enemies.Add(CharacterType.werewolf); } }
using System; using System.Collections.Generic; using System.Linq; using System.Net; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI.Xaml.Documents; using Windows.UI.Xaml.Input; using Windows.UI.Xaml.Media; using Windows.UI.Xaml.Media.Animation; using Windows.UI.Xaml.Shapes; namespace ToolTipP...
namespace PetProject.Application.Login { public class AuthenticateModel { public string Email { get; set; } public string Password { get; set; } } }
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // 有关程序集的一般信息由以下 // 控制。更改这些特性值可修改 // 与程序集关联的信息。 [assembly: AssemblyTitle("ServiceStar")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyPr...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DecoratorPatternDemo { public class EmployeeWithSwimmingDiploma : EmployeeWithDiploma { public EmployeeWithSwimmingDiploma(Employee employee) : base(employee) { ...
namespace Marketo.Require { internal static class config { //api public const string api_version = "/v1"; } }
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace TicketOnline.Models { public class ExternalLoginConfirmationViewModel { [Required] [Display(Name = "Email")] public string Email { get; set; } } public class ExternalLoginListViewModel ...
using System; using System.Drawing; namespace ConsoleLib { public class TextCanvas { internal Rectangle _dimension; public TextCanvas(Rectangle dimension) { _dimension = dimension; } public ConsoleColor BackgroundColor { get; internal set; } public...
using System; using System.IO; using System.Reflection; using Microsoft.AppCenter.Crashes; namespace GoalTracker.Utilities { public static class FileHelpers { public static string GetFileTextInAssembly(string filename) { try { var assembly = typeof(App)....
// Copyright 2016, 2017, 2018 TRUMPF Werkzeugmaschinen GmbH + Co. KG. // // 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...
namespace CompanyHierarchy.Interfaces { interface IManager { } }
using Neptuo; using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace GitExtensions.BundleBackuper.Services { public class BackupOverrideConfirmation : DisposableBase ...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections; using System.Collections.Generic; using System.Runtime.CompilerServices; namespace System.Runtime.Serialization { internal sealed class ObjectToIdCache...
using System; using System.Windows.Input; using Microsoft.Phone.Controls; namespace ContactsSample { public partial class MainPage : PhoneApplicationPage { // Constructor public MainPage() { var vm = new MainPageViewModel(); vm.SelectedContact += OnSelectedContact; DataContext = vm; InitializeComp...
#region license // Transformalize // Configurable Extract, Transform, and Load // Copyright 2013-2020 Dale Newman // // 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://...
using System; using System.Collections.Generic; using System.Linq; namespace _08.Strings_and_Text_Processing___Exercise { class Program { static void Main(string[] args) { List<string> userNames = Console.ReadLine().Split(", ").ToList(); List<string> validUser = new Lis...
/* * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH * under one or more contributor license agreements. See the NOTICE file * distributed with this work for additional information regarding copyright * ownership. Camunda licenses this file to you under the Apache License, * Version 2.0; ...
// ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. // ---------------------------------------------------------------------------- namespace AppOwnsData.Models { using System; public class EmbedReport ...
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("Te...
using Abstract_And_Interface.interfaces; using System; using System.Collections.Generic; using System.Text; using static Abstract_And_Interface.Abstract; namespace Abstract_And_Interface.role { public class Nanny : IAddBuff,IAddMilk { private AbstractAction action; public Nanny() { } ...
using dumpling.web.Storage; using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Blob; using Newtonsoft.Json.Serialization; using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Net.Http.Headers; using System.Web.Http; namespace dumpling.web ...
// // Copyright 2015 Blu Age Corporation - Plano, Texas // // 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 requ...
using System; using System.Linq; using System.Security.Cryptography; using System.Text; namespace Frends.Community.CreateSignatureHash { /// <summary> /// Execute process /// </summary> public class CreateSignatureHash { /// <summary> /// Calculates signature hash from hashed ...
using System; using System.ComponentModel; using System.Runtime.Serialization; namespace FantasyData.Api.Client.Model.MLB { [DataContract(Namespace="", Name="PlayerGameProjection")] [Serializable] public partial class PlayerGameProjection { /// <summary> /// The unique ID of the stat ...
// ----------------------------------------------------------------------- // <copyright file="ConfigurationException.cs" company="MicroLite"> // Copyright 2012 - 2016 Project Contributors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the L...
using System; using System.Collections.Generic; using System.Linq; using NUnit.Framework; namespace FastGraph.Tests.Extensions { /// <summary> /// Tests related to <see cref="EdgeExtensions"/>. /// </summary> internal sealed class EdgeExtensionsTests { [Test] public void IsSelfEdge(...
/* * 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...
// // System.Web.UI.WebControls.INotifyPropertyChanged.cs // // Authors: // Chris Toshok (toshok@ximian.com) // // (C) 2005 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), t...
// 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.Collections.Generic; using System.Data.Common; using System.Diagnostics; nam...
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: google/cloud/speech/v1beta1/cloud_speech.proto #pragma warning disable 1591, 0612, 3021 #region Designer generated code using pb = global::Google.Protobuf; using pbc = global::Google.Protobuf.Collections; using pbr = global::Google.Protobuf.Reflect...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SlowFox.Core.Logic { /// <summary> /// A static helper class to generate property and parameter names /// </summary> public static class NameGenerator { /// <summary> /// Gets the name b...
//------------------------------------------------------------------------------ // <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; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using Application.Common; using Interface.FormBuilder; using Application.Presentation; namespace IQCare.Form...
/* * 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...
//Elvin Noé Palma Hernández 20192001535 //Se inicia la clase abstracta persona public abstract class Persona { //Propiedades de la clase public string Nombre { get; set; } public string Apellido { get; set; } }
using System; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; namespace Bidster.Migrations { public partial class RemoveTenants : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKe...
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("04...
using System.Collections; using System.Collections.Generic; using UnityEngine; namespace ON{ public class ON_Trigger_TriggerAnimation : ON_TriggerEvents { public string TriggerName; public override void Ping() { base.Ping (); this.GetComponent<Animator> ().SetTrigger (TriggerName); } } }
 @{ ViewBag.Title = "Validation5"; string emailPattern = @"^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$"; } @section styles { <style> input:valid { background-color: white; color: black; } input:invalid { background-color: red; color: white; } input:invalid:required { background...
#region dCPL Version 1.1.1 /* The contents of this file are subject to the dashCommerce Public License Version 1.1.1 (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.dashcommerce.org Software distributed under the License is distribute...
using Open.Nat; using System.Collections.Generic; using System.ComponentModel; using System.Net; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; using UPnPWin.Exceptions; using UPnPWin.Objects; using UPnPWin.Utils; using UPnPWin.Utils.UI; namespace UPnPWin.Forms { ...
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Routing; namespace _05_43_mvc_ex5_edit { public class RouteConfig { public static void RegisterRoutes(RouteCollection routes) { routes.IgnoreRoute("{resource}.axd/{*pathInfo}")...
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.Linq.Expressions; namespace Neo4jClient.Cypher { public partial interface ICypherFluentQuery { ICypherFluentQuery With(string withText); ICypherFluentQuery With<TResult>(Expression<Func<ICypherResultItem, TResult>> expression); ICypherFluentQuery With<TResult>...
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("Te...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. #nullable disable using System; using System.Linq; using System.Threading; using System.Threading.Tasks; using Mic...
// Copyright 2013-2019 Dirk Lemstra <https://github.com/dlemstra/Magick.NET/> // // Licensed under the ImageMagick License (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.imagemagick.org/script/license.php // // Unless requ...
// -------------------------------------------------------------------------------------------- // Version: MPL 1.1/GPL 2.0/LGPL 2.1 // // The contents of this file are subject to the Mozilla Public License Version // 1.1 (the "License"); you may not use this file except in compliance with // the License. You may obta...
using System; namespace Research.Data { /// <summary> /// Helper class for making pictures hashes from DB /// </summary> public partial class PictureHashItem : IComparable, IComparable<PictureHashItem> { public int PictureId { get; set; } public byte[] Hash { get; set; } ...
//---------------------- // <auto-generated> // This file was automatically generated. Any changes to it will be lost if and when the file is regenerated. // </auto-generated> //---------------------- #pragma warning disable using System; using SQEX.Luminous.Core.Object; using System.Collections.Generic; using CodeDom...
using System.Collections.Generic; namespace FileBrowser.Configurations { /// <summary> /// <see cref="FileDialogConfiguration"/> defines the configuration for a /// file dialog. /// </summary> public sealed class FileDialogConfiguration : DialogConfiguration { public override string Ti...
@using LessplasticWebApp.Areas.Identity.Pages.Account.Manage @using Lessplastic.Models;
using System.Collections; using System.Collections.Generic; using Cinemachine; using UnityEngine; using UnityEngine.SceneManagement; using UnityStandardAssets.CrossPlatformInput; public class PauseMenuManager : MonoBehaviour { public static bool PausedGame = false; public GameObject UI; public GameObject...
/* Copyright (c) 2019, Lars Brubaker, John Lewin All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and...
/* * 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 SimpleDomain.Logic { using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Db; using Db.Model; using Microsoft.EntityFrameworkCore; public class GetUsersFromOrganization { private readonly Context db; publi...
using System; using System.Collections.Generic; using System.Text; namespace DefiningClasses { public class DateModifier { public string DateOne { get; set; } public string DateTwo { get; set; } public int Difrence { get; set; } public DateModifier(string dateOne, string dateT...
#region License // // The Open Toolkit Library License // // Copyright (c) 2006 - 2009 the Open Toolkit library. // // 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 restrict...
using SINTEF.AutoActive.UI.Interfaces; using System; using System.Collections.Generic; using System.Text; using Xamarin.Forms; namespace SINTEF.AutoActive.UI.Views.TreeView { class DataPointView : MovableObject { public DataPointView():base() { this.ButtonColor = Color.DarkMagenta;...
//----------------------------------------------------------------------------- // Copyright : (c) Chris Moore, 2020 // License : MIT //----------------------------------------------------------------------------- namespace Z0 { using System; using static HexConst; public readonly struct CpuBytes ...
namespace Process.Dialogs.Notebook { /// <summary> /// Interaction logic for NotebookDialog.xaml /// </summary> public partial class NotebookDialog : DialogWindow { public NotebookDialog() { InitializeComponent(); } } }