text stringlengths 1 932k |
|---|
using System;
namespace Number_100_200
{
class Program
{
static void Main(string[] args)
{
int number = int.Parse(Console.ReadLine());
if (number < 100)
{
Console.WriteLine("Less than 100");
}
else if (number <= 200)
... |
// 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.Runtime.CompilerServices;
[assembly: InternalsVisibleTo(
"ef.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Conekton.ARMultiplayer.SpatialAnchor.Domain;
namespace Conekton.ARMultiplayer.SpatialAnchor.Infrastructure
{
public class StubAnchorTuner : MonoBehaviour, ISpatialAnchorTuner
{
private ISpatialAnchor _anchor = null;
... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Commerce.Server.Areas.Identity.Pages.Account
{
/// <summary>
... |
#if !NET461
using NUnit.Common;
using NUnitLite;
using System;
using System.Reflection;
namespace CK.Text.Virtual.Tests
{
public class Program
{
public static int Main( string[] args )
{
return new AutoRun( typeof( Program ).GetTypeInfo().Assembly )
.Execute( args, n... |
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. 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.ObjectModel;
using System.Linq;
using System.Threading.Tasks;
using System.Diagnostics.CodeAnalysis;
#if NET_45
using System.Collections.Generic;
#endif
namespace Octokit
{
/// <summary>
/// A client for GitHub's Repositories API.
/// </summary>
/// <remarks>
... |
using System;
using System.Collections.Generic;
using Dapper;
using System.Linq;
using DataAccess.Repository;
using DataAccess.Interface;
namespace DataAccess.ModelsViewModels
{
[Table("MABP")]
public class MABP : BaseModel
{
[Key]
public string ABPID { get; set; }
public string De... |
#define USE_MONITOR
using System.Threading;
namespace SDRSharp.Radio
{
#if USE_MONITOR
public sealed class SharpEvent
{
private bool _state;
private bool _waiting;
public SharpEvent(bool initialState)
{
_state = initialState;
}
public SharpEvent(... |
// Copyright (c) 2020 Yann Crumeyrolle. All rights reserved.
// Licensed under the MIT license. See LICENSE in the project root for license information.
using System;
namespace JsonWebToken
{
/// <summary>Represents an exception occuring while checking the validity of a JWK.</summary>
public class JwkValidat... |
// Copyright (c) Xenko contributors (https://xenko.com) and Silicon Studio Corp. (https://www.siliconstudio.co.jp)
// Distributed under the MIT license. See the LICENSE.md file in the project root for more information.
using Xenko.Core.Assets.Editor.ViewModel;
using Xenko.Assets.Presentation.AssetEditors.UIEditor.ViewM... |
using Breadcrumb;
using Breadcrumb.iOS;
using UIKit;
using Xamarin.Forms;
using Xamarin.Forms.Platform.iOS;
[assembly: ExportRenderer(typeof(BreadcrumbButton), typeof(BreadcrumbButtonRenderer))]
namespace Breadcrumb.iOS
{
public class BreadcrumbButtonRenderer :FrameRenderer
{
public new static void Ini... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
namespace SuperSeller.Web.Areas.Admin.Controllers
{
public class HomeController : AdminController
{
public IActionResult Index()
{
return View();
... |
using System;
namespace OpenSkyAPI.Model
{
/**
* Represents a bounding box of WGS84 coordinates (decimal degrees) that encompasses a certain area. It is
* defined by a lower and upper bound for latitude and longitude.
*/
public class BoundingBox
{
/**
* Create a bounding box, given the lo... |
using System.Text.Json;
using JT808.Protocol.Attributes;
using JT808.Protocol.Extensions;
using JT808.Protocol.Formatters;
using JT808.Protocol.Interfaces;
using JT808.Protocol.MessagePack;
namespace JT808.Protocol.MessageBody
{
/// <summary>
/// 从服务器APN。该值为空时,终端应使用主服务器相同配置
/// 2019版本
/// </summary>
... |
/*
* 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"); you ... |
// Url:https://leetcode.com/problems/rotated-digits
/*
788. Rotated Digits
Easy
X is a good number if after rotating each digit individually by 180 degrees, we get a valid number that is different from X. Each digit must be rotated - we cannot choose to leave it alone.
A number is valid if each digit remains a digi... |
// %BANNER_BEGIN%
// ---------------------------------------------------------------------
// %COPYRIGHT_BEGIN%
// <copyright file="MLBarcodeScannerNativeBindings.cs" company="Magic Leap">
// Copyright (c) 2018-present, Magic Leap, Inc. All Rights Reserved.
// </copyright>
// %COPYRIGHT_END%
// -----------------... |
using System;
using BasicWebServer.Demo.Services;
using BasicWebServer.Server.Attributes;
using BasicWebServer.Server.Controllers;
using BasicWebServer.Server.HTTP;
namespace BasicWebServer.Demo.Controllers
{
public class UsersController : Controller
{
private readonly UserService userService;
... |
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 Interfaz
{
public partial class FormCiudades : Form
{
public FormCiudades()
... |
using System.Windows.Forms;
namespace zPoolMiner.Interfaces
{
public interface IListItemCheckColorSetter
{
void LviSetColor(ListViewItem lvi);
}
} |
using UnityEngine;
namespace MG.TweenSystem
{
public static class LocalEulerAnglesZTween
{
public static Tween<float>
XRotateLocalZ(this GameObject gameObject, float from, float to, float duration) =>
Tween<float>.SetUp<TweenType>(gameObject).SetFrom(from).Initialize(duration, t... |
/*
* 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.Collections.Generic;
using System.Threading.Tasks;
using Orleans;
namespace Barker.Interfaces
{
public interface ITrendingHashtags : IGrainWithIntegerKey
{
Task Register(IHashtagMetrics hashtagMetrics);
Task<Dictionary<string, long>> GetTrending();
Task Reset();
}
} |
namespace P14_OldLibrary
{
using System;
public class StartUp
{
public static void Main()
{
const string textWhenBookIsNotThere = "The book you search is not here! \nYou checked {0} books.";
const string textWhenBookIsThere = "You checked {0} books and found it.";
... |
using BoomBang_RetroServer.Sessions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BoomBang_RetroServer.Game.Handlers
{
class FlowerPower : Handler
{
}
} |
//-------------------------------------------------------------------------------
// <copyright file="SingleArgumentTransitionActionHolderTest.cs" company="Appccelerate">
// Copyright (c) 2008-2017 Appccelerate
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file exce... |
using System.Collections.Generic;
public class CarManager
{
private Dictionary<int, Car> cars;
private Dictionary<int, Race> races;
private Garage garage;
public CarManager()
{
this.cars = new Dictionary<int, Car>();
this.races = new Dictionary<int, Race>();
this.garage = ... |
namespace Gu.Wpf.UiAutomation
{
public partial class UiElement
{
public Button AsButton() => new(this.AutomationElement);
public CheckBox AsCheckBox() => new(this.AutomationElement);
public ToggleButton AsToggleButton() => new(this.AutomationElement);
public ComboBox AsComboBo... |
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... |
//
// 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... |
// 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 regenerated.
namespace Microso... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//----------------------------------------... |
using System.Collections.Generic;
using MTDBFrameworkBase.Data;
namespace MTDBCreator.ViewModels.TreeView
{
public class TargetCollectionTreeNodeViewModel : TreeNodeViewModel
{
private readonly IEnumerable<Evidence> m_evidences;
public TargetCollectionTreeNodeViewModel(ICollection<Evidence> e... |
using System;
using RuneForge.Data.Components;
using RuneForge.Game.Buildings;
using RuneForge.Game.Buildings.Interfaces;
using RuneForge.Game.Components.Attributes;
using RuneForge.Game.Components.Implementations;
using RuneForge.Game.Entities;
using RuneForge.Game.Units;
using RuneForge.Game.Units.Interfaces;
name... |
namespace Frank.Libraries.Ubl;
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.8.3928.0")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "urn:... |
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using StackExchange.Redis;
namespace EFCache.Redis.Tests
{
[TestClass]
public class StackExchangeExtensionsTests
{
[TestMethod]
public void Set_should_not_throw_when_caching_null_object()
{
var... |
// Copyright (c) Adnan Umer. All rights reserved. Follow me @aztnan
// Email: aztnan@outlook.com
//
// 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.Collections.Generic;
using System.Text;
namespace Poisn.GraphQL.Shared.Entities
{
public class Customer
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Contact { get; set; }
... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Threading.Tasks;
using Microsoft.DotNet.XHarness.Common;
using Microsoft.DotNet.XHarness.Common.Logging;
using Microsoft.DotNet.XHarness.Common.Utilities;
using Microsoft.DotNet.XHarness.iOS... |
namespace Mews.Fiscalizations.Spain.Dto.XSD.SuministroInformacion
{
[System.SerializableAttribute]
[System.Xml.Serialization.XmlTypeAttribute(Namespace = "https://www2.agenciatributaria.gob.es/static_files/common/internet/dep/aplicaciones/es/aeat/ssii/fact/ws/SuministroInformacion.xsd")]
public class Cabec... |
using System;
using System.Linq;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Bot.Builder;
using Microsoft.Bot.Builder.BotFramework;
using Microsoft.Bot.Builder.Integration;
using Microsoft.Bot.Builder.Integration.AspNet.Core;
using Microsoft.Extensions.Configuration;
using M... |
// *** 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.Goog... |
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2019 iText Group NV
Authors: Bruno Lowagie, Paulo Soares, et al.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License version 3
as published by the Free Software Foundation wit... |
@using theblogcore.Models
@model LoginViewModel
@{
ViewBag.Title = "Log in";
}
<h2>@ViewBag.Title.</h2>
<div class="row">
<div class="col-md-8">
<section id="loginForm">
@using (Html.BeginForm("Login", "Account", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod.Post, new { @class = "form-... |
//------------------------------------------------------------------------------
// <auto-generated>
// このコードはツールによって生成されました。
// ランタイム バージョン:4.0.30319.42000
//
// このファイルへの変更は、以下の状況下で不正な動作の原因になったり、
// コードが再生成されるときに損失したりします
// </auto-generated>
//----------------------------------------------------------... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.VisualStudio.TextTemplating;
using System.IO;
using System.Runtime.Remoting.Messaging;
using CrmCodeGenerator.VSPackage.Model;
namespace CrmCodeGenerator.VSPackage.T4
{
public class Generator
{
public... |
@model FluiTec.AppFx.AspNetCore.Examples.AuthExample.Models.Admin.ClaimDeleteModel
<section id="maincontent" class="wrapper content-wrapper">
<header>
<h2>User claims management</h2>
</header>
<div class="container">
<section>
<h4>Delete claim</h4>
<hr />
... |
using FreeSql.Internal.Model;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace FreeSql.Internal.CommonProvider
{
public abstract class Select4Provider<T1, T2, T3, T4> : Select0Provider<ISelect<T1, T2, T3, ... |
using System;
namespace Mindmagma.Curses
{
public class DotnetCursesException : Exception
{
public DotnetCursesException()
{ }
public DotnetCursesException(string message) : base(message)
{ }
public DotnetCursesException(string message, Exception inner) : base(message... |
using System;
using System.Collections.Generic;
using Acs7;
using AElf.CrossChain.Cache.Application;
using AElf.CrossChain.Cache.Infrastructure;
using AElf.Types;
using Xunit;
namespace AElf.CrossChain.Cache
{
public class CrossChainDataProducerTest : CrossChainTestBase
{
private readonly IBlockCacheEn... |
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "l... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
// NuGet Packages
using Terminal.Gui;
using Terminal.Gui.Graphs;
namespace TG_Tpl_02_FirstWindow
{
public partial class AppGui : Window
{
public int Rc { get; set;} // For return code
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RestaurantDiscount
{
class RestaurantDiscount
{
static void Main(string[] args)
{
int numberOfPeope = int.Parse(Console.ReadLine());
string type... |
using System;
using System.Collections.Generic;
using System.Linq;
using JaySilk.Webhook.Common.Mvc;
namespace JaySilk.Webhook.Common.Mvc.Extensions
{
public class VerifyGitHubSignatureAttribute : VerifySignatureResourceFilterAttribute
{
public VerifyGitHubSignatureAttribute(string secret) :... |
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
namespace Nano... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(menuName ="Custom/Moment")]
public class SOMoment : ScriptableObject {
public int day;
public MomentType type;
}
public enum MomentType
{
EVENT, HAPPENING, BATTLE
} |
using System;
using System.Collections.Generic;
using System.Reflection;
namespace ResourceManager
{
public class ScannerOptions
{
public ScannerOptions(IEnumerable<Assembly> targetAssemblies, IEnumerable<Type> excludedTypes)
{
TargetAssemblies = targetAssemblies;
Exclu... |
//------------------------------------------------------------------------------
// <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 file="IClientParserAbstract.cs" company="Agile Flex Agency">
// Copyright © 2000-2020 by Agile Flex Agency. All rights reserved. Website: https://agile-flex.com
// </copyright>
// ... |
namespace MASA.BuildingBlocks.DDD.Domain.Repositories;
public class PaginatedOptions
{
public int Page { get; set; }
public int PageSize { get; set; }
public string? Sorting { get; set; }
} |
using CAFU.Core;
using StudyCafuRollABall.Domain.Structure;
namespace StudyCafuRollABall.Domain.UseCase
{
public interface IRenderScorePresenter : IPresenter
{
void Render(IRenderScoreStructure presentationScoreStructure);
}
} |
using System;
using System.CodeDom.Compiler;
using System.ComponentModel;
using System.Diagnostics;
using System.ServiceModel;
namespace Workday.Staffing
{
[GeneratedCode("System.ServiceModel", "4.0.0.0"), EditorBrowsable(EditorBrowsableState.Advanced), DebuggerStepThrough, MessageContract(IsWrapped = false)]
public... |
using System;
using System.Collections.Generic;
using System.Linq;
using FluentAssertions;
using Toggl.Foundation.Exceptions;
using Toggl.Foundation.Sync.Tests.Extensions;
using Toggl.Foundation.Sync.Tests.Helpers;
using Toggl.Foundation.Sync.Tests.State;
using Toggl.Foundation.Tests.Mocks;
using Toggl.Multivac;
using... |
using FluentValidation;
namespace AdventureWorks.Application.DataEngine.Production.Culture.Commands.DeleteCulture
{
public partial class DeleteCultureCommandValidator : AbstractValidator<DeleteCultureCommand>
{
public DeleteCultureCommandValidator()
{
RuleFor(v => v.CultureID).NotEm... |
using System;
using System.Collections.Generic;
using Jockusch.Common.Debugging;
using System.Collections;
using Newtonsoft.Json.Linq;
using System.Linq;
using System.Reflection;
namespace Jockusch.Common
{
public static class GenericAttributes
{
/// <summary>If the payload is a GenericAttribute, we actually d... |
using System;
using Newtonsoft.Json;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
/// <summary>
/// TradeFundBill Data Structure.
/// </summary>
[Serializable]
public class TradeFundBill : AlipayObject
{
/// <summary>
/// 该支付工具类型所使用的金额
/// </summary>
[... |
using College.ApplicationCore.Entities;
using College.ApplicationCore.Interfaces;
using College.ServerDAL.Persistence;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
namespace College.ServerDAL
{
public class ProfessorDA... |
// =============================
// Email: info@ebenmonney.com
// www.ebenmonney.com/templates
// =============================
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DAL.Repositories;
using DAL.Repositories.Interfaces;
namespace DAL
... |
//------------------------------------------------------------------------------
// <auto-generated>
// Этот код был создан программным средством.
// Версия среды выполнения: 4.0.30319.42000
//
// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
// код создан повто... |
@model FIT5032_Week08A.Models.Rating
@{
ViewBag.Title = "Details";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Details</h2>
<div>
<h4>Rating</h4>
<hr />
<dl class="dl-horizontal">
<dt>
@Html.DisplayNameFor(model => model.Value)
</dt>
<dd>
@Htm... |
using CTS.Com.Domain.Helper;
using CTS.W._150501.Models.Resources.Strings;
namespace CTS.W._150501.Models
{
/// <summary>
/// W150501
/// </summary>
public class W150501
{
/// <summary>
/// Áp dụng resource
/// </summary>
public static void ApplyResources()
... |
using System;
using System.Collections;
using System.Collections.Generic;
using Castle.Tools;
#if ODIN_INSPECTOR
using Sirenix.OdinInspector;
#endif
using UnityEngine;
namespace Castle.Core.UI
{
public class CastlePopupHandler : MonoBehaviour
{
public Canvas canvas;
public CastlePopup[] popups;... |
using System;
using System.Collections.Generic;
using System.Text;
namespace dpz3.XOrm {
/// <summary>
/// 独立表定义
/// </summary>
public class StandaloneTable : dpz3.Object {
/// <summary>
/// 获取或设置名称
/// </summary>
public string Name { get; set; }
/// <summary... |
#if !NETSTANDARD13
/*
* 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
... |
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading.Tasks;
using IdentityModel;
using IdentityServer4;
using IdentityServer4.Models;
using IdentityServer4.Test;
using IdentityServerHost.Quickstart.UI;
namespace ShareYo... |
// Copyright 2021 Niantic, Inc. All Rights Reserved.
using System.Collections.Generic;
using Niantic.ARDK.AR.Camera;
using Niantic.ARDK.Utilities;
using UnityEngine;
namespace Niantic.ARDK.AR.Awareness
{
internal abstract class _AwarenessBufferBase: IAwarenessBuffer
{
internal _AwarenessBufferBase
(
... |
// <copyright file="PrometheusExporter.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.... |
namespace P01_BoxOfT
{
using System.Collections.Generic;
public class Box <T> : IBox<T>
{
private Stack<T> elements;
public Box()
{
this.elements = new Stack<T>();
}
public void Add(T element)
{
this.elements.Push(element);
... |
#nullable enable
using System;
using System.Text.RegularExpressions;
namespace Edanoue.EH.Scene
{
/// <summary>
/// Loader 内部で使用する専用の構造体
/// 初回アクセス時にBuildSettings に存在するシーンの一覧をキャッシュします
/// </summary>
internal readonly struct NativeSceneInfo : IEquatable<NativeSceneInfo>
{
internal read... |
// Copyright (c) 2022 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.
// This code is generated by tool. DO NOT EDIT.
using System.Net;
using System.IO;
using System.Text.Json;
using AccelByte.Sdk.Api.Basic... |
// *** 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... |
@using Test.Framework.Areas.HelpPage.ModelDescriptions
@model ComplexTypeModelDescription
@Html.DisplayFor(m => m.Properties, "Parameters") |
namespace SqlStreamStore
{
internal class HttpError
{
public string Title { get; set; }
public string Detail { get; set; }
public string Type { get; set; }
}
} |
//------------------------------------------------------------------------------
// <auto-generated />
//
// This file was automatically generated by SWIG (http://www.swig.org).
// Version 3.0.12
//
// Do not make changes to this file unless you know what you are doing--modify
// the SWIG interface file instead.
//----... |
using Uno.Build.Targets.Generators;
using Uno.Compiler.API;
using Uno.Compiler.API.Backends;
using Uno.Compiler.Backends.CPlusPlus;
using Uno.Compiler.Graphics.OpenGL;
using Uno.Compiler.Foreign;
namespace Uno.Build.Targets
{
public class NativeBuild : BuildTarget
{
public override string Identifier =... |
// <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... |
using System;
using Unity.Collections;
using Unity.Collections.LowLevel.Unsafe;
namespace Unity.Entities
{
public unsafe partial struct EntityManager
{
// ----------------------------------------------------------------------------------------------------------
// PUBLIC
// ------------... |
using xFNet.Interfaces.Repositories;
namespace Topppro.Interfaces.Repositories
{
public interface IBulletRepository :
IRepository<Topppro.Entities.Bullet>
{
}
} |
// <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.Client20183
{
using Microsoft.Rest;
using Models;
using Newtonsoft.Json;
using System.Collect... |
/*
* 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.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("Sys... |
using System.IO;
namespace Chutzpah
{
public static class EmbeddedManifestResourceReader
{
public static Stream GetEmbeddedResoureStream<T>(string path)
{
return typeof (T).Assembly.GetManifestResourceStream(typeof(T), path);
}
public static string GetEmbeddedResou... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LionFire.Text.Parsing
{
public class StringParsing
{
public static string SplitOne(ref string str, char separator) // Move to LionFire.Text.Parsing?
{
if (!str.Contains(separa... |
using Fazenda.Dominio.Excecoes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Fazenda.Dominio.Features.Fornecedores
{
public class FornecedorNomeInvalidoExcecao : ExcecaoNegocio
{
public FornecedorNomeInvalidoExcecao() : b... |
public static class Solution
{
//正则表达式匹配
public static bool IsMatch(string s, string p)
{
int slen = s.Length;
int plen = p.Length;
if (slen == 0 && plen == 0)
{
return true;
}
bool[,] dp = new bool[slen + 1, plen + 1];
dp[0, 0] = true;
... |
// *** 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... |
// Copyright (C) 2014 dot42
//
// Original filename: Android.View.Accessibility.cs
//
// 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 EncompassRest.Loans.Enums;
namespace EncompassRest.Loans
{
/// <summary>
/// AdditionalStateDisclosure
/// </summary>
[Entity(PropertiesToAlwaysSerialize = nameof(DisclosureName) + "," + nameof(StateCode))]
public sealed partial class AdditionalStateDisclosure : DirtyExtensibleObject, IIdenti... |
// 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.Runtime.InteropServices;
internal static partial class Interop
{
internal static partial class Advapi32
{
[LibraryImport(Interop.Libraries... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.