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
Assets/Teatro/Core/CoreRenderer.cs
keijiro/Teatro
181
7053208
using UnityEngine; using UnityEngine.Rendering; using Emgen; namespace Teatro { [ExecuteInEditMode] public class CoreRenderer : MonoBehaviour { #region Public Properties [SerializeField] float _maskFrequency = 0.5f; public float maskFrequency { get { return _m...
Core/Darkorbit/Commands/Command.cs
Dekryptor/PolskaBotCore
16
7053209
using System.IO; using MiscUtil.IO; using MiscUtil.Conversion; namespace PolskaBot.Core.Darkorbit.Commands { public abstract class Command { protected MemoryStream memoryStream; protected EndianBinaryWriter packetWriter; public Command() { memoryStream = new Memory...
Starfield.Core/Item/Items/ItemWhiteCarpet.cs
dskprt/nylium
10
7053210
// FILE AUTOGENERATED. DO NOT MODIFY namespace Starfield.Core.Item.Items { [Item("minecraft:white_carpet", 350, 64, 391)] public class ItemWhiteCarpet : BlockItem { } }
Chapter06/src/EA.TMS.BusinessLayer/Managers/TenantManagement/TenantManager.cs
wagnerhsu/packt-Enterprise-Application-Architecture-with-NET-Core
0
7053211
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using EA.TMS.Common.Entities; using EA.TMS.BusinessLayer.Core; using EA.TMS.DataAccess.Core; using Microsoft.Extensions.Logging; using EA.TMS.Common.Facade; using EA.TMS.Common.Core; using EA.TMS.BusinessLayer.Managers.Ser...
ORM Cookbook/Recipes.Tortuga.Chain/BulkInsert/BulkInsertTests.cs
diev/DotNet-ORM-Cookbook
247
7053212
using Microsoft.VisualStudio.TestTools.UnitTesting; using Recipes.BulkInsert; using Recipes.Chain.Models; namespace Recipes.Chain.BulkInsert { [TestClass] public class BulkInsertTests : BulkInsertTests<EmployeeSimple> { protected override IBulkInsertScenario<EmployeeSimple> GetScenario() {...
Assets/Scripts/CostColor.cs
Siki1999/ZombieStrike_Code
0
7053213
<gh_stars>0 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class CostColor : MonoBehaviour { [SerializeField] private List<Text> cost = new List<Text>(); private void Update() { foreach(Text t in cost) { int costMone...
src/TravelDream.Services.ViewModels/ErrorViewModel.cs
bMedarski/TravelDream.WebApp
0
7053214
namespace TravelDream.Services.ViewModels { public class ErrorViewModel { public string Name { get; set; } public string RequestId { get; set; } public bool ShowRequestId { get; set; } } }
SigningServer.Android/Apk/Manifest/Manifest.cs
hexagon-geo-surv/SigningServer
7
7053215
<reponame>hexagon-geo-surv/SigningServer<gh_stars>1-10 /* * Copyright (C) 2016 The Android Open Source Project * Copyright (C) 2018 <NAME> (C# port based on oreo-master) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You ma...
ImputationH31per/ImputationH31per/Modele/Entite/ITacheTfs.cs
blueneosky/Bag
0
7053216
<gh_stars>0 using System; using System.Collections.Generic; using System.Linq; namespace ImputationH31per.Modele.Entite { public interface ITacheTfs<out TTicketTfs, out TImputationTfs> : IInformationTacheTfs where TTicketTfs : ITicketTfs<TImputationTfs> where TImputationTfs : IImputationTf...
RedSky UNITY/Assets/Scripts Non Monobehaviour/IFlightBehaviour.cs
wtarr/REDSKY_UNITY3D
3
7053217
public interface IFlightBehaviour { void Accelerate(); void Decelerate(); void PitchUp(); void PitchDown(); void RollLeft(); void RollRight(); void YawLeft(); void YawRight(); }
UnityVrSandbox/Assets/External/New UI Widgets/Editor/ListViewPaginatorEditor.cs
cschladetsch/UnityTemplate
9
7053218
<gh_stars>1-10 namespace UIWidgets { using System; using System.Collections.Generic; using UnityEditor; using UnityEngine; /// <summary> /// ListViewPaginator editor. /// </summary> [CustomEditor(typeof(ListViewPaginator), true)] [CanEditMultipleObjects] public class ListViewPaginatorEditor : Editor { Di...
WpfHexEditor.UnitTest/Core/Bytes/ByteConvertersTest.cs
GabLeRoux/WpfHexEditorControl
5
7053219
<reponame>GabLeRoux/WpfHexEditorControl using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Diagnostics; using WpfHexaEditor.Core.Bytes; namespace HexEditUnitTest.Core.Bytes { [TestClass] public class ByteConvertersTest { [TestMethod] public void LongToHexTest() { var ...
AutonomousAgentsGE2/SpaceWar/Assets/Scripts/GameManagement/ActivateWinner.cs
joesphbreslin/SpaceWar2
0
7053220
<reponame>joesphbreslin/SpaceWar2<gh_stars>0 using UnityEngine.UI; using UnityEngine; public class ActivateWinner : MonoBehaviour { public GameObject GundamEF; public GameObject GundamZion; Text text; private void Start() { text = GetComponent<Text>(); if (GameManager._victor == ...
src/Web.Api/Presenters/RegisterUserPresenter.cs
khteh/AspNetCoreApiStarter
3
7053221
using System.Net; using Web.Api.Core.DTO.UseCaseResponses; using Web.Api.Core.Interfaces; using Web.Api.Models.Response; using Web.Api.Serialization; namespace Web.Api.Presenters { public sealed class RegisterUserPresenter : PresenterBase<UseCaseResponseMessage, RegisterUserResponse> { public override...
Game/Gui/Padding.cs
mrwillbarnz/ualbion
0
7053222
<filename>Game/Gui/Padding.cs using System.Numerics; namespace UAlbion.Game.Gui { public class Padding : UiElement, IFixedSizeUiElement { readonly Vector2 _size; public Padding(int x, int y) : base(null) { _size = new Vector2(x, y); } public override Vector2 GetSize() => _size; } }
Samples/NET 4.6/WF_WCF_Samples/WF/Basic/Services/DurableDuplex/CS/DurableDuplexClient/Program.cs
jdm7dv/visual-studio
1
7053223
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------- using System.Activities; namespace Microsoft.Samples.DurableDuplex { class Program { static void Main(str...
src/SimplerSoftware.EntityFrameworkCore.SqlServer.NodaTime/Query/ExpressionTranslators/BaseNodaTimeMemberTranslator.cs
Flueworks/EFCore.SqlServer.NodaTime
77
7053224
using JetBrains.Annotations; using Microsoft.EntityFrameworkCore.Diagnostics; using Microsoft.EntityFrameworkCore.Query; using Microsoft.EntityFrameworkCore.Query.SqlExpressions; using NodaTime; using System; using System.Collections.Generic; using System.Reflection; using System.Text; namespace Microsoft.EntityFrame...
test/IntegrationTests/ActivatorTests.cs
phiplatform/metadata
2
7053225
<filename>test/IntegrationTests/ActivatorTests.cs using System; using NoRealm.Phi.Metadata.Activator; using NoRealm.Phi.Metadata.Test.Data; using NoRealm.Phi.Metadata.Test.Fixture; using Xunit; namespace NoRealm.Phi.Metadata.Test.IntegrationTests { public class ActivatorTests : IClassFixture<StandardFlow> { ...
globaledu.Application/Validator/UserQualificationsValidator.cs
vakil008/global
0
7053226
 //using globaledu.Application.Features.Products.Queries.GetById; //using globaledu.Domain.Entities.Catalog; //using AutoMapper; //using FluentValidation; //using System.Text.RegularExpressions; //using System; //using globaledu.Application.Features.Lead.Commands.Create; //namespace globaledu.Application.Validator //...
ShoppySolution/Interfaces/BL/IProductImageBL.cs
Victoralm/AspNetCore5AndVueJSFromZeroToHero
0
7053227
<gh_stars>0 using Entities; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace Interfaces.BL { public interface IProductImageBL { ProductImageDO Add(ProductImageDO model); bool Update(Prod...
Programming Fundamentals C#/Strings and Text Processing Exercises/Letters Change Numbers/LettersChangeNumbers.cs
BlueDress/School
0
7053228
<reponame>BlueDress/School using System; using System.Text; namespace Letters_Change_Numbers { public class LettersChangeNumbers { public static void Main() { var tokens = Console.ReadLine().Split(new[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); var result = 0d; ...
src/go-src-converted/cmd/go/internal/work/exec_toolchainInterface.cs
rgwood/go2cs
249
7053230
<gh_stars>100-1000 //--------------------------------------------------------- // <auto-generated> // This code was generated by a tool. Changes to this // file may cause incorrect behavior and will be lost // if the code is regenerated. // // Generated on 2020 October 09 05:46:18 UTC // </auto-generate...
src/Zoey.Quartz.Application/Impl/TaskLogService.cs
NameIsBad/Zoey.Quartz
3
7053231
using Zoey.Quartz.Domain.Models; using Zoey.Quartz.Infrastructure.Repositorys; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Zoey.Quartz.Application { public class TaskLogService : ITaskLogService { private readonly ITaskLogRepository _taskLog; public...
Regulus.Utility/Utility/KeyReader.cs
bmjoy/Regulus
1
7053232
namespace Regulus.Utility { public class KeyReader { private readonly char _End; readonly System.Collections.Generic.List<char> _Chars; public event System.Action<char[]> DoneEvent; public KeyReader(char end) { this._End = end; _Chars = new Syst...
AncientMysteries/Items/Props/CrashErrorDialog.cs
BThree496/AncientMysteriesMod
9
7053233
using DuckGame; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AncientMysteries.Items { [EditorGroup(group_Props)] [MetaImage(tex_Props_CrashErrorDialog)] [MetaInfo(Lang.Default, "Crash Error Dialog", "desc")] [MetaInfo(Lan...
basic-algorithm/Exercice-41/Program.cs
turwaith/csharp-w3resource
0
7053234
<filename>basic-algorithm/Exercice-41/Program.cs /* Write a C# Sharp program that accept two integers and return true if either one is 5 or their sum or difference is 5 */ using System; namespace Exercice_41 { class Program { static void Main(string[] args) { string userInput = Str...
Qsor.Game/Beatmaps/BeatmapContainer.cs
JustinOsu/Qsor
7
7053235
<reponame>JustinOsu/Qsor<gh_stars>1-10 using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Bindables; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Textures; using Qsor.Game.Graphics.Containers; namespace Qsor.Game.Beatmaps { public ...
src/AllTests/AllTests/App.xaml.cs
helfstein/poc-xamarin-tests
0
7053236
<reponame>helfstein/poc-xamarin-tests using AllTests.Services; using AllTests.Pages; using System; using Xamarin.Forms; using Xamarin.Forms.Xaml; using System.Threading.Tasks; namespace AllTests { public partial class App : Application { public App() { InitializeComponent(); Depe...
_Common/WildcardPattern.cs
Shockah/Stardew-Valley-Mods
1
7053237
using System; using SRegex = System.Text.RegularExpressions.Regex; namespace Shockah.CommonModCode { public static class WildcardPatterns { public static IWildcardPattern Parse(string pattern) { if (pattern.Contains('*') || pattern.Contains('?') || pattern.Contains('|')) return new IWildcardPattern.Impl(...
SurveyNET_P2/SurveyWeb/Controllers/HomeController.cs
xtuser777/VSFIPP2018
0
7053238
<filename>SurveyNET_P2/SurveyWeb/Controllers/HomeController.cs using Survey.ViewModels; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using cl = Survey.Controllers; namespace SurveyWeb.Controllers { public class HomeController : Controller { ...
local_dao/DbExecuter.cs
gerardo-m/simple_payroll_desktop
0
7053239
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data.SQLite; namespace simple_payroll_desktop.local_dao { public class DbExecuter { private int lastId; public void executeQuery(string query, Dictionary<string, o...
ToMigrate/Raven.Tests/Bugs/Issue199.cs
ryanheath/ravendb
1
7053240
<reponame>ryanheath/ravendb //----------------------------------------------------------------------- // <copyright file="Issue199.cs" company="Hibernating Rhinos LTD"> // Copyright (c) <NAME>. All rights reserved. // </copyright> //----------------------------------------------------------------------- using ...
SimpleRetail/Forms/Data/SupplierForm.Designer.cs
BayuDC/SimpleRetail
1
7053241
<reponame>BayuDC/SimpleRetail  namespace SimpleRetail.Forms.Data { partial class SupplierForm { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being us...
VisualStudio/Refugiados21/Views/Home/Ajudadores.cshtml
Andre-Costa-8224/ProjetoSquad21
0
7053242
@{ ViewData["Title"] = "Anjos"; } <main> <section style="padding: 10px;" class="section"> <h3>Esta área é onde anjos poderão criar e atender dádivas.</h3> <p>Caso tenha dúvidas sobre algum assunto relacionado, entre em contato conosco através do nosso email: <EMAIL></p> </section> <se...
Chapter 6/DataStructures/DataStructures/src/DataStructures/Program.cs
kunal2494/ASP.NET-Core-1.0-High-Performance
19
7053243
<filename>Chapter 6/DataStructures/DataStructures/src/DataStructures/Program.cs using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; namespace DataStructures { public class Program { public static void Main(string[] args) { var rng = new Rand...
p21-neural/src/Network.cs
TempestasLudi/superbrain
0
7053244
<gh_stars>0 using System; using System.Collections.Generic; using System.Linq; namespace p21_neural { public class Network { public Node[] InNodes = new Node[0]; public Node[] OutNodes = new Node[0]; private Dictionary<long, Node> _nodes = new Dictionary<long, Node>(); private D...
landscape/sites/SiteEnumerator.cs
LANDIS-II-Foundation/Core-Model-v5
0
7053245
<reponame>LANDIS-II-Foundation/Core-Model-v5 using Edu.Wisc.Forest.Flel.Grids; using System.Collections; using System.Collections.Generic; namespace Landis.Landscape { /// <summary> /// Enumerator for all the sites in a landscape. /// </summary> public class SiteEnumerator : IEnumerator<Site> { private bool ...
YTMDesktopPlugin/Commands/TrackInfoCommand.cs
XeroxDev/Loupedeck-plugin-YTMDesktop
2
7053246
namespace Loupedeck.YTMDesktopPlugin.Commands { using System; using System.Diagnostics; using System.IO; using System.Net; using System.Reactive.Linq; using System.Reactive.Subjects; using Classes.EventArgs; using Helper; using Services; using static Helper.DrawingHelper; ...
Inversion.Messaging.DynamoDB/Process/DynamoDBEngineController.cs
inversion-org/inversion-messaging
1
7053247
using System; using Inversion.Data; using Inversion.Messaging.Extensions; using Inversion.Messaging.Model; namespace Inversion.Messaging.Process { public class DynamoDBEngineController : DynamoDBStore, IEngineController { public DynamoDBEngineController(string serviceUrl, string accessKey, ...
Client/Login.cs
tongtzeho/MonstersCastle
1
7053248
<filename>Client/Login.cs using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; using UnityEngine; public class Login : MonoBehaviour { // assigned in editor public GameObject startPanel; public GameObject registerPanel; public GameObject postRegisterPanel; ...
Solution1/DataAccessTest/Repositories/CourseRepositoryTest.cs
tabby336/Solution1
4
7053249
<gh_stars>1-10 using System; using DataAccess; using DataAccess.Models; using DataAccess.Repositories; using DataAccess.Repositories.Interfaces; using FluentAssertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using System.Collections.Generic; using System.Linq; using Microsoft.EntityFrameworkCore; using Mo...
TurretAnimations/Verbs/VerbProperties_Recoil.cs
SmashPhil/TurretAnimations
0
7053250
using System; using System.Collections.Generic; using UnityEngine; using Verse; namespace TurretAnimations { public class VerbProperties_Recoil : VerbProperties_Animated { public RecoilProperties recoil = new RecoilProperties(); } }
RiftBot.Database/Migrations/20200830011354_AddedActivityHiscores.cs
skillraider/RiftBot
0
7053251
using System; using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; using RiftBot.Types; namespace RiftBot.Database.Migrations { public partial class AddedActivityHiscores : Migration { protected override void Up(MigrationBuilder migrationBuilder) ...
DNN Platform/Providers/HtmlEditorProviders/RadEditorProvider/Dialogs/SaveTemplate.aspx.designer.cs
pierre-loup-tristant-sonarsource/Dnn.Platform
4
7053252
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //----------------------------------------...
sources/AsyncAndParallel/PushPullMechanism/Listener.cs
svlcode/AsyncParalell
0
7053253
<reponame>svlcode/AsyncParalell<filename>sources/AsyncAndParallel/PushPullMechanism/Listener.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PushPullMechanism { internal class Listener : IListener { public event...
src/InformationSchema.Data/Table.cs
aberteau/DbTools
0
7053254
using System; namespace DbTools.InformationSchema.Data { public class Table { public string Catalog { get; set; } public string Schema { get; set; } public String Name { get; set; } public TableType Type { get; set; } } }
150.Christmas Tree/ChristmasTree.cs
vanncho/SoftUni-Entrance-Exam-Prepare
0
7053255
using System; class ChristmasTree { static void Main() { int n = int.Parse(Console.ReadLine()); char ch = '\''; Console.WriteLine("{0}^{0}", new string(ch, n)); int snowsCount = n - 1; int leavesCount = 3; for (int i = 0; i < n / 2; i++) { ...
Module 16 C#/IEnumerable Vs IQueriable/IEnumerableIQueriable.Demo/IEnumerableIQueriable.Demo/Data/EmployeesDbContextFactory.cs
AhmedKhalil777/DOTNET-Learning
0
7053256
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace IEnumerableIQueriable.Demo.Data { public class EmployeesDbContextFactory : IDesignTimeDbContextFactory<EmployeesDbContext> { public EmployeesDbContext CreateDbContext(string[] args) { var bui...
Gol.Solution/Gol.Application/Presentation/ViewModels/MainWindowViewModel.cs
devowl-net/gameoflife
0
7053257
using System; using System.IO; using Gol.Application.Presentation.Views; using Gol.Application.Utils; using Gol.Core.Algorithm; using Gol.Core.Controls.Models; using Gol.Core.Prism; namespace Gol.Application.Presentation.ViewModels { /// <summary> /// <see cref="MainWindow"/> ViewModel. /// ...
tests/Eshva.Poezd.Core.UnitTests/TestSubjects/ProvidingNothingQueueNamePatternsProvider.cs
troy909/Eshva.Poezd
0
7053258
<gh_stars>0 #region Usings using System.Collections.Generic; using Eshva.Poezd.Core.Pipeline; #endregion namespace Eshva.Poezd.Core.UnitTests.TestSubjects { /// <summary> /// An empty collection of message queue names. /// </summary> internal sealed class ProvidingNothingQueueNamePatternsProvider : IQueueNam...
src/StarDust.CasparCG.net.OSC.EventHub/Events/Stage/LayerTypeEventArgs.cs
videaste2050/StartDust.CasparCG.net
15
7053259
namespace StarDust.CasparCG.net.OSC.EventHub.Events { public class LayerTypeEventArgs : StageEventArgs { public LayerTypeEventArgs(string layerType, ushort channelId, ushort layerId) { ChannelId = channelId; LayerId = layerId; LayerType = layerType; }...
ScrapMsiaData/Program.cs
NaimJamalludin/ScrapMsiaData
0
7053260
<gh_stars>0 using HtmlAgilityPack; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using System.Xml.Linq; namespace ScrapMsiaData { class Program { static void Main(string[] args) { // Start scraping. ...
src/_2020/Day2.cs
tiberiushunter/advent-of-code
1
7053261
<filename>src/_2020/Day2.cs<gh_stars>1-10 using System; using System.Text.RegularExpressions; namespace AdventOfCode._2020 { class Day2 : DayBase { private readonly string[] _input; private readonly Regex _regEx = new Regex(@"(\d+)-(\d+) (.): (\w+)"); /// <summary> /// --- Day ...
ConstraintTriangles/ConstraintTriangles/MainformPartial.cs
eglrp/ConstraintTriangles
0
7053262
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; ///在实际的应用之中,坐标应该是double类型的,这里是有int是因为画布只能捕捉整形像素 ///在三维计算中也是同样的原理,映射到一个平面上即可计算出三角网 namespace ConstraintTriangles { //////主窗体伙伴类,用到的部分结构体与内置方法 partial class MainForm { protected readon...
Hospital_ERP_VS13-WCF_WF/AH.HR/Facade/IHRWS.cs
atiq-shumon/DotNetProjects
0
7053263
<reponame>atiq-shumon/DotNetProjects using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; using AH.HR.MODEL; using AH.Shared.MODEL; using AH.ORGMS.MODEL; namespace AH.HR.Facade { // NOTE: You can use the "Rename" comma...
src/Chell/Internal/ObjectDumper.cs
mayuki/Chell
33
7053264
<filename>src/Chell/Internal/ObjectDumper.cs using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Text.Encodings.Web; using System.Text.Json; using System.Text.Unicode; using System.Threading.Tasks; namespace Chell.Internal { internal static c...
MyApp/MyApp/MyService.cs
SDolha/MockingEntityFramework
0
7053266
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MyApp.Wrappers; namespace MyApp { /// <summary> /// The service that uses Entity Framework to perform operations. /// This service needs to be unit tested. /// </summary> publi...
NKnife.App.WebsiteBuilder/Win/Common/HTMLDesigner/ContainCtrls/HTMLDesignPart.cs
xknife-erian/nknife.jeelusrc
0
7053267
<filename>NKnife.App.WebsiteBuilder/Win/Common/HTMLDesigner/ContainCtrls/HTMLDesignPart.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Text; using mshtml; using System.Windows.Forms; namespace Jeelu.Win { public partial class H...
src/KubeClient/Models/generated/IngressV1Beta1.cs
ahmelsayed/dotnet-kube-client
178
7053268
<reponame>ahmelsayed/dotnet-kube-client<gh_stars>100-1000 using Newtonsoft.Json; using System; using System.Collections.Generic; using YamlDotNet.Serialization; namespace KubeClient.Models { /// <summary> /// Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by ...
Blitzy/ViewModel/SettingsViewModel.cs
TheSylence/Blitzy_old
0
7053269
<reponame>TheSylence/Blitzy_old<filename>Blitzy/ViewModel/SettingsViewModel.cs using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Data.Common; using System.Globalization; using System.IO; using System.Linq; using System.Net; using System.Reflection; using System...
BusinessLayer/Concrete/Message2Manager.cs
ilkayGl/CoreBlogProject
9
7053270
<reponame>ilkayGl/CoreBlogProject<filename>BusinessLayer/Concrete/Message2Manager.cs using BusinessLayer.Abstract; using DataAccessLayer.Abstract; using EntityLayer.Concrete; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BusinessLayer.Con...
Candor.Tasks.MultiWorkerService/WorkerRoleService.cs
michael-lang/candor-common
9
7053271
<reponame>michael-lang/candor-common using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Linq; using System.ServiceProcess; using System.Text; using System.Threading.Tasks; using Candor.Configuration.Provider; namespace Candor.Tasks.Mu...
Eflatun.ReflectiveECS.Core/Managers/SystemsDatabase.cs
starikcetin/Eflatun.ReflectiveECS
8
7053272
using System.Collections.Generic; using System.Collections.ObjectModel; using Eflatun.ReflectiveECS.Core.ECS; namespace Eflatun.ReflectiveECS.Core.Managers { public class SystemsDatabase { private readonly List<ISystem> _registeredSystems = new List<ISystem>(); public ReadOnlyCollection<ISyste...
src/Nemandi.PluginBase/Configurations/TextConfigItem.cs
Sheey11/Nemandi
1
7053273
<reponame>Sheey11/Nemandi<filename>src/Nemandi.PluginBase/Configurations/TextConfigItem.cs using System; namespace Nemandi.PluginBase.Configurations { public class TextConfigItem : ConfigurationItem { public ConfigurationTypes Types => ConfigurationTypes.Text; public new string _value { get...
UserServices/UserServices.FrondEnd/Controllers/ConfirmController.cs
BOONRewardsInc/rewards
13
7053274
// // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. // // // <summary> // The confirm controller. // </summary> // ------------------------------------------------------------------------------------...
Qsi/Tree.Base/Expressions/QsiBindParameterExpressionNode.cs
ScriptBox99/chequer-qsi
36
7053275
<gh_stars>10-100 using System.Collections.Generic; using System.Linq; using Qsi.Data; namespace Qsi.Tree { public sealed class QsiBindParameterExpressionNode : QsiExpressionNode, IQsiBindParameterExpressionNode { public QsiParameterType Type { get; set; } public string Prefix { get; set; } ...
src/API/Elf.Api/Features/UpdateTagCommand.cs
EdiWang/LinkForwarder
44
7053276
using Elf.Api.Data; using System.ComponentModel.DataAnnotations; namespace Elf.Api.Features; public class UpdateTagRequest { [Required] [MaxLength(32)] public string Name { get; set; } } public record UpdateTagCommand(int Id, UpdateTagRequest Payload) : IRequest<int>; public class UpdateTagCommandHandl...
LoggingKata/TacoParser.cs
chan-brandon/TacoParser
0
7053277
<reponame>chan-brandon/TacoParser<filename>LoggingKata/TacoParser.cs using System; using System.Linq; namespace LoggingKata { /// <summary> /// Parses a POI file to locate all the Taco Bells /// </summary> public class TacoParser { readonly ILog logger = new TacoLogger(); ...
Knihovna/Knihovna/Form1.cs
ullmannV/Knihovna
0
7053278
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Knihovna { public partial class Form1 : Form { ...
SimpleImageViewer/Utilities/SivConstants.cs
escruz/Simple-Image-Viewer
0
7053279
 namespace SimpleImageViewer.Utilities { public static class SivConstants { public static string SupportedFileTypes = "Image files (*.jpg, *.jpeg, *.png, *.gif) | *.jpg; *.jpeg; *.png; *.gif|" + "Jpeg files (*.jpg, *.jpeg) | *.jpg; *.jpeg|" + "Png files (*.png) | *.png|" + ...
LightBulbsStore/LightBulbsStore/ViewComponents/CartViewComponent.cs
tedoff56/ASP.NET-Core-SoftUni-Project
0
7053280
using LightBulbsStore.Core.Models; using LightBulbsStore.Core.Services.Contracts; using LightBulbsStore.Infrastructure.Data.Models; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Mvc; using System.Security.Claims; namespace LightBulbsStore.ViewComponents { public class CartViewComponent : ViewCom...
AWSPriceListApi/GetProductResponse.cs
bamcis-io/AWSPriceListApi
0
7053281
<gh_stars>0 using BAMCIS.AWSPriceListApi.Model; using System.Net.Http; namespace BAMCIS.AWSPriceListApi { /// <summary> /// A response for a get product request /// </summary> public sealed class GetProductResponse : AWSPriceListApiResponse<ProductOffer> { #region Public Properties ...
src/XIVLauncher/Support/PackGenerator.cs
Mortalitas/FFXIVQuickLauncher
0
7053282
using System; using System.IO; using System.IO.Compression; using System.Text; using XIVLauncher.Common; using ZipArchive = System.IO.Compression.ZipArchive; namespace XIVLauncher.Support { public static class PackGenerator { public static string SavePack() { var outFile = new FileI...
Runtime/Core/Interfaces/IGameEvent.cs
kadinche/Kassets
16
7053283
<gh_stars>10-100 using System; namespace Kadinche.Kassets { public interface IGameEventRaiser { void Raise(); } public interface IGameEventRaiser<in T> : IGameEventRaiser { void Raise(T param); } public interface IGameEventHandler { IDisposable Subscrib...
ModernSlavery.Hosts.Web.Tests/Functional tests/Search And Compare/Orgs_Included_In_Group-Submission_Appear_In_Results.cs
mccabesp/ModernSlavery-Beta
0
7053285
using Geeks.Pangolin; using ModernSlavery.Core.Extensions; using ModernSlavery.Core.Interfaces; using ModernSlavery.Infrastructure.Hosts; using ModernSlavery.Testing.Helpers; using NUnit.Framework; using NUnit.Framework.Interfaces; using System; using System.Diagnostics; using System.Threading.Tasks; using static Mode...
core/BGC/Program.cs
scatteredcorp/core
4
7053287
<reponame>scatteredcorp/core<gh_stars>1-10 using System; using System.Security.Cryptography; using System.Text; using BGC.Contracts; using BGC.Wallet; namespace BGC { internal static class BGC { private static void Main(string[] args) { CLI.CLI.Run(args); } ...
src/SFA.DAS.ApplyService.InternalApi.UnitTests/GatewayOrganisationChecksControllerTests.cs
uk-gov-mirror/SkillsFundingAgency.das-apply-service
0
7053288
<gh_stars>0 using System; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; using SFA.DAS.ApplyService.Application.Apply.Roatp; using SFA.DAS.ApplyService.InternalApi.Controllers; using SFA.DAS.ApplyService.InternalApi.Infrastructure; namespace SFA.DAS.ApplyService.InternalApi.UnitTests { publ...
templates/Bellatrix.Desktop.GettingStarted/30. Add New Element Wait Methods/WaitToHaveSpecificContentStrategy.cs
quantum-grit/BELLATRIX
1
7053289
<filename>templates/Bellatrix.Desktop.GettingStarted/30. Add New Element Wait Methods/WaitToHaveSpecificContentStrategy.cs using System; using Bellatrix.Desktop.Untils; using OpenQA.Selenium; using OpenQA.Selenium.Appium.Windows; namespace Bellatrix.Desktop.GettingStarted.ExtensionMethodsWaitMethods { // 1. Imagi...
src/Mews.Fiscalization.Greece/Mapper/InvoiceDocumentMapper.cs
yurypat/fiscalization-greece
0
7053290
using Mews.Fiscalization.Greece.Extensions; using Mews.Fiscalization.Greece.Model; using System; using System.Linq; using TaxType = Mews.Fiscalization.Greece.Model.TaxType; namespace Mews.Fiscalization.Greece.Mapper { public class InvoiceDocumentMapper { public InvoiceDocumentMapper(InvoiceDocument in...
Application/Interfaces/Repositories/IPrintWorkRepositoryAsync.cs
mahmoodsharifi/printAnywhere
1
7053291
<reponame>mahmoodsharifi/printAnywhere<filename>Application/Interfaces/Repositories/IPrintWorkRepositoryAsync.cs // Copyright © [insert list or range of years of product releases for this product] VMware, Inc. All rights reserved. // This product is protected by copyright and intellectual property laws in the United S...
Scalesque.Tests/Validate/When_accumulating_failures.cs
j3ffb/scalesque
3
7053292
<gh_stars>1-10 using System; using System.Collections.Generic; using FluentAssertions; using NUnit.Framework; using Scalesque.Collections; namespace Scalesque.Validate { public class When_merging_failures : UnitTestBase { private Validation<string, double> check1; private Validation<strin...
Bidirectional_interface/Assets/Scripts/ExpLearnGateColor.cs
hukohli/Bidirectional_Interface
0
7053293
<gh_stars>0 using System.Collections; using System.Collections.Generic; using UnityEngine; //[RequireComponent(typeof(Collider))] public class ExpLearnGateColor : MonoBehaviour { public Material collidedMaterial; public Material standardMaterial; public Material crossedMaterial; public Material crosse...
SpeechkinApp/Settings/SettingsWindowModel.cs
alexs0ff/speechkin
0
7053294
<gh_stars>0 using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; using System.Text; using System.Threading.Tasks; using CSCore.CoreAudioAPI; namespace SpeechkinApp.Settings { public class Setti...
Assets/Scripts/StateMachine/Conditions/EqualsAttributeCondition.cs
DesDeaDer/GameLikeAsArchHero
0
7053295
<filename>Assets/Scripts/StateMachine/Conditions/EqualsAttributeCondition.cs using System; namespace Game { public class EqualsAttributeCondition<A, T> : AttributeCondition<A> where A : AttributeBase<T> where T : IEquatable<T> { public override bool IsCondition(A first, A second) => fir...
LbmLib/Language/ListMethodsAsCollectionsInterfacesExtensions.cs
lbmaian/LbmLib
0
7053296
<gh_stars>0 using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; namespace LbmLib.Language { public static class ListMethodsAsCollectionsInterfacesExtensions { public static ReadOnlyCollection<T> AsReadOnly<T>(this IList<T> list) { if (list is ReadOnlyColle...
src/logix/src/core/contracts/IExpr.cs
0xCM/z0
0
7053297
//----------------------------------------------------------------------------- // Copyright : (c) <NAME>, 2020 // License : MIT //----------------------------------------------------------------------------- namespace Z0 { /// <summary> /// Characterizes an expression /// </summary> public inte...
WDE.DatabaseEditors/ViewModels/RowPickerViewModel.cs
lyosky/WoWDatabaseEditor
0
7053298
<reponame>lyosky/WoWDatabaseEditor using System; using System.Collections.ObjectModel; using System.Threading.Tasks; using System.Windows.Input; using Prism.Commands; using Prism.Events; using WDE.Common; using WDE.Common.Events; using WDE.Common.Managers; using WDE.Common.Services; using WDE.Common.Services.MessageBox...
C# OOP Basics/Inheritance - Exercise/03. Mankind/Human.cs
Rusev12/Software-University-SoftUni
0
7053299
<filename>C# OOP Basics/Inheritance - Exercise/03. Mankind/Human.cs namespace _03.Mankind { using System; using System.Text; public class Human { private const int FirstNameMinLength = 4; private const int LastNameMinLength = 3; private string firstName; private string...
BWYSDP/com/ModelDesignProject.cs
zyylonghai/BWYSDP
0
7053300
using System; using System.Collections.Generic; using System.Linq; using System.Text; using SDPCRL.COM.ModelManager; using System.Collections; using System.Windows.Forms; using System.Reflection; using SDPCRL.CORE; using SDPCRL.COM; using SDPCRL.CORE.FileUtils; using System.Data; using SDPCRL.COM.ModelManager.FormTemp...
src/SFA.DAS.Reservations.Application.UnitTests/ProviderPermission/Handler/WhenValidatingUpdatePermissionsEvent.cs
uk-gov-mirror/SkillsFundingAgency.das-reservations-jobs
1
7053301
<filename>src/SFA.DAS.Reservations.Application.UnitTests/ProviderPermission/Handler/WhenValidatingUpdatePermissionsEvent.cs<gh_stars>1-10 using System; using System.Collections.Generic; using FluentAssertions; using NUnit.Framework; using SFA.DAS.ProviderRelationships.Messages.Events; using SFA.DAS.ProviderRelationshi...
Assets/ulox-working/Runtime/TreeWalker/Library/AssertLibrary.cs
stevehalliwell/ulox-work
7
7053302
namespace ULox { public class AssertLibrary : ILoxEngineLibraryBinder { public void BindToEngine(Engine engine) { engine.SetValue("Assert", new Instance(null)); engine.SetValue("Assert.AreEqual", new Callable(3, (interp, args) => { ...
leExam/softUniCamp/Program.cs
VasilStefanov/SoftUniProjects
0
7053303
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace softUniCamp { class Program { static void Main(string[] args) { int totalGroups = int.Parse(Console.ReadLine()); int totalCount = 0; ...
AllYourTextsUI/AsyncLoadingProgressParams.cs
AllYourTexts/AllYourTexts
26
7053304
using AllYourTextsLib.Framework; namespace AllYourTextsUi { public class AsyncLoadingProgressParams { public ILoadingProgressCallback LoadingProgressCallback { get; private set; } public bool MergeConversations { get; private set; } public IPhoneDeviceInfo DeviceInfo { get; private s...
Code/OtherChapters/Chapter15/FixedArgumentValidationAsyncLambda.cs
Vladimir-Zakharenkov/Jon-Skit-CS-In-Depth-3edition
1
7053305
using System; using System.ComponentModel; using System.Threading.Tasks; namespace Chapter15 { [Description("Listing 15.10")] class FixedArgumentValidationAsyncLambda { static void Main() { MainAsync().Wait(); } static async Task MainAsync() { ...
src/Libraries/Nop.Data/Mapping/Catalog/BackInStockSubscriptionMap.cs
EvaSRGitHub/NopCommerce-HomePageNewProductsPlugin
0
7053306
<reponame>EvaSRGitHub/NopCommerce-HomePageNewProductsPlugin<gh_stars>0 using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; using Nop.Core.Domain.Catalog; namespace Nop.Data.Mapping.Catalog { /// <summary> /// Represents a back in stock subscription mapping configuration ...
tools/POTools/Services/Extracting/CSharpTextExtractorSettings.cs
adams85/aspnetskeleton2
2
7053307
<gh_stars>1-10 using System.Collections.Generic; namespace POTools.Services.Extracting { public class CSharpTextExtractorSettings { public static readonly string DefaultLocalizedAttributeName = "Localized"; public static readonly string DefaultLocalizedAttributePluralIdArgName = "PluralId"; ...
EOLib/Net/Communication/IAsyncSocket.cs
Septharoth/EndlessClient
31
7053308
<reponame>Septharoth/EndlessClient using System; using System.Net; using System.Threading; using System.Threading.Tasks; namespace EOLib.Net.Communication { public interface IAsyncSocket : IDisposable { bool Connected { get; } Task<int> SendAsync(byte[] data, CancellationToken ct); T...
Source Server/Game.Server/Server/ConsortiaTask/BaseConsortiaTaskCondition.cs
itspaiva/DDTank4.1
4
7053309
<gh_stars>1-10 // Decompiled with JetBrains decompiler // Type: Game.Server.ConsortiaTask.BaseConsortiaTaskCondition // Assembly: Game.Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null // MVID: 7994645F-6854-4AAC-A332-C61842D2DD9F // Assembly location: C:\Users\<NAME>\Desktop\Decompiler\Road\Game.Server.dl...
ProtoCommU/Source/ProtoCommNetworkThread.cs
chrishoen/Dev_RisLibCs
0
7053310
<gh_stars>0 using System; using System.Text; using Ris; namespace ProtoComm { //************************************************************************** //************************************************************************** //************************************************************************...
OAuthServer.NET.Core/Models/Entities/Grant.cs
LiveOrDevTrying/OAuthServer.NET
0
7053311
<reponame>LiveOrDevTrying/OAuthServer.NET<gh_stars>0 using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; namespace OAuthServer.NET.Core.Models.Entities { [Table("Grants")] public class Grant : BaseEntity { public string GrantName { get; set; } public strin...