text stringlengths 1 932k |
|---|
/*
LICENSE
-------
Copyright (C) 2007-2010 Ray Molenkamp
This source code is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this source code or the software it produces.
Permission is granted to anyone to us... |
using System;
using System.Windows.Forms;
namespace Sudoku
{
/// <summary>
/// Numpad Grid 9 Dialog Form
/// </summary>
public partial class NumpadGrid9Dialog : Form
{
/// <summary>
/// Value Field with default as -1.
/// </summary>
public int Value = -1;
/... |
using System;
using UnityEngine;
namespace WallStuff
{
public static class Extensions
{
public static string ToStringDecimal(this float num)
{
string result;
if (Math.Abs(num) < 1f)
{
result = Math.Round(num, 2).ToString("0.##");
... |
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Sockets... |
// <copyright file="UpdateRotationPlugIn.cs" company="MUnique">
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
// </copyright>
namespace MUnique.OpenMU.GameServer.RemoteView.World;
using System.Runtime.InteropServices;
using MUnique.OpenMU.GameLogic.Views.Charac... |
using System;
using System.Diagnostics.Contracts;
namespace Microsoft.Boogie;
public class CommandLineParseState
{
public string s;
public bool hasColonArgument;
public readonly string[] /*!*/
args;
public int i;
public int nextIndex;
public bool EncounteredErrors;
public readonly string ToolName;... |
/*
* 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 ... |
/***
* Пример реализации абстрактного класса Interactable
*/
using UnityEngine;
using VRCorp.VR;
[AddComponentMenu("VRCorp/VR/Examples/InteractiveChangeColor")]
public class InteractableExample : Interactable
{
private Material _material;
private Color defaultColor;
[SerializeField]private Color target... |
// Copyright (c) rubicon IT GmbH, www.rubicon.eu
//
// See the NOTICE file distributed with this work for additional information
// regarding copyright ownership. rubicon licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may not use this
// file except in compliance with the Lic... |
@using Zaghini.Mattia._5H.SecondaWeb
@using Zaghini.Mattia._5H.SecondaWeb.Models
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers |
using PawnRules.Data;
using PawnRules.Interface;
using PawnRules.Patch;
using Verse;
namespace PawnRules.Integration
{
internal static class RimHUD
{
public static bool HideGizmo { get; set; } = false;
public static string GetRules(Pawn pawn)
{
if (!Registry.IsActive) { re... |
namespace HearthDb.Enums
{
/* THIS FILE WAS GENERATED BY HearthDb.EnumsGenerator. DO NOT EDIT. */
public enum BlockType
{
ATTACK = 1,
CONTINUOUS = 2,
JOUST = 2,
POWER = 3,
SCRIPT = 4,
TRIGGER = 5,
DEATHS = 6,
PLAY = 7,
FATIGUE = 8,
... |
using System.Text;
namespace Aspose.Tasks.Cloud.Sdk.Model
{
public class ProjectListResponse : AsposeResponse
{
public ProjectList Projects { get; set; }
/// <summary>
/// Get the string presentation of the object
/// </summary>
/// <returns>String presentation ... |
@page "/"
@namespace BEditor.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
Layout = null;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BEditor</title>
<base href="~/" />
@*<lin... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Equinox.Domain.Events
{
public class TicketAddEvent : Core.Events.Event
{
public string TicketName { get; set; }
public string TicketNumber { get; set; }
public string CustomerName ... |
#region License
// Copyright (c) 2011, ClearCanvas Inc.
// All rights reserved.
// http://www.clearcanvas.ca
//
// This software is licensed under the Open Software License v3.0.
// For the complete license, see http://www.clearcanvas.ca/OSLv3.0
#endregion
using System.Collections.Generic;
using ClearCanvas.Common;
... |
using System.IO;
using CP77.CR2W.Reflection;
using FastMember;
using static CP77.CR2W.Types.Enums;
namespace CP77.CR2W.Types
{
[REDMeta]
public class BraindanceFastFlyEvents : LocomotionBraindanceEvents
{
public BraindanceFastFlyEvents(CR2WFile cr2w, CVariable parent, string name) : base(cr2w, parent, name) { }
... |
using System;
namespace IFire.Framework.CustomExceptions {
public class EntityNotFoundException : Exception {
public Type EntityType { get; set; }
public object Id { get; set; }
public EntityNotFoundException(Type entityType, object id)
: this(entityType, id, null) {
... |
using System;
namespace _01.SinoTheWalker
{
class SinoTheWalker
{
static void Main()
{
string[] input = Console.ReadLine().Split(':');
int hour = int.Parse(input[0]);
int minutes = int.Parse(input[1]);
int seconds = int.Parse(input[2]);
... |
using System;
using System.Threading.Tasks;
using Shouldly;
using Stove.Commands;
using Stove.Dapper.Repositories;
using Stove.Domain.Repositories;
using Stove.Domain.Uow;
using Stove.EntityFrameworkCore.Dapper.Tests.Domain;
using Stove.EntityFrameworkCore.Dapper.Tests.Domain.Events;
using Stove.Events.Bus;
using X... |
#region license
// Copyright (c) 2005 - 2007 Ayende Rahien (ayende@ayende.com)
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the abov... |
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Reflection;
using System.Text;
using TuesPechkin.Properties;
using SysPath = System.IO.Path;
namespace TuesPechkin
{
[Serializable]
public class Win32EmbeddedDeployment : EmbeddedDeployment
{
... |
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("Co... |
namespace FrontEndJesperPersson.Controller
{
using System.Collections.Generic;
using WebbShopJesperPersson;
using WebbShopJesperPersson.Model;
internal class CustomerController
{
private readonly WebbShopAPI api = new WebbShopAPI();
/// <summary>
/// Log in user.
/... |
using System;
using sysVentory.Model.Definitions;
namespace sysVentory.Events
{
/** Event arguments when the selected computer is changed */
public class SelectedComputerChangedEventArgs : EventArgs
{
public IComputer NewSelectedComputer { get; set; }
public SelectedComputerChangedEventAr... |
//------------------------------------------------------------------------------
// <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>
//---... |
//
// 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... |
//------------------------------------------------------------------------------
// <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>
//--... |
// <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... |
/******************************************
* AUTHOR: Rector
* CREATEDON: 2018-09-26
* OFFICIAL_SITE: 码友网(https://codedefault.com)--专注.NET/.NET Core
* DESCRIPTION: 用户信息实体类
******************************************/
//using DncZeus.Api.Entities;
using System;
namespace DncZeus.Api.ViewMode... |
namespace NextGenSoftware.OASIS.API.ONODE.WebAPI.Models.Avatar
{
public class ProviderKeyForAvatarParams
{
public string AvatarID { get; set; }
public string AvatarUsername { get; set; }
public string AvatarEmail { get; set; } //TODO: Finish implementing email versions of all Key Methods... |
using System;
namespace Adnc.Infr.Common.Extensions
{
public static class BooleanExtension
{
/// <summary>
/// A bool extension method that execute an Action if the value is true.
/// </summary>
/// <param name="this">The @this to act on.</param>
/// <param name="ac... |
// -----------------------------------------------------------------------
// <copyright file="ACLTest.cs" company="PlayFab Inc">
// Copyright 2015 PlayFab Inc.
// Copyright 2020 G-Research Limited
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in... |
using System;
using System.Reflection;
namespace NerdyMishka.Reflection
{
public interface IReflectionCache : IReflectionFactorySource, IDisposable
{
void Clear();
bool TryRemove(IReflectionTypeInfo typeInfo);
IReflectionTypeInfo GetOrAdd(Type type);
}
} |
using System;
using System.CodeDom.Compiler;
using System.Diagnostics;
using System.Runtime.Serialization;
namespace Microsoft.Maps.MapControl.WPF.PlatformServices
{
[GeneratedCode("System.Runtime.Serialization", "4.0.0.0")]
[DebuggerStepThrough]
[DataContract(Name = "Circle", Namespace = "http://dev.virt... |
/*
* THIS FILE WAS GENERATED BY PLOTLY.BLAZOR.GENERATOR
*/
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Text.Json.Serialization;
namespace Plotly.Blazor.Traces.BarPolarLib
{
/// <summary>
/// The Stream class.
... |
//------------------------------------------------------------------------------
// <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>
//---... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information
namespace DotNetNuke.Entities.Modules.Internal
{
using System;
using System.ComponentModel;
using DotNet... |
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See full license in the root of the repo.
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace OfficeAddinMicro... |
// Decompiled with JetBrains decompiler
// Type: CocoStudio.Model.DataModel.PanelObjectData
// Assembly: CocoStudio.Model, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 9A645332-034C-44D3-9062-5E94EDCB75FF
// Assembly location: C:\Program Files (x86)\Cocos\Cocos Studio 2\CocoStudio.Model.dll
using Co... |
namespace InlineMapping.NuGetHost;
public class Destination
{
public Guid Id { get; set; }
public string? Name { get; set; }
public DateTime When { get; set; }
} |
//Copyright © 2014 Sony Computer Entertainment America LLC. See License.txt.
using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace Sce.Atf.Controls.PropertyEditing
{
/// <summary>
/// Collection editing control</summary>
public cla... |
//========= Copyright 2016-2020, HTC Corporation. All rights reserved. ===========
using HTC.UnityPlugin.VRModuleManagement;
using System.Collections.Generic;
using UnityEngine;
namespace HTC.UnityPlugin.Vive
{
[ViveRoleEnum((int)TrackerRole.Invalid)]
public enum BodyRole
{
Invalid,
Head,... |
namespace Bookify.Common.Models
{
public class PersonAuthDto
{
public PersonDto PersonDto { get; set; }
public AuthTokenDto AuthTokenDto { get; set; }
}
} |
@model IEnumerable<IzendaHours.Models.Record>
@{
ViewBag.Title = "Index";
}
<h2>Recent Entries</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table id="timeTable" class="table table-responsive table-striped">
<thead>
<tr>
<th>
@Html.DisplayNameFor(model => mo... |
// *****************************************************************************
//
// © Component Factory Pty Ltd, 2006 - 2016. All rights reserved.
// The software and associated documentation supplied hereunder are the
// proprietary information of Component Factory Pty Ltd, PO Box 1504,
// Glen Waverley, Vic... |
/*
Copyright (c) 2015-2021 topameng(topameng@qq.com)
https://github.com/topameng/tolua
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 limitation the rights... |
using System;
using System.Linq;
using System.Linq.Expressions;
using Framework.Core;
using Framework.DomainDriven.BLL.Security;
using Framework.SecuritySystem;
using Framework.Workflow.Domain.Runtime;
using JetBrains.Annotations;
namespace Framework.Workflow.BLL
{
public class TaskInstanceMainSecurityProvider ... |
//
// AssignProjectConfigurationTest.cs
//
// Author:
// Ankit Jain (jankit@novell.com)
//
// Copyright 2009 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"), to deal in th... |
namespace Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20210210
{
using Microsoft.Azure.PowerShell.Cmdlets.Migrate.Runtime.PowerShell;
/// <summary>Query parameter to get fabric.</summary>
[System.ComponentModel.TypeConverter(typeof(FabricQueryParameterTypeConverter))]
public partial class Fabr... |
/*
* Axioma Equity API
*
* Allow clients to fetch Analytics through APIs.
*
* The version of the OpenAPI document: 3
* Contact: analytics.api.support@factset.com
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
using System;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
... |
// Copyright (c) 2012, Event Store LLP
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// Redistributions of source code must retain the above copyright notice,
// this list of condit... |
using Players;
using UI;
using UnityEngine;
namespace Classes.Elements
{
public abstract class BaseElementRun : ScriptableObject
{
public string id;
protected BaseElementRun(string id)
{
this.id = id;
}
public abstract void Develop(Player player);
... |
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using Csla;
using Csla.Data;
using ParentLoadSoftDelete.DataAccess;
using ParentLoadSoftDelete.DataAccess.ERLevel;
namespace ParentLoadSoftDelete.DataAccess.Sql.ERLevel
{
/// <summary>
/// DAL SQL Server implementat... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SHAN.Service
{
public interface INewsService
{
List<新闻DTO> List(新闻DTO dto);
新闻DTO GetDTO(int? Id);
新闻DTO Save(新闻DTO dto);
新闻DTO Del(新闻DTO dto);
}
} |
namespace nt.Server.Services.WebThree.Contracts.Herc1155.BalanceOf
{
using nt.Shared.Features.Base;
using nt.Shared.Features.WebThree;
using System.Collections.Generic;
using System.Numerics;
public class BalanceOfServiceResponse : BaseResponse
{
public int Balance { get; set; }
}
} |
using System;
using Newtonsoft.Json;
namespace Blog.Models
{
public class WorkHistory
{
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
[JsonProperty(PropertyName = "subTitle")]
public string SubTitle { get; set; }
[JsonProperty(PropertyName =... |
using Lazurite.ActionsDomain.Attributes;
using ProtoBuf;
using System.Linq;
namespace Lazurite.ActionsDomain.ValueTypes
{
[HumanFriendlyName("Переключатель")]
[ProtoContract]
public class ToggleValueType: ValueTypeBase
{
public static readonly string ValueON = true.ToString();
public s... |
#if UNITY_EDITOR
using UnityEditor;
using UnityEngine;
namespace Essentials.EditorTweaks
{
/// <summary>
/// Collection of tweaks to add features related save process of the project
/// </summary>
public class Save
{
/// <summary>
/// Saves the scene and the project.
/// <... |
// <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.
// </auto-generated>
namespace Microsoft.Azure.Management.Batch.Fluent.Model... |
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.IO;
namespace Sample.Host
{
internal class Program
{
public static void Main(string[] args)
{
... |
using System;
namespace RectangleBorder
{
class Program
{
static void Main(string[] args)
{
double x1 = double.Parse(Console.ReadLine());
double y1 = double.Parse(Console.ReadLine());
double x2 = double.Parse(Console.ReadLine());
double y2 = doub... |
/******************************************************************************
* Spine Runtimes License Agreement
* Last updated January 1, 2020. Replaces all prior versions.
*
* Copyright (c) 2013-2020, Esoteric Software LLC
*
* Integration of the Spine Runtimes into software or otherwise creating
* derivative... |
// 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;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Threading;
using ... |
/*
* 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 JetBrains.Annotations;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using Newtonsoft.Json;
using WireMock.Handlers;
using WireMock.Http;
using WireMock.Logging;
using WireMock.Matchers;
using WireMock.Matchers.Re... |
// 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... |
using System;
namespace TestASP.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
} |
namespace MassTransit.Events
{
using System;
using Riders;
public class HostReadyEvent :
HostReady
{
public HostReadyEvent(Uri hostAddress, ReceiveEndpointReady[] receiveEndpoints, RiderReady[] riders)
{
HostAddress = hostAddress;
ReceiveEndpoints = rece... |
// Copyright (c) Valdis Iljuconoks. All rights reserved.
// Licensed under Apache-2.0. See the LICENSE file in the project root for more information
using System;
using System.Diagnostics;
namespace DbLocalizationProvider.Abstractions
{
/// <summary>
/// Represents localizable resource
/// </summary>
... |
//------------------------------------------------------------------------------
// <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>
//--... |
#region License
// Procedural planet generator.
//
// Copyright (C) 2015-2018 Denis Ovchinnikov [zameran]
// 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... |
// Copyright (c) DataGate Project. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace DataGate.Services.Data.Storage.Contracts
{
using System;
using System.Threading.Tasks;
using DataGate.Services.Data.Common;
using Dat... |
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace IdentityAPI.Entities
{
public class AuthenticationDbContext : IdentityDbContext
{
public AuthenticationDbContext(DbContextOptions<AuthenticationDbContext> options) : base(options)
{
... |
using Microsoft.Owin.Infrastructure;
using Microsoft.Owin.Security;
using Microsoft.Owin.Security.OpenIdConnect;
using Owin;
using Sitecore.Abstractions;
using Sitecore.Diagnostics;
using Sitecore.Owin.Authentication.Configuration;
using Sitecore.Owin.Authentication.Extensions;
using Sitecore.Owin.Authentication.Pipel... |
namespace Pubs.SharedKernel.Constants
{
public static class RouteNames
{
public const string Home = nameof(Home);
public const string Privacy = nameof(Privacy);
public const string Login = nameof(Login);
public const string Logout = nameof(Logout);
public const string Lo... |
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(StateSwitcher))]
public abstract class BaseSwitcherListener : MonoBehaviour
{
protected StateSwitcher stateSwitcher;
private void Awake()
{
stateSwitcher = GetComponent<StateSwitc... |
using System;
using System.Collections.Specialized;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Input;
namespace MrMeeseeks.Windows.HamburgerMenu
{
[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = type... |
using System;
using System.Collections.Generic;
using BugLog.Application.Cases.Queries;
namespace BugLog.Application.Contacts.Queries
{
public class ContactDetailViewModel
{
public Guid Id { get; set; }
public Guid CustomerId { get; set; }
public string FirstName { get; set; }
p... |
//------------------------------------------------------------------------------
// <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 AGI.STKGraphics;
using AGI.STKObjects;
using AGI.Ui.Application;
using AGI.Ui.Core;
using AGI.Ui.Plugins;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;
namespac... |
using TomP2P.Extensions.Workaround;
namespace TomP2P.Core.P2P.Builder
{
public interface ISignatureBuilder<out T> where T : ISignatureBuilder<T>
{
/// <summary>
/// Indicates whether a message should be signed or not.
/// </summary>
bool IsSign { get; }
/// <summary>
... |
using System;
using System.Xml.Serialization;
using System.ComponentModel.DataAnnotations;
using BroadWorksConnector.Ocip.Validation;
using System.Collections.Generic;
namespace BroadWorksConnector.Ocip.Models
{
/// <summary>
/// Modify the system Third-Party IMP service attributes.
/// The response is eit... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BaseA : MonoBehaviour
{
public StateA gameStateA;
private void OnTriggerEnter(Collider otherA)
{
bool isEnemyA = otherA.TryGetComponent<EnemyA>(out var enemyA);//bool to know when enemy touches base
... |
// This is an open source non-commercial project. Dear PVS-Studio, please check it.
// PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
/* InSendMessageCode.cs -- return codes of InSendMessageEx function
Ars Magna project, http://arsmagna.ru */
#region Using directives
using JetBrains.Ann... |
// *** 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 System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Fruit : MonoBehaviour
{
public Fruit()
{
Debug.Log("1st Llamado constructor Fruta");
}
public void Chop()
{
Debug.Log("La fruta fue cortada");
}
public void SayHello()
{
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BolaoNet.WebApi.Integration.Boloes
{
public class ApostasRestantesIntegration :
Base.GenericIntegration<Domain.Entities.Boloes.ApostasRestantesUser>,
Domain.Interfaces.Serv... |
using System.ComponentModel;
namespace ListBox.Example
{
public class ItemViewModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private bool _IsChecked;
public bool IsChecked
{
get => _IsChecked;
set
... |
using Dexter.Configurations;
using Dexter.Databases.Games;
using Dexter.Extensions;
using Discord;
using Discord.WebSocket;
using System.Drawing;
using System.Text;
namespace Dexter.Helpers.Games
{
class GameMinesweeper : IGameTemplate
{
const string EmptyData = "???/???/???, XXX/X8X/XXX, 0, 3, 3, 8"... |
using xperdex.classes;
using xperdex.gui.PSI_Palette;
namespace xperdex.core
{
partial class PageProperties
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any r... |
//------------------------------------------------------------------------------
// <auto-generated>
// Este código se generó a partir de una plantilla.
//
// Los cambios manuales en este archivo pueden causar un comportamiento inesperado de la aplicación.
// Los cambios manuales en este archivo se sobrescr... |
/*
* 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 ... |
// 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.
namespace Microsoft.AspNetCore.Hosting
{
public static partial class EnvironmentName
{
public static readonly string Development;
... |
@model EmbeddedRavenDB.Models.Word
@{
ViewBag.Title = "Create";
}
<h2>Create</h2>
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
@using (Html.BeginForm())... |
using System.ComponentModel.DataAnnotations.Schema;
namespace BackupServiceAPI.Models {
[NotMapped]
public class PathOut {
public int ID { get; set; }
public NetworkSettings Network { get; set; }
public string Directory { get; set; }
public static PathOut FromPath(Path path) {
... |
using System;
using System.Collections.Generic;
using System.Net;
using Bam.Net.Data.Repositories;
using Bam.Net.Server;
using Bam.Net.ServiceProxy;
using CsQuery.Implementation;
namespace Bam.Net.Logging.Http.Data
{
[Serializable]
public class ResponseData: KeyedRepoData
{
public static ResponseDa... |
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut gener... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Infinispan.HotRod.Wrappers
{
public class VersionedValue
{
private Infinispan.HotRod.IVersionedValue<object> value;
internal VersionedValue(Infinispan.HotRod.IVersionedValue<object> value)
... |
using System;
using System.IO;
namespace IPA.Logging.Printers
{
/// <summary>
/// Prints log messages to the file specified by the name.
/// </summary>
public class PluginLogFilePrinter : GZFilePrinter
{
/// <summary>
/// Provides a filter for this specific printer.
/// </s... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.