text stringlengths 1 932k |
|---|
using System;
using System.ComponentModel.DataAnnotations;
using Design101.Entities.Resources;
using Framework.Entities;
using Framework.Entities.Resources;
namespace Design101.Entities
{
[MetadataType(typeof(User_Metadata))]
public partial class User : BaseEntity
{
public override int Id
... |
#region Copyright (C) 2017-2021 Yaroslav Tatarenko
// Copyright (C) 2017-2021 Yaroslav Tatarenko
// This product uses MediaInfo library, Copyright (c) 2002-2021 MediaArea.net SARL.
// https://mediaarea.net
#endregion
using System;
using System.Drawing;
namespace MediaInfo.Model
{
/// <summary>
/// Describes p... |
// Licensed to Spectre Systems AB under one or more agreements.
// Spectre Systems AB licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
// ---------------------------------------------------------------------
// Copyright (c) 2015 Matteo Pagani, licensed... |
@using IndeavrExam.Common
@model IndeavrExam.Web.ViewModels.Games.ListAllGamesViewModel
@{
this.ViewData["Title"] = "All games";
}
<div class="text-center">
<h1>@this.ViewData["Title"]</h1>
</div>
<div class="row">
@foreach (var game in this.Model.Games)
{
<div class="card col-md-4">
... |
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framew... |
using System.Collections.Generic;
namespace RobotService.Models.Procedures
{
using RobotService.Models.Robots.Contracts;
public class Polish : Procedure
{
private const int DecreaseHappiness = 7;
public Polish()
{
this.robots = new HashSet<IRobot>();
}
... |
namespace MultipleImplementation
{
public class Citizen : IPerson, IBirthable, IIdentifiable
{
public Citizen(string name, int age, string birthdate, string id)
{
this.Name = name;
this.Age = age;
this.Birthdate = birthdate;
this.Id = id;
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GSAKWrapper.UIControls.FormulaSolver.FormulaInterpreter.Functions.NumberFunctions
{
public class IteratedCrossTotal: Functor
{
public override object Execute(object[] args, ExecutionContext ctx)
{
... |
/*
* Copyright 2010-2013 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 Receive
{
class Program
{
static void Main()
{
// mimics Arduino calling structure
var receive = new Receive {RunLoop = true};
receive.Setup();
while (receive.RunLoop) receive.Loop();
receive.Exit();
}
}
} |
// c:\program files (x86)\windows kits\10\include\10.0.22000.0\um\d3d12umddi.h(1258,9)
namespace DirectN
{
public enum D3D12DDI_DESCRIPTOR_RANGE_TYPE
{
D3D12DDI_DESCRIPTOR_RANGE_TYPE_SRV = 0,
D3D12DDI_DESCRIPTOR_RANGE_TYPE_UAV = 1,
D3D12DDI_DESCRIPTOR_RANGE_TYPE_CBV = 2,
D3D12DD... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MXTires.Microdata.Validators;
using Newtonsoft.Json;
namespace MXTires.Microdata.Actions.UpdateActions
{
/// <summary>
/// The act of editing a recipient by removing one of its objects.
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Cofoundry.Domain
{
/// <summary>
/// Contains all the basic information required to render out an image asset
/// to a page, including all the data needed to construct an asset file
/// url.
... |
using System;
using System.Collections.Generic;
using Android.Runtime;
namespace Android.Text {
// Metadata.xml XPath interface reference: path="/api/package[@name='android.text']/interface[@name='Spanned']"
[Register ("android/text/Spanned", "", "Android.Text.ISpannedInvoker")]
public partial interface ISpanned :... |
using LiteNetLib.Utils;
using System.Collections.Generic;
namespace MultiplayerARPG.MMO
{
public struct SocialCharactersResp : INetSerializable
{
public List<SocialCharacterData> List { get; set; }
public void Deserialize(NetDataReader reader)
{
List = reader.GetList<Socia... |
using System;
using Newtonsoft.Json;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
/// <summary>
/// ConditionItemPattern Data Structure.
/// </summary>
[Serializable]
public class ConditionItemPattern : AlipayObject
{
/// <summary>
/// 智慧餐厅用户规则操作符,EQ表示相等,GT表示大于,GTEQ表示... |
using System;
using System.IO;
namespace Spoj.Library.IO
{
// This is based in part on submissions from https://www.codechef.com/status/INTEST.
// It's assumed the input is well-formed, so if you try to read an integer when no
// integers remain in the input, there's undefined behavior (infinite loop).
... |
using Dfc.ProviderPortal.ChangeFeedListener.Helpers;
using Newtonsoft.Json;
using System;
namespace Dfc.ProviderPortal.ChangeFeedListener.Models
{
[JsonConverter(typeof(AzureSearchProviderModelJsonConverter))]
public class AzureSearchProviderModel
{
public Guid? id { get; set; }
public in... |
using System;
namespace TDD.Legacy
{
public class Person
{
public string Name { get; set; }
public string Surname { get; set; }
public bool IsManager { get; set; }
public DateTime Hired { get; set; }
}
} |
// Copyright (c) 2012-2020 fo-dicom contributors.
// Licensed under the Microsoft Public License (MS-PL).
namespace Dicom.Imaging.Codec
{
public class DicomRleCodecImpl : DicomRleCodec
{
public override void Encode(
DicomPixelData oldPixelData,
DicomPixelData newPixelData,
... |
@{ Layout = ""; }
<!DOCTYPE html>
<!--
* CoreUI - Free Bootstrap Admin Template
* @@version v2.0.0
* @@link https://coreui.io
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
* Licensed under MIT (https://coreui.io/license)
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible... |
@using Microsoft.AspNetCore.Mvc.Localization
@model string
@inject IViewLocalizer Localizer
@using Microsoft.AspNetCore.Authorization
@using AdminUI.STS.Identity.Configuration.Constants
@inject IAuthorizationService AuthorizationService
@if ((await AuthorizationService.AuthorizeAsync(User, AuthorizationConsts.Adminis... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.3603
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//---... |
namespace DestroyNobots.Engine.Input
{
public enum ActionKey
{
MultiSelect
}
} |
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.HumanResources
{
[GeneratedCode("System.Xml", "4.6.1590.0"), DesignerCategory("code"), DebuggerStepThrou... |
using System;
using System.ComponentModel;
using EfsTools.Attributes;
using EfsTools.Utils;
using Newtonsoft.Json;
using EfsTools.Items.Data;
namespace EfsTools.Items.Nv
{
[Serializable]
[NvItemId(1166)]
[Attributes(9)]
public class Wcdma1900NonbypassTimer
{
[ElementsCount(1)]
[Elem... |
using FubuMVC.Core.Continuations;
namespace FubuMVC.Core.Security.Authentication
{
public interface IAuthenticationRedirect
{
bool Applies();
FubuContinuation Redirect();
}
} |
@model AllInOne_blog.Models.SetPasswordViewModel
@{
ViewBag.Title = "Create Password";
}
<h2>@ViewBag.Title.</h2>
<p class="text-info">
You do not have a local username/password for this site. Add a local
account so you can log in without an external login.
</p>
@using (Html.BeginForm("SetPassword", "Man... |
//------------------------------------------------------------------------------
// <auto-generated>
// このコードはツールによって生成されました。
// ランタイム バージョン:4.0.30319.42000
//
// このファイルへの変更は、以下の状況下で不正な動作の原因になったり、
// コードが再生成されるときに損失したりします。
// </auto-generated>
//---------------------------------------------------------... |
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using osu.Shared;
using osu_database_reader.BinaryFiles;
using osu_database_reader.Components.Beatmaps;
using osu_LiveDisplay.Various;
using System;
using System.IO;
using System.Net;
namespace osu_LiveDisplay
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Itera.Fagdag.November.Validation.Contracts
{
public interface IFileFormatValidation
{
bool IsImageType(string fileName);
bool IsExcelType(string fileName);
}
} |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace SplitAndMerge
{
public partial class Utils
{
public static string GetPathDetails(FileSystemInfo fs, string ... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class SceneController : MonoBehaviour
{
public static int mainMenuSceneNumber = 0;
public static int gameSceneNumber = 1;
public static int highScoreSceneNumber = 2;
// Start is ca... |
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using FluentAssertions;
using Futurum.Core.Result;
using Futurum.Core.Tests.Helper.Result;
using Xunit;
namespace Futurum.Core.Tests.Result;
public class ResultFlatMapTests
{
private const string ErrorMessage1 = "ERROR_MESSAGE_... |
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
// Ported from shared/wtypes.h in the Windows SDK for Windows 10.0.19041.0
// Original source is Copyright © Microsoft. All rights reserved.
using NUnit.Framework;
using Sy... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// Perform simple animations on a game object such as spinning and bobbing.
public class GameObjectSimpleAnimation : MonoBehaviour
{
[Tooltip("Frequency at which the item will move up and down")]
public float verticalBobFrequency =... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CipherPark.CryptioTools.CoinbasePro.IntegrationTests
{
public static class LinqExtensions
{
public static bool IsUniqueOn<TSource, TKey>(this IEnumerable<TSource> source,
... |
// Copyright © 2017 - 2018 Chocolatey Software, Inc
// Copyright © 2011 - 2017 RealDimensions Software, 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
//
// http://www.apache... |
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Net;
using System.Reflection;
using Orleans.Runtime;
#if CLUSTERING_ADONET
namespace Orleans.Clustering.AdoNet.Storage
#elif PERSISTENCE_ADONET
namespace Orleans.Persistence.AdoNet.Storage
#elif REMINDERS_ADONET
namespa... |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections.Specialized;
namespace Battleship.Constants
{
enum AttackResult
{
Unknown,
Miss,
Hit
}
enum UnitHealth
{
Fresh,
Hit,
Destroyed
}
e... |
using HarmonyLib;
using MoonSharp.Interpreter;
using System;
using System.IO;
using System.Xml;
using UnityEngine;
static class LuaPowerUpgrades
{
static public void AddUpgrade(string name, string abbreviation, string description, string check, string effect){
if (LuaPowerData.customUpgrades.ContainsKey(name)) {
... |
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public enum TestEnum
{
TestEnum1,
TestEnum2,
TestEnum3
}
[System.Serializable]
public class TestListElement
{
public string m_id;
public TestEnum m_type;
public int m_quantity;
}
[System.Serializable]
public class... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using IdentityServer4.EntityFramework.Options;
using Microsoft.AspNetCore.ApiAuthorization.IdentityServer;
using Microsoft.EntityFrameworkCore;
using Micr... |
namespace PlayTennis.Data
{
using System;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using PlayTennis.Data.Common;
public class DbQueryRunner : IDbQueryRunner
{
public DbQueryRunner(ApplicationDbContext context)
{
this.Context = context ?? t... |
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("03... |
using jQueryApi;
using jQueryApi.UI.Widgets;
using System;
using System.Collections;
using System.Html;
using System.Runtime.CompilerServices;
namespace Serenity
{
public abstract partial class EntityDialog<TEntity, TOptions> : TemplatedDialog<TOptions>
where TEntity : class, new()
where TOptions ... |
/*
* Copyright (c) 2022 nifanfa, This code is part of the OS-Sharp licensed under the MIT licence.
*/
using System.Collections.Generic;
using System.Windows.Forms;
using OS_Sharp.FileSystem;
using OS_Sharp.Misc;
namespace OS_Sharp.GUI
{
internal class Form
{
public static List<Form> Forms;
publ... |
using CloudNative.CloudEvents;
using CloudNative.CloudEvents.SystemTextJson;
using FaasNet.EventMesh.Runtime.Extensions;
namespace FaasNet.EventMesh.Runtime.Messages
{
public class PublishMessageRequest : Package
{
#region Properties
public string ClientId { get; set; }
public string ... |
public enum ShaderPropertyType // TypeDefIndex: 3334
{
// Fields
public int value__; // 0x0
public const ShaderPropertyType Color = 0;
public const ShaderPropertyType Vector = 1;
public const ShaderPropertyType Float = 2;
public const ShaderPropertyType Range = 3;
public const ShaderPropertyType Texture = 4;
} |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DirtBlock : Block
{
public Vector2[,] myUVs =
{
/*TOP*/ {new Vector2( 0.125f, 0.9375f ), new Vector2( 0.1875f, 0.9375f),
new Vector2( 0.125f, 1.0f ),new Vector2( 0.1875f, 1.0f... |
/*
* 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 ReSharperReports.Options
{
/// <summary>
/// The defined set of arguments which can be passed in from the command line
/// </summary>
public class MainOptions
{
/// <summary>
/// Gets or sets the transform function
/// </summary>
public TransformSubOptions ... |
using JHipsterNet.Core.Pagination;
using Microsoft.AspNetCore.Http;
using Newtonsoft.Json;
namespace Carlos.Web.Rest.Utilities
{
public static class PaginationUtil
{
private const string _XTotalCountHeaderName = "X-Total-Count";
private const string _XPaginationHeaderName = "X-Pagination";
... |
using System.IO;
namespace SourceLink
{
public static class FileUtil
{
public static StreamWriter OpenWrite(string file) {
return new StreamWriter(File.Open(file, FileMode.Create, FileAccess.Write, FileShare.None));
}
}
} |
//
// Model Generated on Wed, 17 Jul 2019 14:41:14 GMT for FHIR v1.0.2
//
// Generated Shared Enumeration: ResourceType
// Generated Shared Enumeration: AdministrativeGender
// Generated Shared Enumeration: FHIRDefinedType
// Used in model class (type): ElementDefinition.type.code
// Generated Shared Enumeration... |
using System.Collections.Generic;
namespace Store.Web.App
{
public class OrderModel
{
public int Id { get; set; }
public OrderItemModel[] Items { get; set; } = new OrderItemModel[0];
public int TotalCount { get; set; }
public decimal TotalPrice { get; set; }
public ... |
using System.Threading.Tasks;
namespace GRUBSCHOOL.Infra.Data.Interfaces
{
public interface IUnitOfWork
{
Task<bool> Commit();
Task Rollback();
}
} |
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using System.Threading.Tasks;
using Vahti.DataBroker.AlertHandler;
using Vahti.DataBroker.Configuration;
using Vahti.DataBroker.DataProvider;
using Vahti.Sh... |
using MaterialSkin;
using MaterialSkin.Controls;
using System;
using System.Media;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace Franco28Tool.Engine
{
[ComVisible(false)]
public partial class OkInfo : MaterialForm
{
private readonly MaterialSkinManager MaterialSkinMa... |
using Mirai.CSharp.HttpApi.Models.ChatMessages;
using Mirai.CSharp.HttpApi.Models.EventArgs;
using Mirai.CSharp.HttpApi.Session;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Theresa3rd_Bot.Business;
using Theresa3rd_Bot.Model.PO;
using Theresa3rd_Bot.Type;
using Theresa3rd_Bot.Ut... |
using System;
using System.Linq;
using System.Diagnostics;
using System.CodeDom.Compiler;
using System.Reflection;
namespace Eto.Parse.Tests
{
public static class Helper
{
public static T Create<T>(string code, string className, params string[] referencedAssemblies)
{
using (var csharp = new Microsoft.CSharp.... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace WAGOTemplate
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles... |
using System.ComponentModel;
namespace WalletWasabi.JsonConverters.Bitcoin
{
public class DefaultValueScriptAttribute : DefaultValueAttribute
{
public DefaultValueScriptAttribute(string json) : base(ScriptJsonConverter.Parse(json))
{
}
}
} |
// 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.Diagnostics;
using Xunit;
namespace System.Numerics.Tests
{
public static class Driver
{
... |
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("TRL... |
#if THUNDERKIT_CONFIGURED
using global::RoR2;
namespace PassivePicasso.ThunderKit.Proxy.RoR2
{
public partial class EventOnBodyDeaths : global::RoR2.EventOnBodyDeaths {}
}
#endif |
using System.Collections.Generic;
namespace CovidDataLake.Kafka.Consumer.Configuration
{
public class KafkaConsumerConfiguration
{
public IEnumerable<KafkaInstance> Instances { get; set; }
public string GroupId { get; set; }
public string Topic { get; set; }
}
} |
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("Get... |
@{
ViewData["Title"] = "User";
}
<div id="GridDiv"></div>
<script type="text/javascript">
jQuery(function () {
new Serene.Administration.UserGrid($('#GridDiv'), {
});
Q.initFullHeightGridPage($('#GridDiv'));
});
</script> |
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEditor.UIElements;
using UnityEngine.UIElements;
namespace Unity.UI.Builder
{
internal class IntegerStyleField : StyleField<int>
{
static readonly string k_DraggerFieldUssClassName = "unity-style-field__dra... |
using ESC_POS_USB_NET.Enums;
namespace ESC_POS_USB_NET.Interfaces.Command
{
interface IBarCode
{
byte[] Code128(string code,Positions printString);
byte[] Code39(string code, Positions printString);
byte[] Ean13(string code, Positions printString);
byte[] PrintBarcode(BarcodeTy... |
/*
* 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 Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using OrderService.V2.Models;
namespace OrderService.V2.Controllers
{
/// <summary>
/// Represents a RESTful people service.
/// </summary>
[ApiController]
[ApiVersion( "2.0" )]
[Route( "api/v{version:apiVersion}/[controller]" )... |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
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.Medi... |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.IO;
using System.Runtime.InteropServices;
using System.Text;
using Ssz.Utils;
using Ssz.Utils.Wpf;
using Microsoft.Win32;
namespace Ssz.Utils.Wpf
{
public class RecentFile
{
#... |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
/... |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.34011
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//--... |
using Many.Validators.Tests.TestCaseSources;
using NUnit.Framework;
using System;
namespace Many.Validators.Tests
{
[TestFixture]
internal partial class NegativeTests: BaseTests
{
[TestCaseSource(typeof(NumericNegativeTestCaseSources), nameof(NumericNegativeTestCaseSources.Int16))]
[TestCa... |
namespace BullseyeTests.Infra
{
using System.IO;
public static class TextWriterExtensions
{
public static string Read(this TextWriter writer)
{
writer.Flush();
return writer.ToString();
}
}
} |
// The MIT License (MIT)
//
// Copyright (c) 2014-2018, Institute for Software & Systems Engineering
// Copyright (c) 2018, Pascal Pfeil
//
// 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 Softwa... |
using System;
namespace PuertsStaticWrap
{
public static class UnityEngine_ControllerColliderHit_Wrap
{
[Puerts.MonoPInvokeCallback(typeof(Puerts.V8ConstructorCallback))]
private static IntPtr Constructor(IntPtr isolate, IntPtr info, int paramLen, long data)
{
try
... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Node
{
public int[,] BoardCopy = new int[8, 8];
public int i = 0;
public int j = 0;
public int Score = 0;
public ArrayList PossibleI = new ArrayList();
public ArrayList PossibleJ = new ArrayList();
} |
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by coded UI test builder.
// Version: 10.0.0.0
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generat... |
//------------------------------------------------------------------------------
// <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 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... |
using System;
using System.Collections.Generic;
using System.Text;
namespace EdFi.RtI.Core.Errors
{
public class UnsupportedDomainOperationException : DomainException
{
public UnsupportedDomainOperationException(string methodName, string startupMode)
: base($"{methodName} method is not sup... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ChatBotForSupport.DTO
{
public class MessageDictionary
{
//id пользователя в Телеграм (отправивший обращение)
public long UserId { get; set; }
//id сообщения об... |
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using OpenTK;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Input;
using os... |
// ----------------------------------------------
// <copyright file="NdisApi.TRANSPORT_LAYER_FILTER.cs" company="NT Kernel">
// Copyright (c) 2000-2018 NT Kernel Resources / Contributors
// All Rights Reserved.
// http://www.ntkernel.com
// ndisrd@ntkern... |
using System;
using UnityEngine.Playables;
using UnityEngine.Timeline;
namespace UnityEngine.FrameRecorder.Timeline
{
/// <summary>
/// What is it: Implements a Timeline Clip asset that can be inserted onto a timeline track to trigger a recording of something.
/// Motivation: Allow Timeline to trigger reco... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.Arcade.Common.Desktop
{
public partial class BuildTask
{
static BuildTask()
{
AssemblyResolver.Enable();
}
}
} |
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Aspose" file="ReminderTrigger.cs">
// Copyright (c) 2016-2020 Aspose.Email for Cloud
// </copyright>
// <summary>
// Permission is hereby granted, free of charge, to any per... |
#if WINDOWS_UWP
using System.IO;
using System.Threading.Tasks;
using Windows.Storage;
using System;
using System.Collections;
namespace Unity3MXB.Loader
{
public class StorageFolderLoader : ILoader
{
private StorageFolder _rootFolder;
public Stream LoadedStream { get; private set; }
public StorageFolderLoade... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Threading;
using System.Threading.Tasks;
using Microsoft.IdentityModel.Protocols;
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
namespace Microsoft.AspNetCore... |
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using SharpDiff.FileStructure;
using File = System.IO.File;
namespace SharpDiff.Tests
{
[TestFixture]
public class UnicodeBomTests
{
readonly string fileOneContent = read_text("Fixtures\\file_with_bom.tx... |
namespace Squalr.Engine.Utils
{
using System;
using System.IO;
using System.IO.Compression;
/// <summary>
/// Static class to help with compression and decompression.
/// </summary>
public static class Compression
{
/// <summary>
/// Compresses the provided bytes via gz... |
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See the LICENSE file in the project root for full license information.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text;
using System.Runtime.Serialization;
us... |
// *****************************************************************************
//
// © Component Factory Pty Ltd 2012. All rights reserved.
// The software and associated documentation supplied hereunder are the
// proprietary information of Component Factory Pty Ltd, 17/267 Nepean Hwy,
// Seaford, Vic 3198, A... |
using System;
using System.Reflection;
namespace Infrastructure.AssemblyLoader
{
public abstract class AssemblyInfo : IAssemblyInfo
{
#region Private member variables
private readonly string _name;
private readonly Version _version;
private readonly Assembly _assembly;
#... |
/*
* $Id$
*
* This file is part of the iText (R) project.
* Copyright (c) 1998-2016 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 th... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.