max_stars_repo_path
stringlengths
3
255
max_stars_repo_name
stringlengths
5
116
max_stars_count
int64
0
107k
id
stringlengths
1
7
content
stringlengths
63
1.05M
Kino.Toolkit.Wpf/Kino.Toolkit.Wpf/Window/ExtendedWindow.cs
WertherHu/Kino.Toolkit.Wpf
248
7057862
using System; using System.ComponentModel; using System.Runtime.CompilerServices; using System.Windows; using System.Windows.Input; using System.Windows.Interop; using System.Windows.Media; using System.Windows.Shell; namespace Kino.Toolkit.Wpf { public class ExtendedWindow : Window { /// <summary> ...
Player/Wheel.cs
POBIX/willy-on-a-wheel
2
7057864
<filename>Player/Wheel.cs using Godot; using System; using System.Collections.Generic; public class Wheel : KinematicBody2D { public const int Radius = 32; public float maxAcceleration = 0.65f; private Sprite sprite; public AnimationPlayer anim; public Vector2 velocity; public float angle; ...
NASARoverAPI/Interfaces/IApiProvider.cs
ilfir/NASARoverAPI
0
7057865
using System; using System.Collections.Generic; namespace NASARoverAPI.Interfaces { // This may not be needed public interface IApiProvider { void DownloadResource(string resourceName); void StartDownloadProcess(); } }
src/Sidekick.Application/Settings/SaveSettingHandler.cs
JadedCricket/Sidekick
0
7057866
<filename>src/Sidekick.Application/Settings/SaveSettingHandler.cs<gh_stars>0 using System.Threading; using System.Threading.Tasks; using MediatR; using Sidekick.Domain.Settings.Commands; namespace Sidekick.Application.Settings { public class SaveSettingHandler : ICommandHandler<SaveSettingCommand> { pr...
Compiler/CommonUtil/Android/AndroidUtil.cs
jimjag/crayon
107
7057867
<gh_stars>100-1000 using System.Collections.Generic; namespace CommonUtil.Android { public static class AndroidUtil { private static string androidHome = null; private static int hasAndroidSdk = -1; public static bool HasAndroidSdk { get { ...
src/NTekScrape.Core/FrameDataRequester.cs
ObliviousJamie/NTekScrape
0
7057868
<reponame>ObliviousJamie/NTekScrape using System; using System.Collections.Generic; using System.Linq; using NTekScrape.Core.Interfaces; using NTekScrape.Core.Ioc; namespace NTekScrape.Core { public class FrameDataRequester { private readonly IScraper _downloader; private readonly IParser _par...
MyBallot.DataAccess/Model/BallotType.cs
wangzhiqing999/my-csharp-project
0
7057869
<gh_stars>0 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace MyBallot.Model { /// <summary> /// 投票类型. /// </summary> ...
TencentCloud/Ims/V20200713/ImsClient.cs
lzw316/tencentcloud-sdk-dotnet
300
7057871
<reponame>lzw316/tencentcloud-sdk-dotnet<filename>TencentCloud/Ims/V20200713/ImsClient.cs /* * 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...
Scirpt/AGBLang/MonoBCommonSenseGiver.cs
iwaag/AGDevUnity
1
7057872
<reponame>iwaag/AGDevUnity<filename>Scirpt/AGBLang/MonoBCommonSenseGiver.cs<gh_stars>1-10  using System.Collections; using System.Collections.Generic; using UnityEngine; using AGDev; using AGBLang; namespace AGDevUnity { public abstract class MonoBCommonSenseGiver : MonoBehaviour { public abstract CommonSenseGiver...
Crawlie.Server/CrawlerJobResponseUtility.cs
isutton/crawlie
0
7057873
using System.Collections.Generic; using Crawlie.Contracts; namespace Crawlie.Server { public static class CrawlerJobResponseUtility { private static readonly Dictionary<SeedJobStatus.WorkerStatus, SeedJobStatusResponse.JobStatus> StatusMapping = new Dictionary<SeedJobStatus.WorkerStatus, SeedJobStatusR...
QueueProcessor/Processing/BatchingQueue.cs
LorandBiro/QueueProcessor
2
7057874
<reponame>LorandBiro/QueueProcessor<gh_stars>1-10 using QueueProcessor.Utils; using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace QueueProcessor.Processing { /// <summary> /// An asynchronous producer-consumer queue with batching capability. Items ca...
ChargeBee/Filters/StringFilter.cs
skyePBX/chargebee-dotnet
0
7057875
<reponame>skyePBX/chargebee-dotnet<filename>ChargeBee/Filters/StringFilter.cs using System; using ChargeBee.Api; namespace ChargeBee.Filters { public class StringFilter<TU> where TU : EntityRequest<TU> { private readonly string _paramName; private readonly TU _req; private bool _suppor...
Assets/Plugins/CodeStage/Maintainer/Editor/Scripts/Modules/RecordsBased/Issues/Detectors/Implementation/DuplicateLayersDetector.cs
rafaeldolfe/MasterServerChess
0
7057876
<reponame>rafaeldolfe/MasterServerChess #region copyright // ------------------------------------------------------- // Copyright (C) <NAME> [https://codestage.net] // ------------------------------------------------------- #endregion namespace CodeStage.Maintainer.Issues.Detectors { using Core; using Core.Scan; #...
Server/Model/GamePlay/GameGlobalTools/GameCalNumericTool.cs
xfs81150082/ET-RPG-DEMO
1
7057877
using ETModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using UnityEngine; public static class GameCalNumericTool { public enum DamageType { physic, magic } public struct DamageData { public DamageT...
Source/Platform Stacks/Robotics.Micro.Core/Connection.cs
webmonger/Monkey.Robotics
1
7057879
using System; using Microsoft.SPOT; namespace Robotics.Micro { /// <summary> /// This is a reference to a connection. Creation of this object does not make the connection. /// You need to call Connect to do that. /// </summary> public class Connection { public Port From { get...
test/Microsoft.AspNet.TestHost.Tests/TestServerTests.cs
benaadams/Hosting
0
7057880
// 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.IO; using System.Net; using System.Net.Http; using System.Threading.Tasks; using Microsoft.AspNet.Builder; using Microsoft.As...
Assets/Amilious/Saving/Modular/ISaveable.cs
amilious-ba/AmiliousProceduralTerrain
1
7057881
namespace Amilious.Saving { /// <summary> /// This interface is used to make something saveable using /// the saving system. /// </summary> public interface ISaveable { /// <summary> /// This method is called when saving. /// </summary> /// <param name="...
EPlast/EPlast.DataAccess/Repositories/Realizations/Club/ClubReportMemberRepository.cs
ita-social-projects/EPlas
22
7057882
<filename>EPlast/EPlast.DataAccess/Repositories/Realizations/Club/ClubReportMemberRepository.cs using EPlast.DataAccess.Entities; using EPlast.DataAccess.Repositories.Interfaces.Club; namespace EPlast.DataAccess.Repositories.Realizations.Club { public class ClubReportMemberRepository : RepositoryBase<ClubReportMe...
AcManager/PaintShop/ComplexCarPaint.cs
Ultrawipf/actools
209
7057883
<gh_stars>100-1000 using System.ComponentModel; using AcTools.Render.Kn5SpecificForward; using JetBrains.Annotations; using Newtonsoft.Json; namespace AcManager.PaintShop { public class ComplexCarPaint : CarPaint { public PaintShopDestination MapsTexture { get; } [CanBeNull] public PaintS...
src/QuickPlotTests/Integration/Tools.cs
swharden/QuickPlot
30
7057884
using NUnit.Framework; using System; using System.Collections.Generic; using System.Text; namespace QuickPlotTests.Integration { public static class Tools { private readonly static string outputFolderName = "output"; public static string outputFolder { get { return System.IO.Path.GetFullPath(o...
3.CSharpAdvanced/02_SetsDictionariesHash/Exercise_09_UserLogs/userLogs.cs
Brankovanov/SoftUniCourses
1
7057885
<filename>3.CSharpAdvanced/02_SetsDictionariesHash/Exercise_09_UserLogs/userLogs.cs using System; using System.Collections.Generic; using System.Linq; namespace Exercise_09_UserLogs { public class userLogs { public static void Main(string[] args) { ReceiveInput(); } ...
2.CreateAndUseTypes/2.78_ExpressionTree/Program.cs
GoFightNguyen/programming-in-csharp
0
7057886
<reponame>GoFightNguyen/programming-in-csharp using System; using System.Linq.Expressions; namespace _2._78_ExpressionTree { class Program { static void Main(string[] args) { //The same as 2.74_CodeDOM, except with expression trees BlockExpression blockExpr = Expressio...
samples/Aerie.PowerShell.Async.Samples/TestParallelProgressCommand.cs
aetos382/Aerie.PowerShell
0
7057887
using System; using System.Linq; using System.Management.Automation; using System.Threading; using System.Threading.Tasks; namespace Aerie.PowerShell.Samples { [Cmdlet("Test", "ParallelProgress")] public sealed class TestParallelProgressCommand : AsyncCmdlet { [Parameter] ...
src/CSharp/101-200/125.StringIsPalindrome.cs
Peefy/PeefyLeetCode
2
7057888
<filename>src/CSharp/101-200/125.StringIsPalindrome.cs using System.Text.RegularExpressions; namespace PeefyLeetCode.StringIsPalindrome { public class Solution { public bool IsPalindrome(string s) { if (s == null) return false; if (s == "") ...
FormulaeParser/Flat/FlatPattern.cs
StiveHawk/formulae-parser
0
7057889
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using FormulaeParser.Components; namespace FormulaeParser.Flat { public abstract class FlatPattern : IFlatPattern { public abstract IEnumerable<IComponent> Flatten(IEnumerable<IComponent...
Addin/ILogger.cs
alkanoic/FileWatcher
0
7057890
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Addin { public interface ILogger { void Info(string info); void Warn(string warn); void Error(string error); void Fatal(string fatal); void Info(Exception ex); void Warn(Exc...
Cursed/Views/Recipes/AddChildSingleItem.cshtml
42ama/Cursed
0
7057891
<reponame>42ama/Cursed @model Recipe @{ ViewData["Title"] = "AddChildSingleItem"; int parentId = (int)ViewData["parentId"]; } <h1>Recipes</h1> <h2>Add child of @parentId recipe.</h2> <form asp-antiforgery="true" method="post" role="form"> @Html.ValidationSummary() <div> <input hidden type="numb...
MarkerMetro.Unity.WinLegacyUnity.Tests/System/Timers/TimerTests.cs
MarkerMetro/MarkerMetro.Unity.WinLegacy
11
7057892
<reponame>MarkerMetro/MarkerMetro.Unity.WinLegacy using System; using MarkerMetro.Unity.WinLegacy.Timers; #if NETFX_CORE using Windows.Storage; using Microsoft.VisualStudio.TestPlatform.UnitTestFramework; #else using Microsoft.VisualStudio.TestTools.UnitTesting; #endif namespace MarkerMetro.Unity.WinLegacy.Timers.Te...
LinkedContacts/LinkedContacts.cs
talesfarias/LinkedContacts
0
7057893
<filename>LinkedContacts/LinkedContacts.cs using LinkedContacts.Properties; using Microsoft.Exchange.WebServices.Data; using Microsoft.Identity.Client; using System; using System.Configuration; using System.Drawing; using System.IO; using System.Net; using System.Net.Security; using System.Security.Cryptography.X509Cer...
android/naked-stubs/javax/sip/header/TimeStampHeader.cs
gordonjohnpatrick/XobotOS
263
7057894
<gh_stars>100-1000 using Sharpen; namespace javax.sip.header { [Sharpen.NakedStub] public interface TimeStampHeader { } [Sharpen.NakedStub] public abstract class TimeStampHeaderClass { } }
src/HareDu/Extensions/ValueExtensions.cs
ahives/HareDu
11
7057895
<gh_stars>10-100 // Copyright 2013-2014 <NAME>, <NAME>, et al. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required...
Assets/Scripts/Hyperlink.cs
ActiveNick/GalaxyExplorer
7
7057896
// Copyright Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See LICENSE in the project root for license information. using System; using UnityEngine; namespace GalaxyExplorer { public class Hyperlink : GazeSelectionTarget { public string URL; public event Acti...
App.xaml.cs
MrBBBaiXue/Aprheua
2
7057897
<reponame>MrBBBaiXue/Aprheua /**************************************************************** Copyright © 2021 Aprheua File Name: App.xaml.cs Author: <NAME> (<EMAIL>) <NAME> (<EMAIL>) Version: 2.3.3.3 Date: 2021-03-11 Description...
modules/EasyAbp.PaymentService.Prepayment/src/EasyAbp.PaymentService.Prepayment.EntityFrameworkCore/EasyAbp/PaymentService/Prepayment/EntityFrameworkCore/PaymentServicePrepaymentEntityFrameworkCoreModule.cs
seventh88/PaymentService
42
7057898
using EasyAbp.PaymentService.Prepayment.WithdrawalRequests; using EasyAbp.PaymentService.Prepayment.WithdrawalRecords; using EasyAbp.PaymentService.Prepayment.Transactions; using EasyAbp.PaymentService.Prepayment.Accounts; using Microsoft.Extensions.DependencyInjection; using Volo.Abp.EntityFrameworkCore; using Volo.Ab...
CatchTheBall/src/Source/Code/CorePlugin/HandController.cs
GameTemplates/Duality-Examples
1
7057899
<reponame>GameTemplates/Duality-Examples<gh_stars>1-10 using System; using System.Collections.Generic; using System.Linq; using Duality; using Duality.Components; //to access camera component using Duality.Input; using Duality.Resources; //to access texture namespace CatchTheBall { public class HandController : ...
CMS.Web.UI/obj/Release/netcoreapp2.1/Razor/Areas/AdminPanel/Views/Post/Index.g.cshtml.cs
hosseinats/BaseCoreCMS
1
7057900
#pragma checksum "D:\Codes\CMS\CMS\CMS.Web.UI\Areas\AdminPanel\Views\Post\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "0471d6eccddb2f7b460a3212ae290795644c8226" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore...
Alefe Ultimate Programmer/Assets/Scripts/Other/Other.cs
alefesouza/alefe-ultimate-programmer
3
7057901
<reponame>alefesouza/alefe-ultimate-programmer<filename>Alefe Ultimate Programmer/Assets/Scripts/Other/Other.cs using Mono.Data.Sqlite; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using UnityEngine; namespace Assets.Scripts.Other { class Other { ...
KanColleOpenDB/Properties/AssemblyInfo.cs
WolfgangKurz/KanColle-OpenDB-Plugin
2
7057902
<gh_stars>1-10 using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 // 제어됩니다. 어셈블리와 관련된 정보를 수정하려면 // 이러한 특성 값을 변경하세요. [assembly: AssemblyTitle("KanColleOpenDB")] [assembly: AssemblyDescription("KanColleOpenDB for KanColleViewer")] [asse...
resources/.gen/aws/aws/ElbConfig.cs
scottenriquez/cdktf-alpha-csharp-testing
0
7057903
<reponame>scottenriquez/cdktf-alpha-csharp-testing<gh_stars>0 using Amazon.JSII.Runtime.Deputy; #pragma warning disable CS0672,CS0809,CS1591 namespace aws { #pragma warning disable CS8618 [JsiiByValue(fqn: "aws.ElbConfig")] public class ElbConfig : aws.IElbConfig { /// <summary>listener block...
src/Spring/Spring.Aop/Aop/Framework/AutoProxy/TypeNameAutoProxyCreator.cs
swalters/spring-net
697
7057904
<reponame>swalters/spring-net #region License /* * Copyright © 2002-2011 the original author or 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.a...
aspnet-core/test/PersonalFinance.Web.Tests/PersonalFinanceWebTestModule.cs
Jfontenla/PersonalFinance
0
7057905
<reponame>Jfontenla/PersonalFinance using Abp.AspNetCore; using Abp.AspNetCore.TestBase; using Abp.Modules; using Abp.Reflection.Extensions; using PersonalFinance.EntityFrameworkCore; using PersonalFinance.Web.Startup; using Microsoft.AspNetCore.Mvc.ApplicationParts; namespace PersonalFinance.Web.Tests { [Depends...
Assets/Demo/Scripts/Lobby/LobbyUIController.cs
KevRiver/PUN2Learning
0
7057906
using System; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Demo.Scripts.Lobby { public class LobbyUIController : MonoBehaviour { #region Private Serialized Field [SerializeField] private GameObject controlPanel; [SerializeField] private GameO...
src/Orchard.Web/Modules/NGM.OpenAuthentication/Controllers/AdminController.cs
sebastienros/msc
0
7057907
using System.Web.Mvc; using NGM.OpenAuthentication.Models; using NGM.OpenAuthentication.Services; using NGM.OpenAuthentication.ViewModels; using Orchard; using Orchard.ContentManagement; using Orchard.Localization; using Orchard.Security; using Orchard.UI.Admin; using Orchard.UI.Notify; namespace NGM.OpenAuthenticati...
Source/DependencyInversion/GetContainer.cs
dolittle/Runtime
12
7057908
<gh_stars>10-100 // Copyright (c) Dolittle. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Dolittle.Runtime.DependencyInversion { /// <summary> /// A delegate representing the capability of getting the <see cref="IContainer"/...
CSharp/RayTracerChallenge.Library.Tests/VectorTests.cs
jrockwood/RayTracerChallenge
0
7057909
// --------------------------------------------------------------------------------------------------------------------- // <copyright file="VectorTests.cs" company="<NAME>"> // Copyright (c) <NAME>. All Rights Reserved. Licensed under the Apache License, Version 2.0. See // LICENSE.txt in the project root for lic...
ModelBuilder.UnitTests/Models/IPublicOverInternal.cs
bermo/ModelBuilder
18
7057910
namespace ModelBuilder.UnitTests.Models { using System; public interface IPublicOverInternal { public string First { get; } public bool Second { get; } public Uri Third { get; } } }
sources/Interop/Windows/DirectX/um/d3d12/D3D12_RENDER_PASS_FLAGS.cs
rickbrew/terrafx.interop.windows
0
7057911
// Copyright © <NAME> Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. // Ported from um/d3d12.h in the Windows SDK for Windows 10.0.20348.0 // Original source is Copyright © Microsoft. All rights reserved. using System; namespace TerraFX.Interop.DirectX...
src/ResourceManagement/Insights/Insights/Generated/Management/Insights/Models/ScaleCapacity.cs
cwickham3/azure-sdk-for-net
1
7057912
// // Copyright (c) Microsoft and contributors. 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 // // Unless requi...
Sombra.Messaging/Requests/Identity/ChangePasswordRequest.cs
JelleKerkstra/Sombra
2
7057913
using Sombra.Messaging.Responses.Identity; namespace Sombra.Messaging.Requests.Identity { public class ChangePasswordRequest : Request<ChangePasswordResponse> { public ChangePasswordRequest(){ } public ChangePasswordRequest(string password, string securityToken) { ...
src/KubernetesClient/generated/Models/V1CertificateSigningRequestSpec.cs
mpoettgen/csharp
2
7057914
<filename>src/KubernetesClient/generated/Models/V1CertificateSigningRequestSpec.cs<gh_stars>1-10 // <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 k8s.Models { using ...
SchoolLocker.Persistence/PupilRepository.cs
jfuerlinger/htl-samples-schoollocker-auth-template
0
7057915
using SchoolLocker.Core.Contracts; using SchoolLocker.Core.Entities; using System; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; namespace SchoolLocker.Persistence { internal class PupilRepository : IPupilRepository { private readonly ApplicationDbContext _dbCon...
WebPage.Domain/Models/SendGrid/ElectronicMailTemplate.cs
GramescuDan/Webpage
1
7057916
<reponame>GramescuDan/Webpage<filename>WebPage.Domain/Models/SendGrid/ElectronicMailTemplate.cs<gh_stars>1-10 using System.ComponentModel.DataAnnotations; namespace WebPage.Domain.Models.SendGrid { public class ElectronicMailTemplate { [Required] public string Subject { get; set; } pub...
FigmaSharp.Controls/FigmaSharp.Controls/FigmaControlsContext.cs
nmilcoff/FigmaSharp
1
7057917
<gh_stars>1-10 /* * CustomTextFieldConverter.cs * * Author: * <NAME> <<EMAIL>> * * Copyright (C) 2018 Microsoft, Corp * * 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 ...
OnlineServices.Api/Ordering/ApproverRepository.cs
lurienanofab/lnf
1
7057918
<reponame>lurienanofab/lnf using LNF.Ordering; using RestSharp; using System; using System.Collections.Generic; namespace OnlineServices.Api.Ordering { public class ApproverRepository : ApiClient, IApproverRepository { internal ApproverRepository(IRestClient rc) : base(rc) { } public IApprove...
DAL/Entities/ClientDevice/ClientTags.cs
serfend/Project.Web.SfMVC.TrainSchdule.1903
3
7057919
using DAL.DTO.ClientDevice; using System; using System.Linq; namespace DAL.Entities.ClientDevice { /// <summary> /// /// </summary> public class ClientTags : BaseEntityGuid { /// <summary> /// /// </summary> public string Name { get; set; } /// <summary> ...
Client/Project-Titan-Client/Assets/Scripts/UI/Tooltips/Mobile/MarketItemTooltipMobile.cs
steele123/Trials-Of-Titan
0
7057920
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using TitanCore.Core; using TitanCore.Data.Components; using TitanCore.Data.Items; using TMPro; using UnityEngine; namespace Mobile { public class MarketItemTooltipMobile : MobileTooltip<MarketDispl...
PiGraphQlSchema/GraphQLModel/QLAfElementTemplate.cs
gregorvilkner/PiSystemGraphQL
7
7057921
<gh_stars>1-10 using System.Collections.Generic; namespace PiGraphQlSchema.GraphQlModel { public class QLAfElementTemplate { public string name { get; set; } public List<QLAfElement> afElements { get; set; } } }
Server.DataAccess/Migrations/20170715215011_InitDatabase.Designer.cs
EverMoneyTeam/EverMoney
0
7057922
// <auto-generated /> using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage; using Microsoft.EntityFrameworkCore.Storage.Internal; using Server.Da...
tests/SIL.Machine.Tests/Tokenization/LatinWordDetokenizerTests.cs
russellmorley/machine
12
7057923
using System.Linq; using NUnit.Framework; namespace SIL.Machine.Tokenization { [TestFixture] public class LatinWordDetokenizerTests { [Test] public void Detokenize_Empty() { var detokenizer = new LatinWordDetokenizer(); Assert.That(detokenizer.Detokenize(Enumerable.Empty<string>()), Is.EqualTo("")); ...
common/JSSoft.Crema.ServiceModel/DomainBase.cs
s2quake/Ntreev.Crema
0
7057924
// Released under the MIT License. // // Copyright (c) 2018 Ntreev Soft co., Ltd. // Copyright (c) 2020 <NAME> // // 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, inclu...
BoxCLI/Commands/TaskAssignmentsSubCommands/TaskAssignmentUpdateCommand.cs
jmfrank63/boxcli
0
7057925
using System; using System.Threading.Tasks; using Box.V2.Models; using BoxCLI.BoxHome; using BoxCLI.BoxPlatform.Service; using BoxCLI.CommandUtilities; using BoxCLI.CommandUtilities.Globalization; using Microsoft.Extensions.CommandLineUtils; namespace BoxCLI.Commands.TaskAssignmentsSubCommands { public class Task...
GraphsLabMaster/MainForm.cs
KonstantinSerebryakov/Graph-basics
2
7057926
<filename>GraphsLabMaster/MainForm.cs using GraphLibraryDotNet; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Grap...
jamiaAPP/Models/UniversityDB.Context.cs
MuhammadFahad97/E-LearningSystem
0
7057928
<reponame>MuhammadFahad97/E-LearningSystem //------------------------------------------------------------------------------ // <auto-generated> // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file wil...
axiom/MathLib/AxisAlignedBox.cs
AustralianDisabilityLimited/MultiversePlatform
33
7057929
#region LGPL License /* Axiom Game Engine Library Copyright (C) 2003 Axiom Project Team The overall design, and a majority of the core engine and rendering code contained within this library is a derivative of the open source Object Oriented Graphics Engine OGRE, which can be found at http://ogre.sourceforge.net. ...
Scripts/Mobiles/Special/ChaosGuard.cs
greeduomacro/vivre-uo
0
7057930
using System; using Server; using Server.Misc; using Server.Items; using Server.Guilds; namespace Server.Mobiles { public class ChaosGuard : BaseShieldGuard { public override int Keyword{ get{ return 0x22; } } // *chaos shield* public override BaseShield Shield{ get{ return new ChaosShield(); } } public overri...
Objects and classes/Teamwork project/Program.cs
maio246/Programming-Fundamentals
0
7057931
using System; using System.Collections.Generic; using System.Linq; namespace Teamwork_project { class Program { static void Main(string[] args) { int teams = int.Parse(Console.ReadLine()); var allTeams = new List<Team>(); for (int i = 0; i < teams; i++) ...
src/Horse.Messaging.Server/Queues/Store/DefaultMessageTimeoutTracker.cs
horse-framework/horse-messaging
15
7057932
using System; using System.Collections.Generic; using System.Threading; using Horse.Messaging.Protocol; namespace Horse.Messaging.Server.Queues.Store { /// <summary> /// Default message timeout tracker. /// That tracker calls Remove methods of message stores for timed out messages. /// </summary> ...
CSharpServer/DdzServer/DdzServer/Globals.cs
wdqipai/521266750_qq_com
109
7057933
using net.silverfoxserver.core.log; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DdzServer { public class Globals { /** * * */ public static String os; /** */ public static int currentLogLvl...
ReciPro/FormTEMID/FormTEMID.Designer.cs
seto77/ReciPro
43
7057934
<gh_stars>10-100 namespace ReciPro { partial class FormTEMID { /// <summary> /// 必要なデザイナ変数です。 /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// 使用中のリソースをすべてクリーンアップします。 /// </summary> /// <param name="dis...
ScrapyCore.Core/ScrapySystemException.cs
amz-hjinfeng/ScrapyCore
0
7057935
using System; using System.Collections.Generic; using System.Text; namespace ScrapyCore.Core { public class ScrapySystemException : Exception { public const int SystemNeedToShutDown = 0; public const int Log = 2; public const int SystemPause = 1; public int Action { get; set; ...
ConvertCStoTS/Analyze/Methods/MethodData.cs
kazenetu/ConvertCStoTS
0
7057936
using System.Collections.Generic; namespace ConvertCStoTS.Analyze.Methods { /// <summary> /// TypeScript変換済メソッド情報 /// </summary> public class MethodData { /// <summary> /// インデント数 /// </summary> public int IndentSpaceCount { get; } /// <summary> /// メソッド名 /// </summary> publ...
MonoDevelop.Database.ConnectionManager/NodeBuilders/ConnectionContextCollectionNodeBuilder.cs
mono/linux-packaging-monodevelop-database
0
7057937
<filename>MonoDevelop.Database.ConnectionManager/NodeBuilders/ConnectionContextCollectionNodeBuilder.cs // // Authors: // <NAME> <<EMAIL>> // <NAME> <<EMAIL>> // // Copyright (C) 2005 Mosaix Communications, Inc. // Copyright (c) 2007 <NAME> // // Permission is hereby granted, free of charge, to any person obtain...
Service/LineCheckerSrv/SummaryReportItem.cs
aliakseis/quartz-plus
1
7057938
using System; using System.Collections.Generic; namespace LineCheckerSrv { /// <summary> /// Contains validation info for summary reporting /// </summary> class SummaryReportItem { public string projectName; public string serverName; public string phone; public strin...
sources/PortiLog/ListenerConfiguration.cs
bernharde/PortiLog
4
7057939
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace PortiLog { public class ListenerConfiguration { public ListenerConfiguration() { EndLevel = Level.Critical; ...
04.Polymorphism/Vehicles_EXER/Vehicle.cs
mayapeneva/C-Sharp-OOP-Basic
0
7057940
namespace Vehicles_EXER { public abstract class Vehicle { private double fuelQuantity; private double fuelConsumption; private double tankCapacity; protected Vehicle(double fuelQuantity, double fuelConsumption, double tankCapacity) { this.FuelQuantity = fuel...
Commons/dotnet/Entities/ICompositeBill.cs
yitek/FactPattern
0
7057941
<reponame>yitek/FactPattern using System; using System.Collections.Generic; using System.Text; namespace FactPattern.Entities { public interface ICompositeBill<TNode>: IBill, ICompositeEntity<TNode> where TNode:class,ICompositeEntity { } }
src/EdFi.Roster.Explorer/Views/Home/Index.cshtml
Ed-Fi-Alliance-OSS/Roster-Starter-Kit-for-Vendors
0
7057942
<gh_stars>0 @{ ViewData["Title"] = "Home Page"; } <div class="text-center"> <h1 class="display-4">Welcome</h1> <div class="text-md-left p-5"> Using an SDK generated from the <a href="https://api.ed-fi.org/v5.2/docs/" target="_blank">Ed-Fi ODS / API Suite 3 v5.2</a> <a href="https://api.ed-fi.org/v5...
Packets/Server/Play/0x0B_EntityActionPacket.cs
MineLib/ProtocolModern_1.7.10
0
7057943
<reponame>MineLib/ProtocolModern_1.7.10<filename>Packets/Server/Play/0x0B_EntityActionPacket.cs<gh_stars>0 using System; using Aragas.Core.Data; using Aragas.Core.IO; using Aragas.Core.Packets; using ProtocolModern.Enum; namespace ProtocolModern.Packets.Server.Play { public class EntityActionPacket : ProtobufPac...
TimeSliceNet/TimeSliceEntityFrameWorkExtensions/PersistableTimeDependentCollection.cs
Hochfrequenz/time_slices
0
7057944
<filename>TimeSliceNet/TimeSliceEntityFrameWorkExtensions/PersistableTimeDependentCollection.cs using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using TimeSlice; namespace TimeSliceEntityFrameworkExtensions { /// <summary> /// Similar to <see cref="TimeD...
services/AgroPlan.Property/AgroPlan.Property.Infrastructure/EntitiesConfig/OwnerConfig.cs
TatuFlorin/AgroPlan
0
7057945
<reponame>TatuFlorin/AgroPlan<filename>services/AgroPlan.Property/AgroPlan.Property.Infrastructure/EntitiesConfig/OwnerConfig.cs<gh_stars>0 using AgroPlan.Property.AgroPlan.Property.Core.OwnerAggregate; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace AgroPlan.Prope...
FingertipsProfileManager/MainUI/Global.asax.cs
publichealthengland/fingertips-open
2
7057946
<gh_stars>1-10 using System; using System.IO; using System.Web; using System.Web.Mvc; using System.Web.Optimization; using System.Web.Routing; using Fpm.MainUI.Controllers; using Fpm.MainUI.Helpers; namespace Fpm.MainUI { public class MvcApplication : HttpApplication { protected void Application_Start...
Assets/Rekkuzan/Helper/Editor/FileManagement.cs
Rekkuzan/unity-helper
0
7057947
using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; #if UNITY_EDITOR using UnityEditor; namespace Rekkuzan.Helper.Editor { public class FileManagement : MonoBehaviour { [MenuItem("Rekkuzan/Persistent Files/Clean persistant files")] static void Delete...
src/Sannel.House.Web.Base/Models/Device.cs
Sannel/Sannel.House.Web
0
7057948
<reponame>Sannel/Sannel.House.Web<gh_stars>0 using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; #if THERMOSTAT namespace Sannel.House.Thermostat.Base.Mo...
AGCSA/ScrollEventArgs.cs
jluzardo1971/ActiveGanttCSA
0
7057949
<reponame>jluzardo1971/ActiveGanttCSA<gh_stars>0 using System; namespace AGCSA { using System; using System.ComponentModel; using System.Reflection; public class ScrollEventArgs : System.EventArgs { public E_SCROLLBAR ScrollBarType; public int Offset; internal ScrollEventArgs() { Clear(); } ...
CsBinBuff/BinBuff/BinBuffer.cs
Zshoham/BinBuff
0
7057951
<reponame>Zshoham/BinBuff using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Reflection; namespace BinBuff { public class BinBuffer { public enum Type { DYNAMIC, STATIC } public enum Mode { READ, WRITE } /// <summary> /// W...
CliClient/Program.cs
daeken/TestCosm
2
7057952
<filename>CliClient/Program.cs using System.Net.Security; using System.Net.Sockets; using System.Security.Authentication; using System.Security.Cryptography.X509Certificates; using CliClient; using NetLib; using NetLib.Generated; using ExecutionContext = NetLib.Generated.ExecutionContext; using Object = NetLib.Generat...
source/LudogorieFood.Web/Areas/Admin/ViewModels/Home/SlideViewModel.cs
ahmedmatem/ludogoriefood
0
7057953
namespace LudogorieFood.Web.Areas.Admin.ViewModels.Home { using LudogorieFood.Models; public class SlideViewModel { public int Id { get; set; } public SlideMotionType Motion { get; set; } } }
SharpRedis/Client.cs
at0717/SharpRedis
0
7057954
<gh_stars>0 using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Runtime.InteropServices.ComTypes; using StackExchange.Redis; using FastReflection; namespace SharpRedis { public class Client { static public long GetSequenceId<T>() { ...
test/OptionTest.cs
su-rabbit/NDesk.Options
13
7057955
<filename>test/OptionTest.cs // ***************************************************************************** // File: OptionTest.cs // Solution: NDesk.Options // Project: Tests // Date: 09/26/2017 // Author: <NAME> // Copywrite: Bio-Hazard Industries - 1998-2017 // ***********************...
API/Controllers/MessagesController.cs
iMelki/blog-sys-api
0
7057956
<filename>API/Controllers/MessagesController.cs using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using Microsoft.AspNetCore.Authorization; using AutoMapper; using Microso...
WinDoControls/Controls/DateTime/NullableDateTimePicker.cs
lazycrazy/WinDoAdmin
3
7057957
<filename>WinDoControls/Controls/DateTime/NullableDateTimePicker.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; using System.ComponentModel; namespace WinDoControls.Controls { public class NullableDateTimePicker : DateTimePicker { c...
ReflectionAnalyzers.Tests/REFL017DontUseNameofWrongMemberTests/ValidCode.cs
jnm2/ReflectionAnalyzers
0
7057958
<reponame>jnm2/ReflectionAnalyzers namespace ReflectionAnalyzers.Tests.REFL017DontUseNameofWrongMemberTests { using Gu.Roslyn.Asserts; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Diagnostics; using NUnit.Framework; internal class ValidCode { private static readonly Diagno...
Source/Source/Tools/GameDesignerEditor/Controls/luaEditor/fireball_src/Fireball.Core/Drawing/Shapes/ShapeLine.cs
uvbs/FullSource
2
7057959
<reponame>uvbs/FullSource // Copyright (C) 2005 <NAME> <<EMAIL>> // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either // version 2.1 of the License, or (at your ...
Xamarin.PropertyEditing.Windows/DoubleToQuantityConverter.cs
netonjm/Xamarin.PropertyEditing
0
7057960
<reponame>netonjm/Xamarin.PropertyEditing using System; using System.Globalization; using System.Windows.Data; using System.Windows.Markup; namespace Xamarin.PropertyEditing.Windows { [ValueConversion (typeof (double), typeof (string))] internal class DoubleToQuantityConverter : MarkupExtension, IMultiValueConverter...
src/CursoOnline.Ioc/Profiles/EntityToDTOProfile.cs
joasimonson/CursoOnline
0
7057961
<gh_stars>0 using AutoMapper; using CursoOnline.Dominio.Alunos; using CursoOnline.Dominio.Cursos; using CursoOnline.Dominio.Matriculas; namespace CursoOnline.Ioc.Profiles { public class EntityToDTOProfile : Profile { public EntityToDTOProfile() { CreateMap<Aluno, AlunoDTO>() ...
test/Routine.Test/Engine/Reflection/MethodInfoTest.cs
multinetinventiv/routine
3
7057962
<gh_stars>1-10 using System; using System.Linq; using NUnit.Framework; using Routine.Engine.Reflection; using Routine.Test.Engine.Reflection.Domain; using RoutineTest.OuterDomainNamespace; using System.Diagnostics.CodeAnalysis; namespace Routine.Test.Engine.Reflection { [TestFixture] public class MethodInfoTes...
SpiceSharp/Components/Waveforms/Pwl/Pwl.Instance.cs
dr-vij/SpiceSharp
116
7057963
using SpiceSharp.Simulations; using SpiceSharp.Simulations.IntegrationMethods; using System; using System.Collections.Generic; using System.Linq; namespace SpiceSharp.Components { public partial class Pwl { /// <summary> /// An instance of the <see cref="IWaveform"/> interface for a <see cref=...
FinancialData.Manager/FinancialDataBuffer.cs
eduardo-yuschuk/cs_trading
0
7057964
<gh_stars>0 /* Copyright 2014 <NAME> (<EMAIL>) */ using System.Collections.Generic; using FinancialData.Shared; namespace FinancialData.Manager { public class FinancialDataBuffer { private int _bufferSize; private int _samplesCount = 0; private List<IQuote> _quotes = new List<IQuot...
MagiCloudWeb/Pages/TrashCan.razor.cs
magico13/MagiCloud
1
7057965
using MagiCommon.Comparers.ElasticFileInfoComparers; using MagiCommon.Models; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace MagiCloudWeb.Pages { public partial class TrashCan { private List<ElasticFileInfo...
src/net45/WampSharp/WAMP2/V2/Core/Contracts/Rpc/IWampCaller.cs
Jopie64/WampSharp
361
7057966
using System.Collections.Generic; using WampSharp.Core.Contracts; using WampSharp.Core.Message; namespace WampSharp.V2.Core.Contracts { public interface IWampCaller : IWampCaller<object>, IWampError<object> { } public interface IWampCaller<TMessage> { [WampHandler(WampMessageType.v2Result...