text
stringlengths
1
932k
using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Reflection; namespace Frapid.NPoco.Expressions { /// <summary> /// Rewrites an expression tree so that locally isolatable sub-expressions are evaluated and converted into ConstantExpression nodes. /// </summary> ...
// // Encog(tm) Core v3.1 - .Net Version // http://www.heatonresearch.com/encog/ // // Copyright 2008-2012 Heaton Research, 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 // // htt...
namespace CmsZwo.Container.Tests { public class TestSettings { public bool Enabled { get; set; } } }
using Medic.Entities.Bases; using Medic.Entities.Contracts; using System; using System.Collections.Generic; namespace Medic.Entities { [Serializable] public partial class PatientBranch : BaseEntity, IModelBuilder { public int Id { get; set; } public int HealthRegionId { get; set; } ...
using System; using System.Linq; using System.Text; using JetBrains.Annotations; using JetBrains.Metadata.Reader.API; using JetBrains.ReSharper.Psi; using JetBrains.ReSharper.Psi.CSharp; using JetBrains.ReSharper.Psi.CSharp.Impl; using JetBrains.ReSharper.Psi.CSharp.Tree; using JetBrains.Util; namespace JetBrains.ReS...
using UnityEngine; namespace SsitEngine.Unity.UI.Common.Curve { /// <summary>Quadratic bezier curve.</summary> public class QuadraticBezierCurve : BezierCurve { /// <summary>Anchor points of curve.</summary> public QuadraticBezierAnchor anchor; /// <summary>Constructor.</summary> ...
using System; using PersonExampleDB.Models; using PersonExampleDB.Repositories; using PersonExampleDB.Views; namespace PersonExampleDB { class Program { static void Main(string[] args) { ConsoleKeyInfo cki; UIModel uIModel = new UIModel(); do { ...
using UnityEngine; using System.Collections; public class Tap : MonoBehaviour { public string parent; public bool planet = false; public float disableTime = 1.0f; public static bool enableTap = true; public bool enableRecordingGUI = false; private bool enableButton = true; public static bool transitioni...
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System.Collections.Generic; using UnityEngine; namespace RealityToolkit.Utilities.Audio.Influencers { /// <summary> /// An audio effect that limits th...
namespace formulate.app.Trees.Helpers { // Namespaces. using core.Extensions; using DataValues; using Entities; using Folders; using formulate.app.Helpers; using System; using System.Collections.Generic; using System.Net.Http.Formatting; using Umbraco.Web.Models.Trees; usin...
#region Copyright notice and license // Protocol Buffers - Google's data interchange format // Copyright 2008 Google Inc. All rights reserved. // https://developers.google.com/protocol-buffers/ // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the fol...
@using Epam.FinalTask.PhotoAlbum.Common @using Epam.FinalTask.PhotoAlbum.Entities @{ if (!IsPost) { Response.SetStatus(HttpStatusCode.NotFound); return; } string commentIdStr = Request["commentId"]; if (int.TryParse(commentIdStr, out int commentId)) { Comment comment; ...
using System; using Newtonsoft.Json; using Newtonsoft.Json.Linq; namespace Skybrud.Umbraco.PackageManifests.Models.Umbraco { public class GridEditor { [JsonProperty("name")] public string Name { get; set; } [JsonProperty("alias")] public string Alias { get; set; } [JsonP...
using System; using Microsoft.Xna.Framework.Content.Pipeline; using NUnit.Framework; using Microsoft.Xna.Framework.Content.Pipeline.Processors; using System.IO; namespace MonoGame.Tests.ContentPipeline { class EffectProcessorTests { class ImporterContext : ContentImporterContext { p...
using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Grumpy.RipplesMQ.Sample.Broker1")] [assembly: AssemblyDescription("Sample RipplesMQ Broker - Instance 1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Anders Busted-Janum")] [assembly: AssemblyProduct("Grump...
/* **************************************************************************** * * Copyright (c) Microsoft Corporation. * * This source code is subject to terms and conditions of the Microsoft Public License. A * copy of the license can be found in the License.html file at the root of this distribution. If * ...
// Copyright 2021 Google LLC // // 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 agreed to in ...
namespace RuleScript.Runtime { public interface IRSDebugLogger { void Log(string inLog); void Log(string inLogFormat, params object[] inArgs); void Warn(string inWarning); void Warn(string inWarningFormat, params object[] inArgs); void Error(string inError); voi...
/* * Copyright 2017-2019 Paul Michaels, Wouter Huysentruit * * 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 ap...
using System; using System.Collections; using System.Runtime.InteropServices; namespace DCSoft.Script { /// <summary> /// string list , would not contains empty , null or same text, ignore case. /// </summary> [Serializable] [ComVisible(false)] public class MyStringList : CollectionBase { public s...
using Jal.Router.Interface; using System.Threading.Tasks; namespace Jal.Router.Impl { public class ListenerShutdownTask : IShutdownTask { private readonly IConfiguration _configuration; public ListenerShutdownTask(IConfiguration configuration) { _configuration = configurati...
namespace Basket.API.Entities { public class BasketCheckout { public string UserName { get; set; } public decimal TotalPrice { get; set; } // BillingAddress public string FirstName { get; set; } public string LastName { get; set; } public string EmailAddress { g...
using NaNoE.V2.Data; using NaNoE.V2.Views; using System.Windows; namespace NaNoE.V2 { /// <summary> /// The view navigator /// </summary> class Navigator { /// <summary> /// MainWindow instance /// </summary> private MainWindow _main; /// <summary> ...
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 Fatorial { public partial class Form1 : Form { public Form1() { ...
// T(2N0) = (2^b) * T // T(4N0) = (2^b) * (2^b) * T = (2^2b) * T // T((2^r) * N0) = (2^rb) * T // T(N) = (2^(lg(N/N0)*b)) * T return;
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // Method: Simulate a bouncing ball based on the laws of physics. using System; class BouncingBall { public static int Main(string[] args) { double coef; ...
// OData .NET Libraries ver. 5.6.3 // Copyright (c) Microsoft Corporation // All rights reserved. // MIT License // 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 rest...
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("9T...
namespace BankInformationSystem.Business.Models { public class LoanContractDetailsModel : ProgramContractDetailsBaseModel { public int LoanTypeId { get; set; } public string LoanPaymentAccountNumber { get; set; } } }
#pragma warning disable 1591 //------------------------------------------------------------------------------ // <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 regenerate...
 @{ ViewBag.Title = "Contact"; Layout = "~/Views/Shared/_Layout.cshtml"; } <section class="text-center section-padding contact-wrap" id="contact"> <!-- To Top Button --> <a href="index.html#top" class="up-btn"><i class="fa fa-chevron-up"></i></a> <div class="container"> <!-- Headline --> ...
//------------------------------------------------------------------------------ // <auto-generated> // O código foi gerado por uma ferramenta. // Versão de Tempo de Execução:4.0.30319.42000 // // As alterações ao arquivo poderão causar comportamento incorreto e serão perdidas se // o código for gerado ...
using BlazorExceptionHandling.Data; using Components; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Radzen; namespace BlazorExceptionHandling { public class Sta...
using System.Web.Optimization; namespace AzureKit { public class BundleConfig { // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 public static void RegisterBundles(BundleCollection bundles) { bundles.Add(new ScriptBundle("~/bundles/jq...
using System.ServiceModel; using System.ServiceModel.Channels; using System.Threading.Tasks; using OnvifDemo.Proxies.Ptz; using System.Text; using OnvifDemo.Proxies.Device; using OnvifDemo.Proxies.Media; using System.Linq; using System; namespace OnvifDemo { class Program { const string deviceEndpoint...
using System; using System.Drawing; using System.Runtime.InteropServices; using System.Security; using System.Text; using SmartTaskbar.Core.Settings; namespace SmartTaskbar.Core { [SuppressUnmanagedCodeSecurity] internal static class SafeNativeMethods { #region Taskbar Buttons Size [DllIm...
 namespace VivialConnect.Resources.Connector { /// <summary> /// Provides the delivery statuses of messages /// sent to or from the account using HTTP /// request to a specified URL for /// IncomingFallback event types. /// </summary> public class CallbackIncomingFallback : Callback { ...
// <auto-generated> // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for // license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // re...
namespace WOD.Game.Server.Core.Beamdog { public enum NuiAspect { Fit = 0, Fill = 1, Fit100 = 2, Exact = 3, ExactScaled = 4, Stretch = 5 } }
using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using DevExpress.ExpressApp; using DevExpress.ExpressApp.DC; using DevExpress.ExpressApp.Model; using DevExpress.ExpressApp.Model.Core; using DevExpress.Persistent.Base; using Xpand.ExpressApp.ModelArtifactState.ArtifactSta...
using System; using System.Collections.Generic; using BinaryMesh.OpenXml.Styles; namespace BinaryMesh.OpenXml.Charts { public interface IChartValue<out TFluent> { IVisualStyle<TFluent> Style { get; } IValueDataLabel<TFluent> DataLabel { get; } } }
using System; using System.Collections.Generic; using System.Linq; using UnityEngine; using UnityEngine.SceneManagement; namespace Injecter.Unity { public sealed class SceneInjector : ISceneInjector { private readonly SceneInjectorOptions _options; private readonly IInjecter _injecter; ...
 namespace _1.Day_of_Week { using System; using System.Globalization; public class DayOfWeek { static void Main(string[] args) { string input = Console.ReadLine(); DateTime date = DateTime.ParseExact(input,"d-M-yyyy",CultureInfo.InvariantCulture); ...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using Handelabra.Sentinels.Engine.Controller; using Handelabra.Sentinels.Engine.Model; namespace Cauldron.Dynamo { public class HeresThePlanCardController : DynamoUtilityCardController { public HeresThePlanCa...
using System; using System.Collections.Generic; using Dime.Scheduler.Sdk.Import; using Dime.Scheduler.Sdk.Import.Exchange; using Xunit; namespace Dime.Scheduler.Sdk.Tests.Import { public class ExchangeAppointmentTests { [Fact] public void ExchangeAppointment_ToImportRequest_Append_AllShouldMap...
using System; using System.Collections.ObjectModel; using System.Linq; using System.Threading.Tasks; using System.Windows.Input; using SafeTodoExample.Helpers; using SafeTodoExample.Model; using SafeTodoExample.ViewModel.Base; using Xamarin.Forms; namespace SafeTodoExample.ViewModel { public class TodoItemsPageVi...
using System; using System.Runtime.InteropServices; using System.Security; namespace __Primitives__ { partial class WinAPI { partial class COM { [ComImport] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] [Guid("56a868aa-0ad4-11ce-b03a-0020af0ba770")] [SuppressUnmanagedCodeSecurity] public i...
// GENERATED CODE using NUnit.Framework; using static Unity.Mathematics.math; using Burst.Compiler.IL.Tests; namespace Unity.Mathematics.Tests { [TestFixture] public class TestUint4 { [TestCompiler] public static void uint4_zero() { TestUtils.AreEqual(uint4.zero.x, 0u); ...
// Copyright (c) 2007 James Newton-King. All rights reserved. // Use of this source code is governed by The MIT License, // as found in the license.md file. using System.ComponentModel; namespace TestObjects; public class Invoice { public string Company { get; set; } public decimal Amount { get; set; } ...
using Binance.Cache.Events; using Binance.Market; using System; using Xunit; namespace Binance.Tests.Cache.Events { public class TradeCacheEventArgsTest { [Fact] public void Throws() { Assert.Throws<ArgumentNullException>("trades", () => new TradeCacheEventArgs(null)); ...
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 UnityEngine; using System.Collections; using System.Collections.Generic; using System.Text; namespace Parabox.Road { public static class RoadUtils { public static string ToFormattedString<T>(this List<T> list, string delim) { if(list.Count < 1) return ""; StringBuilder sb = new StringBuilde...
// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ /...
/* * This file is part of - WebExtras * Copyright (C) 2014 Mihir Mone * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later v...
#pragma checksum "C:\Users\Alexi\source\repos\meli\Views\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7091c65830b0329e613be026ede8a57552863778" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views__View...
// 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.Collections.Generic; using JetBrains.Annotations; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.U...
<template class="task-template"> <section id="desktop-capturer-section" class="section js-section u-category-media"> <header class="section-header"> <div class="section-wrapper"> <h1> <svg class="section-icon"><use xlink:href="assets/img/icons.svg#icon-media"...
using UnityEngine; using System.Collections; using System.Runtime.InteropServices; public class NativeHandle { //------------------------------------------------------------------------- private object m_NativeObj; //------------------------------------------------------------------------- public Na...
/** * Mobius Software LTD * Copyright 2015-2017, Mobius Software LTD * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later v...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using static ProbCSharp.ProbBase; namespace ProbCSharp.Test.Models { public static class HiddenMarkovModel { /// <summary> /// Generates data for the hidden markov model /// </summary> public ...
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using LibGit2Sharp; namespace GitHubRelease.Internal { internal class LocalGitRepository : IDisposable { private readonly Repository _repository; public LocalGitRepository(string repository...
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using Microsoft.DotNet.Cli.Utils; using Xunit.Abstractions; namespace Microsoft.NET.Test...
// *** 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...
//------------------------------------------------------------------------------ // <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> //--...
// The MIT License (MIT) // // Copyright (c) 2018 - 2021 Lutando Ngqakaza // https://github.com/Lutando/Akkatecture // // // 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 restric...
// Copyright (c) Amer Koleci and contributors. // Distributed under the MIT license. See the LICENSE file in the project root for more information. using System.Runtime.InteropServices; namespace Vortice.XInput { /// <summary> /// Represents the state of a controller. /// </summary> /// <remarks> ...
using System; using System.Collections.Generic; using System.IO; using System.Text; using IOStream = System.IO.Stream; namespace MarvinEde.CoreExtensions { /// <summary> /// Holds extensions for <see cref="IOStream"/> /// </summary> public static class Stream { /// <summary> /// Re...
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Enjoy.Core.WeChatModels { public class AccessTokenWxResponse : WxResponse { public AccessTokenWxResponse(string token, int expriesin) { this.Token = token; this.Expiresin = ex...
using System; using System.Text; using UnityEngine; using UnityEngine.Timeline; namespace UnityEditor.Timeline { class EaseClip : Manipulator { bool m_IsCaptured; bool m_UndoSaved; TimelineClipHandle m_EaseClipHandler; ManipulateEdges m_Edges; TimelineClip m_Clip; ...
// <auto-generated /> namespace MvcMovie.Migrations { using System.CodeDom.Compiler; using System.Data.Entity.Migrations; using System.Data.Entity.Migrations.Infrastructure; using System.Resources; [GeneratedCode("EntityFramework.Migrations", "6.2.0-61023")] public sealed partial class data...
/* * 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.Threading.Tasks; using GYISMS.Configuration.Dto; namespace GYISMS.Configuration { public interface IConfigurationAppService { Task ChangeUiTheme(ChangeUiThemeInput input); } }
using System; using Reunion.Common; using Reunion.Common.Model; using TUtils.Common; namespace Reunion.BL { /// <summary> /// implements IReunionWebservice /// all REST functions, grouped by resources /// </summary> public class ReunionWebservice : IReunionWebservice { /// <summary> /// REST function Touch ...
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:2.0.50727.1433 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //---...
namespace CodeMetrics.Parsing.Contracts { public interface IBranchesVisitorFactory { IBranchesVisitor Create(); } }
// <auto-generated> // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is // regenerated. // </auto-generated> namespace UiPath.Web.Client202010.Models { using Newtonsoft.Json; using System.Collections; using System.Collections.G...
// <copyright file="EdgeDriver.cs" company="WebDriver Committers"> // Licensed to the Software Freedom Conservancy (SFC) under one // or more contributor license agreements. See the NOTICE file // distributed with this work for additional information // regarding copyright ownership. The SFC licenses this file // to yo...
using System; using System.Data; using System.Windows.Forms; namespace WCF { /// 类 名:WUseToolClass /// 类 描 述:常用工具类 /// 创 建 者:韦季李 /// 创建时间:2019/7/26 /// 源码网证:https://github.com/jiliwei/WCF public class WUseToolClass { /// <summary> /// 通过IO类型名称获取IO类型值 /// </summary> /...
using System; namespace BinarySerializer { public class Pointer : IEquatable<Pointer>, IComparable<Pointer> { #region Constructor public Pointer(long offset, BinaryFile file, Pointer anchor = null, PointerSize size = PointerSize.Pointer32, OffsetType offsetType = OffsetType.Serialized) ...
///////////////////////////////////////////////////////////////////////////////// // Paint.NET // // Copyright (C) dotPDN LLC, Rick Brewster, Tom Jackson, and contributors. // // Portions Copyright (C) Microsoft Corporation. All Rights Reserved. ...
using Abp.Application.Services.Dto; using Abp.AutoMapper; using ngDemo.MultiTenancy; namespace ngDemo.Sessions.Dto { [AutoMapFrom(typeof(Tenant))] public class TenantLoginInfoDto : EntityDto { public string TenancyName { get; set; } public string Name { get; set; } } }
/* * GridProxy.cs: implementation of OpenMetaverse proxy library * * Copyright (c) 2006 Austin Jennings * Pregen modifications made by Andrew Ortman on Dec 10, 2006 -> Dec 20, 2006 * * * All rights reserved. * * - Redistribution and use in source and binary forms, with or without * modification, are perm...
 using Serenity.Extensibility; using System.ComponentModel; namespace Serene.Administration { [NestedPermissionKeys] [DisplayName("Administration")] public class PermissionKeys { [Description("User, Role Management and Permissions")] public const string Security = "Administration:Secur...
using System; namespace DataFactory.Database.Entities { public class ExampleTableEntity : BaseTableEntity { public Guid Id { get; set; } = Guid.NewGuid(); public string ExampleOne { get; set; } public string ExampleTwo { get; set; } } }
using System.Collections.Generic; namespace Insight.Tinkoff.InvestSdk.Dto.Payloads { public sealed class PortfolioResponsePayload { public IReadOnlyCollection<PortfolioPosition> Positions { get; set; } } }
// Copyright 2021 Google LLC // // 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 agreed to in ...
namespace PicturesShop.Models.GenreController { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; public class AddGenrePicture { [Required] public int GenreId { get; set; } ...
using Machine.Specifications; using PlainElastic.Net.IndexSettings; using PlainElastic.Net.Utils; namespace PlainElastic.Net.Tests.Builders.IndexSettings { [Subject(typeof(HyphenationDecompounderTokenFilter))] class When_complete_HyphenationDecompounderTokenFilter_built { Because of = () => result ...
using System; using System.Xml.Linq; namespace Calamari.Azure.CloudServices.Integration.CloudServicePackage.ManifestSchema { public class FileDescription { public static readonly XName ElementName = PackageDefinition.AzureNamespace + "FileDescription"; private static readonly XName DataContent...
using LDFCore.Platform.Models; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace LDFCore.Platform.Extensions { public static class EnumExtensions { /// <summary> /// 获取枚举类型的Description说明 /// </summary> /...
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace AppFactu.Models { public class FraisSupplementaire { [Required(ErrorMessage = "Please provide an id")] public Guid Id { ...
namespace PaketLoadScripts #load "/home/justin/code/fsharp/GiraffeWebApp/GiraffeWebApp/.paket/load/netstandard1.2/Microsoft.AspNetCore.Http.Features.csx" #load "/home/justin/code/fsharp/GiraffeWebApp/GiraffeWebApp/.paket/load/netstandard1.2/Microsoft.Extensions.Configuration.Abstractions.csx"
using System; namespace Radical { /// <summary> /// Attribute specialized in adding description info to an enumeration type. /// </summary> [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1813:AvoidUnsealedAttributes"), AttributeUsage(AttributeTargets.Field, AllowMultiple =...
using RestSharp; using SparkAPI.Model; using SparkAPI.Security; using System; namespace SparkAPI { public class Spark { SparkRest api; public string Core { get; set; } public string AccessToken { get; private set; } //public Spark(string core) //{ // Core = ...
using System.Reflection; 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("MVCHoldem.Web")] [assembly: AssemblyDescri...
// <copyright file="Bretagnon.cs" company="Traced-Ideas, Czech republic"> // Copyright (c) 1990-2021 All Right Reserved // </copyright> // <author> vl </author> // <email></email> // <date>2021-09-01</date> // <summary>Part of Astro Observatory</summary> namespace AstroSharedOrbits.Orbits { /// <summary> /// B...
#region Blobber! // Blobber - Merges or embed referenced assemblies // https://github.com/picrap/Blobber // MIT License - http://opensource.org/licenses/MIT #endregion namespace Blobber.Relocators { using System; using System.Collections.Generic; using dnlib.DotNet; using dnlib.DotNet.Emit; using ...
// This file is part of Silk.NET. // // You may modify and distribute Silk.NET under the terms // of the MIT license. See the LICENSE file for details. using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; using System.Text; using Silk.NET.Core; using Silk.NET.Core.Native; using ...
 #if true using UnityEngine; [System.Serializable] public class MegaRopeStrandedMesher : MegaRopeMesher { Matrix4x4 tm; Matrix4x4 wtm; //Matrix4x4 mat; public int sides = 8; //public float radius = 1.0f; public int segments = 20; public float uvtwist = 0.0f; public float uvtilex = 1.0f; public...
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; namespace Force.DeepCloner.Helpers { internal static class DeepClonerExprGenerator { private static readonly ConcurrentDictionary<FieldInfo, bool> _readon...