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
CodeTiger.CodeAnalysis/Analyzers/Design/InheritedMemberDesignAnalyzer.cs
csdahlberg/CodeTiger.CodeAnalysis
1
7059358
<reponame>csdahlberg/CodeTiger.CodeAnalysis using System; using System.Collections.Immutable; using System.Linq; using CodeTiger.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; using Microsoft.CodeAnalysis.CSharp.Syntax; using Microsoft.CodeAnalysis.Diagnostics; namespace CodeT...
src/CommandLine/Text/TextWrapper.cs
Ttxman/commandline
3,475
7059359
using System; using System.Collections.Generic; using System.Linq; using System.Text; using CommandLine.Infrastructure; namespace CommandLine.Text { /// <summary> /// A utility class to word-wrap and indent blocks of text /// </summary> public class TextWrapper { private string[] lines; ...
src/EQueue/Protocols/Brokers/BrokerStatisticInfo.cs
scjjcs/equeue
602
7059360
using System; namespace EQueue.Protocols.Brokers { [Serializable] public class BrokerStatisticInfo { /// <summary>基本信息 /// </summary> public BrokerInfo BrokerInfo { get; set; } /// <summary>主题个数 /// </summary> public int TopicCount { get; set; } ...
WebApp/Views/Shared/_LoginPartial.cshtml
Desyslava-gs/Web-App-Project
0
7059361
@using Microsoft.AspNetCore.Identity @using WebApp.Data.Models @using WebApp.Services.Clients @inject SignInManager<User> SignInManager @inject UserManager<User> UserManager @inject IClientService ClientService @if (SignInManager.IsSignedIn(User)) { //var userId = User.GetId(); //var userIsClient = ClientSer...
samples/PreserveFilePropertiesSamples/PreserveFilePropertiesSamples/Program.cs
karthikrathinavelu/azure-storage-net-data-movement
282
7059362
<gh_stars>100-1000 //------------------------------------------------------------------------------ // <copyright file="Program.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation // </copyright> //------------------------------------------------------------------------------ namespace PreserveFileProp...
Inhabitants/Assets/Scripts/map/cell_controller.cs
Dmcdominic/Inhabitants
1
7059363
using System.Collections; using System.Collections.Generic; using UnityEngine; public class cell_controller : MonoBehaviour { public static cell_controller instance; public cell prefabCell; public LayerMask treeZoneMask; const int WIDTH = 90, HEIGHT = 70; const float CELL_WIDTH = 0.2f, CELL_HEIGHT = 0.2f...
bantam/Forms/BackdoorGenerator.Designer.cs
retr0-13/bantam_backdoor
259
7059364
namespace bantam.Forms { partial class BackdoorGenerator { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
AdventOfCode/Solutions/Year2019/Day03/Solution.cs
nerddtvg/aoc
0
7059365
using System; using System.Collections.Generic; using System.Text; using System.Linq; namespace AdventOfCode.Solutions.Year2019 { class Point { public int value { get; set; } public int[] steps { get; set; } public int dist { get; set; } } class Day03 : ASolution { pr...
FlitBit.Core/Log/LogDataTransform.TData.cs
flitbit-org/fbcore
0
7059366
#region COPYRIGHT© 2009-2014 <NAME>. All rights reserved. // For licensing information see License.txt (MIT style licensing). #endregion using System; namespace FlitBit.Core.Log { /// <summary> /// Static class used by logging to transform runtime types into textual data. /// </summary> /// <typeparam name="...
src/GraphCollection/CompareNeighbour.cs
moto2002/jiandangjianghu
0
7059367
using System; using System.Collections.Generic; namespace GraphCollection { internal class CompareNeighbour<T> : IComparer<GraphNode<T>> { public int Compare(GraphNode<T> x, GraphNode<T> y) { if (x.TentativeDistance > y.TentativeDistance) { return 1; } if (x.TentativeDistance < y.TentativeDistanc...
Lib/IRabbitMQManager.cs
catcherwong-archive/RabbitMQDemo
4
7059368
<reponame>catcherwong-archive/RabbitMQDemo<gh_stars>1-10 using System; using System.Collections.Generic; using System.Text; namespace Lib { public interface IRabbitMQManager { void Publish<T>(T message, string queueName, string routeKey); void Consume<T>(string queueName, string rou...
CloudFlare.Client.Test/ParameterBuilderHelperTests.cs
UmbHost/CloudFlare.Client
34
7059369
<reponame>UmbHost/CloudFlare.Client<filename>CloudFlare.Client.Test/ParameterBuilderHelperTests.cs using System.Linq; using System.Web; using CloudFlare.Client.Enumerators; using CloudFlare.Client.Helpers; using FluentAssertions; using Newtonsoft.Json; using Xunit; namespace CloudFlare.Client.Test { public class ...
MssNet.Tests/FailureMssClient.cs
PhilippSchoenauer/mss-dotnet
3
7059370
using System.Net.Http; namespace MssNet.Tests { public class FailureMssClient : MssClient { public FailureMssClient() : base(null) { } public FailureMssClient(MssClientSettings settings) : base(settings) { } protected override HttpClient HttpClient => ...
src/CommandLine.Core.CommandLineUtils.Tests/Application/Commands/Second.cs
mthamil/CommandLine.Core
5
7059371
<filename>src/CommandLine.Core.CommandLineUtils.Tests/Application/Commands/Second.cs using McMaster.Extensions.CommandLineUtils; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CommandLine.Core.CommandLineUtils.Tests.Application.Commands { public class Se...
MathematicsNotationLibrary/Mathematics/Operations/Operations.Vectors.Algebratics.cs
Shkyrockett/MatrixPlayground
1
7059372
<filename>MathematicsNotationLibrary/Mathematics/Operations/Operations.Vectors.Algebratics.cs // <copyright file="Operations.Vectors.Algebratics.cs" company="Shkyrockett" > // Copyright © 2020 - 2021 Shkyrockett. All rights reserved. // </copyright> // <author id="shkyrockett">Shkyrockett</author> // <license> // ...
src/MyTested.AspNetCore.Mvc.Models/Builders/Contracts/Models/IAndModelDetailsTestBuilder.cs
vmmarko/MyTested.AspNetCore.Mvc
8
7059373
<filename>src/MyTested.AspNetCore.Mvc.Models/Builders/Contracts/Models/IAndModelDetailsTestBuilder.cs namespace MyTested.AspNetCore.Mvc.Builders.Contracts.Models { /// <summary> /// Used for adding AndAlso() method to the model details tests. /// </summary> /// <typeparam name="TModel">Model from invok...
source/Processor/Models/Domain/AssemblyFileDetails.cs
contensive/Contensive50
2
7059374
 using Contensive.Processor.Controllers; // namespace Contensive.Processor.Models.Domain { // public class AssemblyFileDetails { public string path; public string pathFilename; } }
UserClaimsMiddlware/UserClaimsMiddlware.OWIN.Core/UserClaimsMiddlwareExtensions.cs
bacathey/UserClaimsMiddleware
0
7059375
<reponame>bacathey/UserClaimsMiddleware using Owin; namespace UserClaimsMiddlware.OWIN.Core { public static class AppBuilderExtensions { //default options public static IAppBuilder UseUserClaims(this IAppBuilder app) { var options = new UserClaimsOptions(); retu...
02. Programming Fundamentals - Jan 2017/07. Objects and Classes/07. AndreyAndBilliard/07. AndreyAndBilliard/ListOfOrders.cs
zrusev/SoftwareUniversity2016
2
7059376
<reponame>zrusev/SoftwareUniversity2016<filename>02. Programming Fundamentals - Jan 2017/07. Objects and Classes/07. AndreyAndBilliard/07. AndreyAndBilliard/ListOfOrders.cs namespace _07.AndreyAndBilliard { using System; using System.Collections.Generic; using System.Linq; class ListOfOrders { ...
Runtime/03.UIElement/UIEventTrigger_WIP.cs
KorStrix/Unity_UIFramework
3
7059377
#region Header /* ============================================ * Author : strix * Initial Creation Date : 2020-06-19 * Summary : * Template : New Behaviour For ReSharper ============================================ */ #endregion Header using System; using System.Collections.Gene...
src/Disqord.Gateway/Default/Dispatcher/Dispatches/Thread/THREAD_MEMBERS_UPDATE.cs
moriyahiroaki/Disqord
1
7059378
<reponame>moriyahiroaki/Disqord using System.Collections.Generic; using System.Threading.Tasks; using Disqord.Collections; using Disqord.Gateway.Api; using Disqord.Gateway.Api.Models; namespace Disqord.Gateway.Default.Dispatcher { public class ThreadMembersUpdateHandler : Handler<ThreadMembersUpdateJsonMo...
Deviate Delight/saveForm.cs
Edxo/deviate-delight
0
7059379
<filename>Deviate Delight/saveForm.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Deviate_Delight { public partial class saveForm : Fo...
SecurePhoneRetriever.Model/PNManager.cs
ExcellentNonsense/SecurePhoneRetriever
3
7059380
using System; using System.Collections.Generic; namespace SecurePhoneRetriever.Model { internal sealed class PNManager : IPNManager { private readonly IPNRepository repository; private readonly IPNValidator validator; private readonly IPNCoder coder; public PNManager(IPNRepository...
samples/ReadmeSample/Entities/Order.cs
koenbeuk/EntityFrameworkCore.Projectables
24
7059381
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using EntityFrameworkCore.Projectables; namespace ReadmeSample.Entities { public class Order { public int Id { get; set; } public int UserId { get; set; } public DateTime...
DocWriter.Windows/MainWindow.xaml.cs
xamarin/DocWriter
15
7059382
using Avalon.Windows.Dialogs; using DocWriter.Properties; using System; using System.Collections.Generic; using System.ComponentModel; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; using System.Windows; using System.Windows.Controls; using System.Windows.Data; u...
yycms.admin/API/BasicAuthen.cs
fasrcow/yycms
80
7059383
<filename>yycms.admin/API/BasicAuthen.cs using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Text; using System.Web; using System.Web.Http; using System.Web.Http.Filters; using yycms.admin.Models; using yycms.entity; namespace...
src/Parser.cs
WaifuShork/Luxembourg
2
7059384
using System.Collections.Generic; using Luxembourg.Enums; using Luxembourg.Errors; using Luxembourg.Expressions; using Luxembourg.Statements; namespace Luxembourg { public class Parser { private readonly List<Token> _tokens; private int _current = 0; public Parser(List<Token> tokens) ...
ByteBank/ByteBank.SistemaAgencia/Program.cs
joaoeduardogomes/treino-Csharp-vs
0
7059385
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using ByteBank.Modelos; using ByteBank.Modelos.Funcionarios; using Humanizer; namespace ByteBank.SistemaAgencia { class Program { static void Main(s...
src/tests/F0.Compatibility.Generator.Tests/Diagnostics/DebugTraceListener.cs
Flash0ver/F0.Compatibility
0
7059386
<reponame>Flash0ver/F0.Compatibility<filename>src/tests/F0.Compatibility.Generator.Tests/Diagnostics/DebugTraceListener.cs #if DEBUG && NETFRAMEWORK using System.Diagnostics; namespace F0.Tests.Diagnostics; internal sealed class DebugTraceListener : TraceListener { public DebugTraceListener() : base(nameof(Debug))...
Assets/scripts/stage/BossDeadEffectScript.cs
binhps/RxpbEngineUnity
19
7059387
<reponame>binhps/RxpbEngineUnity using System.Collections; using System.Collections.Generic; using UnityEngine; /// <summary> /// 보스 사망 효과 스크립트입니다. /// </summary> public class BossDeadEffectScript : EffectScript { #region 필드를 정의합니다. /// <summary> /// /// </summary> public Texture2D _originalTex...
Assets/MessagePackEditor/Editor/MessagePackTypeInfo.cs
E-K/MessagePackEditor
0
7059388
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using UnityEngine; using UnityEditor; using MessagePack; namespace MessagePackEditor { [InitializeOnLoad] class MessagePackTypeCache { #region static public static readonly MessagePack...
NETCORE/test/Microsoft.ApplicationInsights.AspNetCore.Tests/Extensions/ApplicationInsightsExtensionsTests/AddApplicationInsightsSettingsTests.cs
ylabade/ApplicationInsights-dotnet
238
7059389
<filename>NETCORE/test/Microsoft.ApplicationInsights.AspNetCore.Tests/Extensions/ApplicationInsightsExtensionsTests/AddApplicationInsightsSettingsTests.cs using Xunit; namespace Microsoft.Extensions.DependencyInjection.Test { using System; using Microsoft.ApplicationInsights; using Microsoft.ApplicationI...
WFE/Models/Output/DocumentSettings.cs
punitganshani/WorkflowExtractor
19
7059390
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WFE.Models.Output { public class DocumentSettings : Settings { internal DocumentSettings() : base("Document") { } internal DocumentSettings(string classN...
src/VideoBrowser/VideoBrowser/Models/OperationModel.cs
ScriptBox99/VideoBrowser
14
7059391
<filename>src/VideoBrowser/VideoBrowser/Models/OperationModel.cs namespace VideoBrowser.Models { using System; using System.ComponentModel; using System.Diagnostics; using System.IO; using System.Linq; using VideoBrowser.Common; using VideoBrowser.Controls.CefSharpBrowser.Models; using ...
Projects/Flatbuffers_json/Gen/cfg/TestNotIndexList.cs
LiuOcean/luban_examples
44
7059392
// <auto-generated> // automatically generated by the FlatBuffers compiler, do not modify // </auto-generated> namespace cfg { using global::System; using global::System.Collections.Generic; using global::FlatBuffers; public struct TestNotIndexList : IFlatbufferObject { private Table __p; public ByteBuffer Byte...
EltraCommon/ObjectDictionary/Xdd/DeviceDescription/Profiles/XddProfile.cs
eltra-ch/eltra-common
0
7059393
<filename>EltraCommon/ObjectDictionary/Xdd/DeviceDescription/Profiles/XddProfile.cs using System.Xml; using EltraCommon.Contracts.Devices; using EltraCommon.ObjectDictionary.Xdd.DeviceDescription.Profiles.Application.Parameters; namespace EltraCommon.ObjectDictionary.Xdd.DeviceDescription.Profiles { #pragma warning d...
IrregularTables/Assets/EssentialPackages/UI/IrregularTables/Scripts/TableLayout.cs
essentialpackages/irregular-table
0
7059394
<filename>IrregularTables/Assets/EssentialPackages/UI/IrregularTables/Scripts/TableLayout.cs using System; using System.Collections.Generic; using EssentialPackages.UI.IrregularTables.Data; using EssentialPackages.UI.IrregularTables.Interfaces; using EssentialPackages.UI.TextAdapters.Interfaces; using UnityEngine; na...
LitleW/ViewModels/LoginViewModel.cs
frs535/LitleW
1
7059395
using System; using System.Threading.Tasks; using System.Windows.Input; using LitleW.Helpers; using LitleW.Services; using Xamarin.Forms; namespace LitleW.ViewModels { public class LoginViewModel : BaseViewModel { #region Commands public ICommand LoginCommand => new Command(async () => await ...
TextEditor/DocWell/Tab.cs
tongko/LargeFileEditor
1
7059396
<filename>TextEditor/DocWell/Tab.cs  using System.Windows.Forms; namespace TextEditor.DocWell { public class DocumentTab { private readonly DocumentWell _container; private string _fileName; private float _width; public DocumentTab(DocumentWell container) { _container = container; } public string...
nanoka-idx/Nanoka.Models/Song.cs
tonineXtalliya/Nanoka
0
7059397
using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using Newtonsoft.Json; namespace Nanoka.Models { /// <summary> /// Represents a song. /// </summary> public class Song : SongBase, IHasId, IHasScore { [JsonProperty("id")] public string Id { get; set; } ...
src/Maze/Linq/Queryable.JoinFirstOrDefault.cs
slavashar/Maze
1
7059398
<reponame>slavashar/Maze<gh_stars>1-10 using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; namespace Maze.Linq { public static partial class Queryable { public static IQueryable<TResult> JoinFirstOrDefault<TOuter, TInner, TKey, TRe...
Source/Clarity.Engine/Visualization/Cameras/Embedded/TransitionCamera.cs
Zulkir/ClarityWorlds
1
7059399
using System; using Clarity.Common.Numericals; using Clarity.Common.Numericals.Algebra; using Clarity.Common.Numericals.Colors; using Clarity.Common.Numericals.Geometry; using Clarity.Engine.Platforms; namespace Clarity.Engine.Visualization.Cameras.Embedded { public class TransitionCamera : ICamera { ...
src/MongoDB.Driver.Core/Core/Configuration/ConnectionPoolSettings.cs
afhaque/mongo-csharp-driver
1
7059400
<reponame>afhaque/mongo-csharp-driver /* Copyright 2013-2014 MongoDB Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required b...
MultiPrecisionTest/MultiPrecision/Common/MultiPrecisionTest_cmp.cs
tk-yoshimura/MultiPrecision
0
7059401
using Microsoft.VisualStudio.TestTools.UnitTesting; using MultiPrecision; using System; namespace MultiPrecisionTest.Common { public partial class MultiPrecisionTest { [TestMethod] public void CmpTest() { MultiPrecision<Pow2.N8>[] vs = { MultiPrecision<Pow2.N8>.Zero, ...
Dll/Utilities/Utilities/ExpressionToText.cs
dibley1973/RegularExpressionToText
1
7059402
<reponame>dibley1973/RegularExpressionToText<filename>Dll/Utilities/Utilities/ExpressionToText.cs<gh_stars>1-10 using Elements; using System; namespace Utilities { /// <summary> /// Responsible for converting specified regular expressions to plain text /// </summary> public class ExpressionToText ...
src/MatatakiBot.WebApi/Program.cs
Matataki-io/Matataki-Telegram-Bot
6
7059403
<gh_stars>1-10 using DryIoc.Microsoft.DependencyInjection; using MatatakiBot; using MatatakiBot.WebApi; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Hosting; var builder = Host.CreateDefaultBuilder(args) .ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup<Startup>(); ...
SolidCP/Sources/ACMESharp/ACMESharp/ACMESharp/JOSE/JwsHelper.cs
NAGeorge/SolidCP-fork
2
7059404
using Newtonsoft.Json; using System; using System.Security.Cryptography; using System.Text; namespace ACMESharp.JOSE { /// <summary> /// A helper class to support JSON Web Signature (JWS) operations as needed for ACME. /// </summary> /// <remarks> /// ACME only requires a subset of JWS functionali...
Sources/CommonLIB/AppCode/Networking/Multiplayer/MyEventValidateUserResponse.cs
emperorstarfinder/Miner-Wars-2081
118
7059405
using System; using System.Collections.Generic; using System.Linq; using System.Text; using Lidgren.Network; using System.Net; namespace MinerWars.CommonLIB.AppCode.Networking.Multiplayer { public struct MyEventValidateUserResponse : IMyEvent { public byte[] Signature; public bool Read(MyMess...
SerializIt.Tests/SerializIt.Generator/CodeActivatorTests.cs
KhaosCoders/SerializIt
0
7059406
<gh_stars>0 using Microsoft.VisualStudio.TestTools.UnitTesting; using SerializIt.Generator.Helpers; namespace SerializIt.Tests.SerializIt.Generator; [TestClass] public class CodeActivatorTests { [TestMethod] public void TestSerializerAttribute() { var code = $"{typeof(SerializerAttribute).FullNam...
Ics.OpenApi/Models/Declare/GetDelegateBoxReply.cs
SimTsai/ics-dotnet-sdk
0
7059407
using System.Collections.Generic; namespace Ics.OpenApi.Models.Declare { /// <summary> /// 获取报关单集装箱明细 响应 /// </summary> public record GetDelegateBoxReply : ReplyBase { /// <summary> /// 集装箱明细 /// </summary> public List<DelegateBox> Boxes { get; init; } } }
SamyuktaManabSoftwares/GrocerySupplyManagementApp/Repositories/MSSqlBankTransactionRepository.cs
amanandhar/SamyuktaManabSoftwares
0
7059408
<filename>SamyuktaManabSoftwares/GrocerySupplyManagementApp/Repositories/MSSqlBankTransactionRepository.cs using GrocerySupplyManagementApp.DTOs; using GrocerySupplyManagementApp.Entities; using GrocerySupplyManagementApp.Repositories.Interfaces; using GrocerySupplyManagementApp.Shared; using GrocerySupplyManagementAp...
Sources/GenieLamp.Core/Metamodel/Physical/PhysicalInterfaces.cs
arbinada-com/genie-lamp
1
7059409
<reponame>arbinada-com/genie-lamp<gh_stars>1-10 using System; using System.Collections.Generic; namespace GenieLamp.Core.Metamodel.Physical { /// <summary> /// Physical model contains objects that cannot be mapped directly from logical model /// and/or need to be specified with parameters of target platforms...
Student Application/Login Page.xaml.cs
lawalselim/Student-information-system
0
7059410
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; ...
Model/Systems/AttachementManager.cs
Enyss/RSSE
3
7059412
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel; using RSSE.Utils; namespace RSSE.ShipElements.Systems { public class AttachementManager : SubSystem { override public string SystemName { get { r...
repo-pattern-auth-example/Example.Web/Pages/BasePage.cs
Eythorsson-dev/repo-pattern-template
2
7059413
using Example.Core.Request.User; using Example.Core.Service; using Example.Domain.Model.User; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc.RazorPages; namespace Example.Web.Pages { [Authorize] public class BasePage : PageModel { protected UserModel CurrentUser { get; pr...
modules/platforms/dotnet/Apache.Ignite.Core/Cache/Expiry/IExpiryPolicy.cs
geertjanw/ignite
4,339
7059414
<gh_stars>1000+ /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "Lic...
TaskClient/HsaServiceDtos/ShoppingListDto.cs
TeamCryptonite/HSAadmin
0
7059415
<gh_stars>0 using System; using System.Collections.Generic; using System.Collections.ObjectModel; namespace HsaServiceDtos { public class ShoppingListDto { public ShoppingListDto() { ShoppingListItems = new ObservableCollection<ShoppingListItemDto>(); } public int ...
Networking/Responses/RedeemPasscodeResponse.g.cs
Necrobot-Private/POGOProtos
3
7059416
// <auto-generated> // Generated by the protocol buffer compiler. DO NOT EDIT! // source: POGOProtos/Networking/Responses/RedeemPasscodeResponse.proto // </auto-generated> #pragma warning disable 1591, 0612, 3021 #region Designer generated code using pb = global::Google.Protobuf; using pbc = global::Google.Pr...
Halcyon/Game/Weapons/PlasmaWeapon.cs
vevix/halcyon
0
7059417
//----------------------------------------------------------------------------- // PlasmaWeapon.cs // // AddictionSoftware //----------------------------------------------------------------------------- using System; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Content; namespace Halcyon { ...
src/Compilers/plaidml/Sylvester.Compiler.PlaidML/DeviceEnumerator.cs
allisterb/Sylvester
53
7059418
<filename>src/Compilers/plaidml/Sylvester.Compiler.PlaidML/DeviceEnumerator.cs using System; using System.Collections.Generic; using System.Runtime.InteropServices; using Sylvester.Compiler.PlaidML.Bindings; namespace Sylvester.Compiler.PlaidML { public class DeviceEnumerator : PlaidMLApi<DeviceEnumerator> { ...
CSL RFID Demo Apps/Source/CS Native Demo XP/CustControl/ReadAllBank.Designer.cs
cslrfid/CSL-Callback-Unified-SDK-App
0
7059419
namespace CS203_CALLBACK_API_DEMO { partial class ReadAllBank { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
src/Gripper.ChromeDevTools/Input/DispatchDragEventCommand.cs
tomaskrupka/WebScrapingServices
0
7059420
<filename>src/Gripper.ChromeDevTools/Input/DispatchDragEventCommand.cs namespace Gripper.ChromeDevTools.Input { using Newtonsoft.Json; /// <summary> /// Dispatches a drag event into the page. /// </summary> public sealed class DispatchDragEventCommand : ICommand { private const string C...
Library/Import/Monster/Monster.cs
JazzFisch/AnotherCombatManager
4
7059421
<filename>Library/Import/Monster/Monster.cs using System; using System.Collections.Generic; using System.IO; using System.Xml; using System.Xml.Serialization; using AnotherCM.Library.Common; using AnotherCM.Library.Import.Common; using ImportAbilityScoreNumber = AnotherCM.Library.Import.Common.AbilityScoreNumber; nam...
06. Sets and Dictionaries Advanced - Exercicse/PeriodicTable/StartUp.cs
VeselinBPavlov/csharp-advanced
2
7059422
<reponame>VeselinBPavlov/csharp-advanced namespace PeriodicTable { using System; using System.Collections.Generic; using System.Linq; public class StartUp { public static void Main() { var compoundsCount = int.Parse(Console.ReadLine()); var chemicalCompounds...
src/Cabother.Exceptions/WebServices/WebServiceException.cs
aldovrando-oliveira/Cabother-Exceptions
2
7059423
<reponame>aldovrando-oliveira/Cabother-Exceptions<filename>src/Cabother.Exceptions/WebServices/WebServiceException.cs using System; using System.Runtime.Serialization; namespace Cabother.Exceptions.WebServices { /// <summary> /// Exception customizada para chamadas WebService /// </summary> [Serializab...
Practice2/Practice2/ViewModels/DiscoveryViewModel.cs
elvladi15/Practice2-MVVM
0
7059424
<filename>Practice2/Practice2/ViewModels/DiscoveryViewModel.cs using Practice2.Models; using System; using System.Collections.Generic; using System.Text; namespace Practice2.ViewModels { public class DiscoveryViewModel { public MenuOption BarAndHotelsMenuOption { get; set; } = new MenuOption(); ...
Client/Program.cs
Xqruciator/OnyxDropper
7
7059425
<filename>Client/Program.cs using System; using System.Collections.Generic; using System.Threading; using DropperClient.Command; using DropperClient.Connection; using DropperClient.Dataparser; using DropperClient.Installation; using DropperClient.Requests; using DropperClient.SystemInfoGatherer; using OnyxDropper.Requ...
RelicGame/Assets/Scripts/TurbineOutdoorScripts/DialogueText.cs
herman-rogers/Relic
0
7059426
<reponame>herman-rogers/Relic using UnityEngine; using System.Collections; public class DialogueText : MonoBehaviour { UILabel playerDialogueText; bool coroutineRunning; void Awake( ){ playerDialogueText = GetComponent< UILabel >( ); } public void AddTextToPlayerDialogue( string displayNewText ) { if( !co...
Gestionale/Gestionale/Areas/Identity/Pages/Account/Manage/ShowRecoveryCodes.cshtml
FITSTIC/Hackathon_Team1_19_21
1
7059427
<reponame>FITSTIC/Hackathon_Team1_19_21 @page @model ShowRecoveryCodesModel @{ ViewData["Title"] = "Codici di recupero"; ViewData["ActivePage"] = "TwoFactorAuthentication"; } <partial name="_StatusMessage" for="StatusMessage" /> <h4>@ViewData["Title"]</h4> <div class="alert alert-warning" role="alert"> <p...
Spesometro/Validators/AltriDatiIdentificativiItaliaValidator.cs
FatturaElettronica/ComunicazioneFattureEmesseRicevute
8
7059428
<reponame>FatturaElettronica/ComunicazioneFattureEmesseRicevute<gh_stars>1-10 using FluentValidation; namespace Spesometro.Validators { public class AltriDatiIdentificativiItaliaValidator : DenominazioneNomeCognomeValidator<Common.AltriDatiIdentificativi> { public AltriDatiIdentificativiItaliaValidato...
pwiz_tools/Bumbershoot/idpicker/Model/SessionFactoryFactory.cs
austinkeller/pwiz
0
7059429
/* * $Id$ * * Original author: <NAME> <nicksh .at. u.washington.edu>, * MacCoss Lab, Department of Genome Sciences, UW * * Copyright 2009 University of Washington - Seattle, WA * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in ...
test/WebSites/TagHelpersWebSite/TagHelpers/PrettyTagHelper.cs
moljac/Mvc
0
7059430
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Razor.Runtime.TagHelpers; namespac...
Source/AutofacSettings/DefaultSettingsService.cs
devdigital/AutofacSettings
1
7059431
// <copyright file="DefaultSettingsService.cs" company="DevDigital"> // Copyright (c) DevDigital. All rights reserved. // </copyright> namespace AutofacSettings { using System; using System.Linq; using System.Reflection; using System.Threading.Tasks; using AutofacSettings.Converters; using Aut...
iLoan.API/Startup.cs
abydal/iLoan
0
7059432
using System.Web.Http; using Microsoft.Owin.StaticFiles; using Owin; using Microsoft.Owin.FileSystems; namespace iLoan.API { public class Startup { // This code configures Web API. The Startup class is specified as a type // parameter in the WebApp.Start method. public void ...
src/Bank.Domains/Payment/Services/Request/BasePayReq.cs
huamouse/Bank
0
7059433
namespace Bank.Domains.Payment.Services { public class BasePayReq { // 支付类型 public PayTypeEnum PayType { get; set; } // 支付通道 public ChannelEnum Channel { get; set; } // 收款方 public string Payee { get; set; } public string PayeeName { get; set; } } }
CloudFS.Interface/GatewayCapabilities.cs
seemasureshssl/sslproject1
77
7059434
/* The MIT License(MIT) Copyright(c) 2015 IgorSoft Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publi...
UserInterface/ListView/CustomCells/sample/FormsListViewSample/Views/MainViewCode.cs
MiaHub/xamarin-forms-samples
4,601
7059435
using System; using System.Collections.ObjectModel; using Xamarin.Forms; namespace FormsListViewSample { public class MainViewCode : ContentPage { public ObservableCollection<VeggieViewModel> veggies { get; set; } public MainViewCode() { veggies = new ObservableCollection<VeggieViewModel>(); ListView ls...
MongoDB/Models/PublishTransaction.cs
chenzhitong/NeoBlockchain2MongoDB
8
7059436
<gh_stars>1-10 using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MongoDB.Models { public class PublishTransaction : Transaction { public Contract Contract; public new...
AWSXRay.Http.Extension/HeaderBelonging.cs
waxtell/AWSXRay.Http.Extension
0
7059437
using ConfigurationSection.Inheritance.Extension; namespace AWSXRay.Http.Extension { [KnownType(typeof(HeaderInclude), "include")] [KnownType(typeof(HeaderExclude), "exclude")] [TypeConverter("type")] public abstract class HeaderBelonging : Belonging { } public class HeaderExcl...
src/WCF-Load-Test/Library.Test/FiddlerTextParserTests.cs
ALM-Rangers/Sample-Code
1
7059438
<filename>src/WCF-Load-Test/Library.Test/FiddlerTextParserTests.cs<gh_stars>1-10 //--------------------------------------------------------------------- // <copyright file="FiddlerTextParserTests.cs" company="Microsoft"> // Copyright (c) Microsoft Corporation. All rights reserved. // THIS CODE AND INFORMATION...
src/Views/Shared/_LayoutYitongkan.cshtml
guozili2/Miniblog.Core
0
7059439
@inject WebManifest manifest @inject IOptionsSnapshot<BlogSettings> settings @using Miniblog.Core.Common @{ var categories = ViewData["categories"] as IEnumerable<string>; var host = this.Context.Request.Host.Host; } <!DOCTYPE HTML> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatibl...
ForumApi/Services/Forum.Services.Data/Interfaces/IAccountService.cs
failfmi/forum-app
0
7059440
<filename>ForumApi/Services/Forum.Services.Data/Interfaces/IAccountService.cs<gh_stars>0 using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using Forum.Data.DataTransferObjects.InputModels.User; using Forum.Data.DataTransferObjects.ViewModels.User; namespace Forum.Service...
Assets/InteractionSystem/Scripts/Actions/Action.cs
SAEBrisbaneGitHub/Interaction
1
7059441
using System.Collections; using System.Collections.Generic; using UnityEngine; namespace WindyWolfGames { namespace InteractionTool { public enum ActionError { None, CannotCos, NullData } /// <summary> /// This is the base action cla...
JDS.OrgManager/JDS.OrgManager.Persistence/Tenants/TenantAspNetUserEntityConfiguration.cs
davidhenley/OrgManager
0
7059442
// Copyright ©2020 <NAME> // 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 by applicable law or agreed to in writing, softwar...
Solution/Maps.Data/DbStoreMember.cs
cmberryau/maps
1
7059443
using System; namespace Maps.Data { /// <summary> /// Attribute for members to be stored on a db /// </summary> public class DbStoreMember : Attribute { /// <summary> /// The ordinal of the member /// </summary> public int Ordinal { get; }...
tests/DevQuiz.Admin.DataAccess.Tests/Helpers/DevQuizContextSqLiteHelper.cs
GNicoDev/DevQuiz
1
7059445
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; using DevQuiz.Admin.Core.Models.Entities; using DevQuiz.Admin.DataAccess.DbContexts; namespace DevQuiz.Admin.DataAccess.Tests.Helpers { public static class DevQuizContextSqLiteHelper { priv...
src/Extensions/Banshee.Fixup/Banshee.Fixup/ArtistDuplicateSolver.cs
FreedomBen/banshee
8
7059446
<reponame>FreedomBen/banshee<filename>src/Extensions/Banshee.Fixup/Banshee.Fixup/ArtistDuplicateSolver.cs<gh_stars>1-10 // // ArtistDuplicateSolver.cs // // Author: // <NAME> <<EMAIL>> // // Copyright 2010 Novell, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this softw...
src/Orc.Automation/Extensions/AutomationElementExtensions.cs
WildGums/Orc.Automation
1
7059447
<gh_stars>1-10 namespace Orc.Automation { using System.Windows.Automation; using Catel; using Catel.IoC; public static partial class AutomationElementExtensions { public static TAutomationControl As<TAutomationControl>(this AutomationElement element) { Argument.IsNotNul...
PixelFarm/PixelFarm.Drawing/7_CpuBlitPainter/DrawBoard/AggRenderVx.cs
solstice333/Typography
0
7059448
<reponame>solstice333/Typography //MIT, 2016-present, WinterDev using PixelFarm.Drawing; namespace PixelFarm.CpuBlit { class AggRenderVx : PixelFarm.Drawing.RenderVx { internal VertexStore _vxs; public AggRenderVx(VertexStore vxs) { _vxs = vxs; } } class Agg...
source/MikhailKhalizev.Max/source/Program/Auto/z-1013-27ed.cs
mikhail-khalizev/max
3
7059449
<reponame>mikhail-khalizev/max using System; using MikhailKhalizev.Processor.x86.BinToCSharp; namespace MikhailKhalizev.Max.Program { public partial class RawProgram { [MethodInfo("0x1013_27ed-3587ed20")] public void Method_1013_27ed() { ii(0x1013_27ed, 5); push(0...
Bovitettszamitogep/Bovitettszamitogep/Program.cs
viaxa23/gyakorlasfo
0
7059450
<reponame>viaxa23/gyakorlasfo using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Bovitettszamitogep { class Program { static void Main(string[] args) { try { Console.WriteLine("Ké...
src/Tictactoe/Models/DecisionTreeBoard.cs
franjfgcarmo/backend-unit-test-1
0
7059451
<reponame>franjfgcarmo/backend-unit-test-1<filename>src/Tictactoe/Models/DecisionTreeBoard.cs using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; namespace Tictactoe.Models { public class DecisionTreeBoard : Board { private readonly Color[,] colors; publ...
DynamicDNS.Core/AppHelper.cs
zhunian2003/DynamicDNS
0
7059452
using System; using System.Collections.Generic; using System.Configuration; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace DynamicDNS.Core { public static class AppHelper { /// <summary> /// 警告对话框 ...
Streamus/Streamus.Web/Infrastructure/Services/SearchServices.cs
mauriliofilho/Streamus
0
7059453
namespace Streamus.Web.Infrastructure.Services { using AutoMapper; using AutoMapper.QueryableExtensions; using Google.GData.YouTube; using Google.YouTube; using Streamus.Data; using Streamus.Web.Infrastructure.Services.Base; using Streamus.Web.Infrastructure.Services.Contracts; using Streamus.Web.View...
Assets/Scripts/LevelLoader.cs
balashanmugam/cmpt-742-project
1
7059454
<filename>Assets/Scripts/LevelLoader.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class LevelLoader : MonoBehaviour { public GameObject loadingscreen; public Slider slider; public void LoadLevel (int scene...
DAL/UsuarioBloqDAL.cs
damiancipolat/CRYPTON
2
7059455
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using BE; using DAL.DAO; using DAL; namespace DAL { public class UsuarioBloqDAL : AbstractDAL<UsuarioBloqBE> { //Bindea la lista de campos de un registro de una consulta, con un objeto B...
src/FoneDynamics/Http/HttpClient.cs
fonedynamics/fonedynamics-csharp
1
7059456
<reponame>fonedynamics/fonedynamics-csharp<gh_stars>1-10 using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace FoneDynamics.Http { /// <summary> /// Client to make HTTP requests. /// </summary> internal clas...
Presentation.Converters/BooleanToBrushConverter.cs
putridparrot/PutridParrot.Presentation.Converters
0
7059457
<gh_stars>0 using System.Windows.Data; using System.Windows.Media; namespace PutridParrot.Presentation.Converters { [ValueConversion(typeof(bool), typeof(Brush))] public class BooleanToBrushConverter : BooleanToValueConverter<Brush> { public BooleanToBrushConverter() : base(Brushes.Gre...
bdMasterBlockDataSet.cs
JoseGhu/Crud
0
7059458
<filename>bdMasterBlockDataSet.cs namespace MasterBlockTela { partial class bdMasterBlockDataSet { partial class TB_TRANSACAO1DataTable { } } } namespace MasterBlockTela.bdMasterBlockDataSetTableAdapters { public partial class TB_TRANSACAOTableAdapter { } }
Rk.Net.Utility/Mvvm/NotificationObject.cs
rahilkidwai/Net.Utility
0
7059459
using System; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Runtime.Serialization; namespace Rk.Net.Utility { /// <summary> /// Base class for items that support property notification. /// </summary> /// <remarks>...