content stringlengths 23 1.05M |
|---|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using UnityEngine;
using UnityEngine.Serialization;
using UnityEngine.UI;
public class BoardScript : MonoBehaviour
{
public Text hintText;
public Sprite black;
public Sprite white;
public static bo... |
using Curiosity.Configuration;
using Curiosity.Tools;
namespace Curiosity.Hosting
{
/// <summary>
/// Basic configuration for Marvin's app.
/// </summary>
public interface ICuriosityAppConfiguration: IValidatableOptions, ILoggableOptions
{
/// <summary>
/// Application name.
... |
using System;
namespace Joe.Business.Resource
{
public interface IResourceProvider
{
void FlushResourceCache();
string GetResource(string Name, string type);
}
}
|
using SwfLib.ClipActions;
using SwfLib.Data;
namespace SwfLib.Tags.DisplayListTags {
public class PlaceObject2Tag : PlaceObjectBaseTag {
public bool HasClipActions { get; set; }
public bool HasClipDepth { get; set; }
public bool HasName { get; set; }
public bool Has... |
// Copyright 2014 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using BenchmarkDotNet.Attributes;
using NodaTime.Calendars;
#if !V1_0 && !V1_1 && !V1_2
namespace NodaTime.Benchmarks.NodaTimeTests.Calendars
{
publ... |
using Microsoft.VisualStudio.TestTools.UnitTesting;
using ParkingLot.BusinessInterfaces;
using ParkingLot.Business;
namespace ParkingLotTest.Utils
{
[TestClass]
public class SlotTest
{
private ISlot _slot;
[TestInitialize]
public void SetUp()
{
_slot = new Slot(... |
namespace River.Orqa.Editor.Common
{
using System;
using System.Drawing;
public interface IRange
{
// Properties
Point EndPoint { get; set; }
Point StartPoint { get; set; }
}
}
|
//Session 2: Conditionals, Loops and Classes
//12Nov 2017
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Session2 : MonoBehaviour {
//Variables
int myNumber = 2;
public bool QuestionTime = true;
int myVariableQuestionTime;
string[] fruits = { "banana"... |
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//----------------------------------------------------------------
namespace System.ServiceModel.Discovery
{
using System.Diagnostics.CodeAnalysis;
using System.Runtime;
abs... |
namespace Cafe.Api.Hateoas.Resources.Waiter
{
public class WaitersContainerResource : ResourceContainer<WaiterResource>
{
}
}
|
using System;
using System.Collections.Generic;
using System.Threading;
namespace UniMob
{
internal sealed class TimerDispatcher : IDisposable
{
private static int _mainThreadId;
private readonly Action<Exception> _exceptionHandler;
private readonly object _lock = new object();
... |
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
namespace FabricDCA.Test
{
... |
using System;
namespace ESFA.DC.CrossLoad.Dto
{
[Serializable]
public sealed class MessageCrossLoadDcftToDctDto
{
/// <summary>
/// Unique job id of job.
/// </summary>
public long JobId { get; set; }
/// <summary>
/// [Optional] An error message if the job... |
// ┌∩┐(◣_◢)┌∩┐
// \\
// SimpleCarga.cs (30/05/2017) \\
// Autor: Antonio Mateo (Moon Antonio) antoniomt.moon@gmail.com \\
// Descripcion: Ejemplo Carga simple \\
// Fecha Mod: 30/05/2017 \\
// Ultima Mod: Version Inicial ... |
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Json;
using System.Threading.Tasks;
using VividboxBlazor.Shared;
namespace VividboxBlazor.Client.Services.ProductService
{
public class ProductService : IProductService
{
private readonly HttpClient _http;
... |
using FoodVault.Framework.Application.FileUploads;
using MediatR;
using System.Threading;
using System.Threading.Tasks;
namespace FoodVault.Modules.Storage.Application.Products.RemoveProductImage
{
/// <summary>
/// Notification handler for <see cref="ProductImageRemovedNotification"/>.
/// </summary>
... |
using CharacterCreator.Port;
using Archai.CharacterCreator.Domain.Entity;
namespace CharacterCreator.Port
{
public interface IProjectRepository<L>
{
void LoadProject(L path);
void SaveProject(L path);
L GetLocator(Project project);
}
}
|
namespace ClientRepository.Model.Interfaces
{
using System.Collections.Generic;
using System.Threading.Tasks;
/// <summary>
/// Interface IDbClient
/// </summary>
public interface IDbClient
{
/// <summary>
/// Gets the asynchronous.
/// </summary>
/// <retur... |
namespace SWAC
{
using System;
using System.Security.Cryptography;
using System.Text;
using UnityEngine;
public static class ProtPlayerPrefs
{
private const int salt = 678309397;
public static void SetInt(string key, int value)
{
int salted... |
using System.Net;
using System.Net.Http;
namespace Blazor.YouTubeDownloader.Api.HttpClientHandlers
{
/// <summary>
/// https://github.com/Tyrrrz/YoutubeExplode/issues/529
/// https://github.com/omansak/libvideo/issues/201
/// </summary>
public class YouTubeCookieConsentHandler : HttpClientHandler
... |
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using TMS.NET06.CaloriesCounter.MVC.Models;
namespace TMS.NET06.CaloriesCounter.MVC.Controllers
{
[Authorize(R... |
using System;
using Tailviewer.BusinessLogic;
namespace TablePlayground
{
/// <summary>
/// A collection of columns which every log file provides.
/// It is possible that log files don't provide any data in a column, however.
/// </summary>
public sealed class DefaultLogColumns
{
public static readonl... |
using Machine.Specifications;
using Should.Fluent.Model;
namespace Should.Fluent.UnitTests
{
public class be_double_test_base : test_base<double>
{
protected static BeBase<double> be;
}
public class should_be_double_context : be_double_test_base
{
Establish context = () => be = new... |
/*
* Experimental script. This scripts creates a Generate Skeletons button in the Experimental scene.
*/
using UnityEngine;
using UnityEditor;
namespace Riggingtools.Skeletons
{
[CustomEditor(typeof(PluginLoaderEditor))]
public class SpawnSkeletons : Editor
{
public override void OnInspecto... |
// Copyright (c) Christof Senn. All rights reserved. See license.txt in the project root for license information.
namespace Aqua.AccessControl.Predicates
{
using System;
using System.Linq.Expressions;
using System.Reflection;
internal sealed class PropertyProjection : IPropertyProjection
{
... |
using UnityEngine;
using System.Collections;
public class Colorable : MonoBehaviour {
public MeshRenderer[] renderers;
Material[] localMaterials = null;
private Color color = Color.white;
public Color Color {
get { return color; }
set {
if(value != null) {
SetColor(value);
color = value;
}
}
... |
namespace Lsquared.SmartHome.Zigbee.ZCL
{
public sealed record AttributeResponsePayload(ushort ID, byte Flags, AttributeValue Value) : Zigbee.ICommandPayload
{
public override string ToString() =>
$"- ID: {ID:X4}, Flags: {Flags:X2}, {Value}";
}
}
|
// c:\program files (x86)\windows kits\10\include\10.0.18362.0\um\d3dcompiler.h(467,9)
namespace DirectN
{
public enum D3D_BLOB_PART
{
D3D_BLOB_INPUT_SIGNATURE_BLOB = 0,
D3D_BLOB_OUTPUT_SIGNATURE_BLOB = 1,
D3D_BLOB_INPUT_AND_OUTPUT_SIGNATURE_BLOB = 2,
D3D_BLOB_PATCH_CONSTANT_SIG... |
using Enemies;
using Helpers.Settings;
using UnityEngine;
namespace Helpers.StateMachine.States
{
public class Attack : IState
{
private readonly Enemy _enemy;
private readonly float _spawnRate;
/// <summary>
/// Mimics Enemy reaction time.
/// </summary>
... |
namespace Rotation
{
partial class Form1
{
/// <summary>
/// 必要なデザイナー変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing"... |
using System.Text;
using EventoCore.Domain;
using EventoCore.Extensions;
using EventoCore.Repositories;
using EventoInfrastructure.Mappers;
using EventoInfrastructure.Repositories;
using EventoInfrastructure.Services.Events;
using EventoInfrastructure.Services.Initializers;
using EventoInfrastructure.Services.Jwt;
usin... |
using System.Collections.Immutable;
using SleepingBearSystems.Tools.Common;
namespace SleepingBearSystems.CraftingTools.Domain.Test;
internal sealed class TestItemRepository : IItemRepository
{
public Maybe<Item> GetItemById(Guid id)
{
return TestItemRepository.Items.TryGetValue(id, out var ... |
using System.Collections.Generic;
using System.Linq;
namespace Domain.Interfaces
{
public static class CollectionExtensions
{
public static Dictionary<TKey, TValue> AsDictionary<TKey, TValue>(
this IReadOnlyDictionary<TKey, TValue> readOnlyDictionary)
{
return readOnlyD... |
namespace TemplateMethod
{
public class BeverageTestDrive
{
private static void Main()
{
var myTea = new Tea();
myTea.PrepareRecipe();
}
}
} |
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Random = UnityEngine.Random;
public static class ExList
{
public static int IndexOf<T>(this IList<T> _array, T _value)
{
if (_array == null)
return -1;
for (int i = _array.Count - 1; ... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Linq;
using System.Text.RegularExpressions;
using KeySkills.Core.Models;
namespace KeySkills.Crawler.Core.Services
{
/// <summary>
/// Implements <see cref="IKeywordsExtractor"/>
/// </summary>
public class Keyword... |
#region License
// Pomona is open source software released under the terms of the LICENSE specified in the
// project's repository, or alternatively at http://pomona.io/
#endregion
using System;
using System.Collections.Generic;
namespace Pomona.Common.TypeSystem
{
public class ComplexType : Structu... |
namespace MediatorPattern
{
public class Message2 : Message
{
public string NotSoSecretMessage { get; set; }
}
} |
using DeltaEngine.Content;
using DeltaEngine.Datatypes;
using DeltaEngine.Rendering3D.Particles;
namespace DeltaEngine.Editor.ContentManager.Previewers
{
public class ParticlePreviewer : ContentPreview
{
protected override void Init() {}
protected override void Preview(string contentName)
{
va... |
using UnityEngine;
using System.Collections;
public class PlayerMovement : MonoBehaviour {
Rigidbody2D rb;
Animator animator;
[Range(0, 5)]
public float speed = 2.5f;
[Range(0, 7)]
public float rotationSpeed = 5;
void Awake() {
rb = GetComponent<Rigidbody2D>();
animator = GetComponent<Animator>();
}
... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
using VRStandardAssets.Utils;
public class LookManager : MonoBehaviour
{
public Canvas instructionCanvas;
public VRInteractiveItem rearView;
public VRInteractiveItem sideView;
public VRInteractiveIt... |
using System.Text.Json.Serialization;
using System;
using System.Collections.Generic;
using System.Text;
namespace KyivSmartCityApi.Models
{
public class AddressPart
{
[JsonPropertyName("id")]
public string Id { get; set; }
[JsonPropertyName("text")]
public string Text { get; se... |
using System;
using Newtonsoft.Json;
using System.Xml.Serialization;
namespace Essensoft.AspNetCore.Payment.Alipay.Domain
{
/// <summary>
/// MybankCreditLoantradeLoanarQueryModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditLoantradeLoanarQueryModel : AlipayObject
{
... |
using tvn.cosine.ai.agent.api;
using tvn.cosine.ai.agent;
namespace tvn.cosine.ai.environment.map
{
/**
* Represents the environment a SimpleMapAgent can navigate.
*
* @author Ciaran O'Reilly
*
*/
public class MapEnvironment : EnvironmentBase
{
private Map map = null;
... |
@model bool?
@{
var status = Model.HasValue && Model.Value ? "CoAuthor" : "Author";
}
@status
|
using System.Globalization;
namespace Majorsoft.Blazor.Components.Maps
{
/// <summary>
/// Represents a Geolocation Coordinate.
/// </summary>
public class GeolocationCoordinate
{
/// <summary>
/// Representing the latitude of the position in decimal degrees.
/// </summary>
public double? Latitude { get;... |
namespace Bakery.Areas.Task.Models
{
public class OrganizeViewModel
{
public decimal TottalPrice { get; set; }
public DateTime DayOfOrder { get; set; }
public DateTime? FromDate { get; set; }
public DateTime? ToDate { get; set; }
public string ColapsValue { get; set;... |
using System;
using System.Collections.Generic;
namespace EasyGelf.Core
{
public sealed class GelfMessageBuilder
{
private readonly Dictionary<string, object> additionalFields = new Dictionary<string, object>();
private readonly string message;
private readonly string host;
pri... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Principio_LSP_Aderente
{
class ContaComum : Conta
{
public override double Saldo { get; set ; }
public void Saque(double valor)
{
Saldo -= valor;
}
}
}
|
using Carupano;
using Carupano.Configuration;
using Microsoft.Extensions.Configuration;
using System;
using System.Collections.Generic;
using System.Text;
namespace CarupanoAir.Passenger.Projections
{
public class Startup
{
IConfiguration Config;
public Startup()
{
var cfg ... |
using UnityEngine;
using System.Collections.Generic;
namespace PJ
{
public static class Utils
{
public static bool CompareEqual(float a, float b, float epsilon = .001f)
{
return Mathf.Abs(Mathf.Abs(a) - Mathf.Abs(b)) < epsilon;
}
}
public static class EditorUtils
{
public enum RenderState
{
Defa... |
// Colorado (c) 2015 Baltasar MIT License <baltasarq@gmail.com>
namespace Colorado.Core {
using System.Collections.ObjectModel;
public class Delimiter {
public const string TabDelimiterName = "<TAB>";
public const char CommaDelimiter = ',';
public const char SemicolonDelimiter = ';';
... |
using Microsoft.AspNetCore.Authorization;
using Microsoft.Extensions.DependencyInjection;
namespace Convience.ManagentApi.Infrastructure.Authorization
{
public static class PermissionAuthorizationExtension
{
public static IServiceCollection AddPermissionAuthorization(this IServiceCollection services)
... |
using System.Diagnostics;
namespace LittleWeebLibrary
{
public class LittleWeeb
{
private readonly StartUp startUp;
public LittleWeeb()
{
startUp = new StartUp();
Debug.WriteLine("Starting littleweeb");
startUp.Start();
}
public void... |
using Draven.ServerModels;
using Draven.Structures;
using RtmpSharp.Messaging;
using RtmpSharp.Net;
using System;
using System.Collections.Generic;
using System.ComponentModel;
namespace Draven.Messages.LoginService
{
using Draven.DatabaseManager;
using Draven.Structures.Platform.Account;
using Draven.St... |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
namespace Microsoft.Azure.Management.Search.Fluent.SearchService.Definition
{
using Microsoft.Azure.Management.ResourceManager.Fluent.Core.Resource.Definition;... |
using SimpleMvvmWpfLib;
using SimpleMvvmWpfLib.Commands;
using SimpleMvvmWpfLib.WindowEvents;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestApp
{
public class MainWindowViewModel : BaseViewModel
... |
using System.Collections.Generic;
namespace MLSoftware.OTA
{
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xsd2Code", "4.2.0.31")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serializat... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Wartorn.ScreenManager;
using Wartorn.Drawing.Animation;
using Wartorn.Utility;
using War... |
using System;
using MongoDB.Bson;
using MongoDB.Driver;
using MongoDB.Driver.Builders;
using TellagoStudios.Hermes.Business.Model;
using TellagoStudios.Hermes.Business.Data.Queries;
using TellagoStudios.Hermes.DataAccess.MongoDB;
namespace TellagoStudios.Hermes.DataAccess.MongoDB.Queries
{
public class... |
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Net;
using System.IO;
using DroidExplorer.Core.Configuration.Handlers;
using Newtonsoft.Json;
using Camalot.Common.Extensions;
using Camalot.Common.Serialization;
namespace DroidExplorer.Core... |
using NaughtyAttributes;
using UnityEngine;
namespace GameplayIngredients.Events
{
public class OnTriggerEvent : EventBase
{
[ReorderableList]
public Callable[] onTriggerEnter;
[ReorderableList]
public Callable[] onTriggerExit;
public bool OnlyInteractWithTag = true;
... |
using System;
using System.Collections.Generic;
namespace Rhit.Applications.Model.Events {
public delegate void SearchEventHandler(Object sender, SearchEventArgs e);
public class SearchEventArgs : ServiceEventArgs {
public List<RhitLocation> Places { get; set; }
}
}
|
using System.Windows.Forms;
using System.Drawing;
namespace ProSnap
{
/// <summary>
/// http://stackoverflow.com/a/442828/1569
/// </summary>
public class ListView : System.Windows.Forms.ListView
{
public ListView()
{
//Activate double buffering
this.SetStyl... |
using System;
using Knet.Kudu.Client.Util;
using Xunit;
namespace Knet.Kudu.Client.Tests;
public class DecimalUtilTests
{
[Theory]
[InlineData(6023345402697246, 15782978151453050464, 10)] // 11111111111111111111111111.11111
[InlineData(-6023345402697247, 2663765922256501152, 10)] //-111111111111111111... |
using System;
using System.Collections.Generic;
using System.Linq;
using BenchmarkDotNet.Attributes;
using Universe.YetAnotherComparerBuilder.Tests;
namespace Universe.YetAnotherComparerBuilder.Benchmark
{
[MemoryDiagnoser]
public class SortingBenchmark
{
private PersonClass[] Persons;
priv... |
using MedicalAppointment.Core.DTOs.Gender;
using MedicalAppointment.Core.Interfaces;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace MedicalAppointment.Core.Services
{
public class GenderPatientReportService
{
private readonly IGenderService _... |
using Windows.UI.Xaml.Controls;
namespace TeamVault.Pages
{
public sealed partial class SignIn : Page
{
public SignIn()
{
this.InitializeComponent();
}
}
}
|
using System;
using Xunity.ScriptableVariables;
namespace Xunity.ScriptableReferences
{
[Serializable]
public class IntReference : VariableReference<IntVariable, int, IntReference> { }
} |
using System;
using System.Linq;
using System.Threading.Tasks;
using API.Application;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
namespace API.Controllers
{
[Route("/api/sse")]
public class ServerSentEventController : Controller
... |
using System.Collections.Generic;
using GloWS_REST_Library.Objects.Plumbing;
using GloWS_REST_Library.Objects.Tracking;
using Newtonsoft.Json;
namespace GloWS_REST_Library.Objects.RateQuery.Response {
public class Charges {
public string Currency { get; set; }
[JsonConverter(typeof(SingleOrArrayC... |
using System;
using System.Collections.Generic;
using System.Text;
namespace RouteManagement
{
public class Route
{
List<Point> points = new List<Point>();
public void AddPoint(Point point)
{
points.Add(point);
}
public double GetLength()
{
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EXERCICE1_int_simple
{
public class Program
{
static void Main(string[] args)
{
//Déclaration des variables
double capital;
double t... |
using Gecko.Interop;
namespace Gecko
{
/// <summary>
/// May be for future use (tabbed browser)
/// </summary>
public static class WindowMediator
{
private static ServiceWrapper<nsIWindowMediator> _windowMediator;
static WindowMediator()
{
_windowMediator = new ServiceWrapper<nsIWindowMediator>( Contrac... |
using System;
using System.Collections.Generic;
using System.Linq;
using Stateflow.Fields.DataStores;
namespace Stateflow.Fields
{
public class FieldDefinitionCollection<TIdentifier>: Dictionary<TIdentifier, IFieldDefinition<TIdentifier>>
{
IDataStore<TIdentifier> _store;
ITemplate<TIdentifier> _type;
public... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlacementManager : MonoBehaviour
{
//public Placement placement;
public string type { get; set; }
public string position { get; set; }
public int frequency { get; set; }
public int limit { get; set; }
... |
using MCDSaveEdit.Save.Models.Profiles;
using System;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
#nullable enable
namespace MCDSaveEdit
{
/// <summary>
/// Interaction logic for NetheriteEnchantmentControl.xaml
/// </summary>
publ... |
using System.Runtime.InteropServices;
using System.Xml.Serialization;
namespace Diadoc.Api.Com
{
[ComVisible(true)]
[Guid("FB300E42-1ABF-4553-8882-3692ACA21F48")]
//NOTE: Это хотели, чтобы можно было использовать XML-сериализацию для классов
[XmlType(TypeName = "RoamingNotificationStatus", Namespace = "https://di... |
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windo... |
using BB.Memory.Base;
using System.Collections.Generic;
namespace BB.Memory.Abstract
{
public interface ILogManager
{
void Flush(int lsn);
bool Append(object[] records, out int lsn);
IEnumerator<BasicLogRecord> GetEnumerator();
}
}
|
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Grammophone.Domos.Domain.Accounting
{
/// <summary>
/// Abstract base for a tax component of an invoice line.
/// </summary>
/// <typeparam nam... |
using System;
using System.Collections.Generic;
using System.Text;
using Abp.Application.Services;
using Abp.Localization;
namespace LanguageOmg.Services
{
public interface ITesting : IApplicationService
{
void CreateLanguage(LanguageInfo input)
}
}
|
using RLabs.Cielo.SDK.Enum;
using RLabs.Cielo.SDK.Model.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using PaymentClass = RLabs.Cielo.SDK.Model.Entity.Payment;
namespace RLabs.Cielo.SDK.Test.Factory
{
internal class PaymentCreator
... |
namespace BinarySerializer.Klonoa.DTP
{
/// <summary>
/// A vector with 16-bit values
/// </summary>
public class KlonoaVector16 : BinarySerializable
{
public KlonoaVector16()
{
}
public KlonoaVector16(short x, short y, short z)
{
X ... |
using System.Collections.Generic;
using GigHub.Core.Models;
namespace GigHub.Core.Repositories
{
public interface IFollowingRepository
{
IEnumerable<Following> GetFollowingsByUserId(string userId);
Following GetFollowing(string userId, string artistId);
}
} |
using System;
using System.Runtime.Serialization;
namespace NTI.iMeter
{
/// <summary>
/// Reference a component which is represented uniquely by a combination of <see cref="LibraryId" /> and
/// <see cref="ComponentId" />.
/// </summary>
[Serializable]
[DataContract]
public struct LibraryComponentId :... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
namespace HttpConnect.HttpUtil.Data
{
public class ReceivedRequestData
{
/// <summary>
/// リクエスト送信元クライアントPCのIPアドレス
/// </... |
namespace AngleSharp.Dom
{
using AngleSharp.Attributes;
using AngleSharp.Dom.Css;
using System;
/// <summary>
/// The Element interface represents an object within a DOM document.
/// </summary>
[DomName("Element")]
public interface IElement : INode, IParentNode, IChildNode, INonDocum... |
using Cindy.Logic.ReferenceValues;
using Cindy.Util.Serializables;
using System;
using UnityEngine;
namespace Cindy.Logic.VariableObjects
{
/// <summary>
/// Vector3变量
/// </summary>
[AddComponentMenu("Cindy/Logic/VariableObject/Vector3Object (Vector3)")]
public class Vector3Object : VariableObjec... |
using Microsoft.Playwright;
namespace pre.test.pages
{
public class BasePage
{
protected IPage Page;
public BasePage(IPage page) => Page = page;
public IPage GetPage() => Page;
}
}
|
/*********************************************
作者:曹旭升
QQ:279060597
访问博客了解详细介绍及更多内容:
http://blog.shengxunwei.com
**********************************************/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using Sheng.Sailing... |
using Contracts;
using Contracts.Api;
using Contracts.Models;
using Contracts.Requests;
using Core.Extensions;
using SocketClient.Extensions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SocketClient.Api
{
class UserApi : IUserApi
... |
using Bookshelf.API.Entities.Concrete;
namespace Bookshelf.API.DataAccess.Interfaces
{
public interface IGenreDal : IGenericDal<Genre>
{
}
}
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Android.App;
using Android.Appwidget;
using Android.Content;
using Android.OS;
using Android.Runtime;
using Android.Views;
using Android.Widget;
namespace WidgetPractice01
{
/// <summary>
/// ウィジェットのビューの更新を行うクラス
/// ウィジェット... |
// 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.Windows;
using System.Windows.Controls;
namespace Microsoft.Test.Stability.Extensions.Actions
{
/... |
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using Customer1.Model;
namespace Customer1.Data
{
public class Customer1Context : DbContext
{
public Customer1Context (DbContextOptions<Customer1Conte... |
using JetBrains.Annotations;
using UnityEngine;
namespace Silphid.Extensions
{
public static class RectExtensions
{
public static Rect Translate(this Rect This, Vector2 vector) =>
new Rect(This.xMin + vector.x, This.yMin + vector.y, This.width, This.height);
public stati... |
using System.Data;
namespace Data.Net
{
internal sealed class Parameter
{
internal string Name { get; }
internal DbType DbType { get; }
internal ParameterDirection Direction { get; }
internal int Size { get; }
internal object Value { get; private set; }
int... |
using Microsoft.AspNetCore.Http;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Extensions.Primitives;
using System.IO;
using System.Reflection.Emit;
using NetStitch.Option;
using NetStitch.Logger;
using Syste... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ObjectiveTabSettings : MonoBehaviour
{
public string missionDescription;
public Texture[] objectiveImages;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.