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
src/Forge.Client/Models/ForgeClientArgs.cs
Frederik91/ForgeBucketList
0
7069275
using System; using System.Collections.Generic; using System.Text; namespace Forge.Client.Models { public class ForgeClientArgs { public string BaseUrl { get; set; } public string ClientId { get; set; } public string ClientSecret { get; set; } public string Scope { get; set; } ...
ProjectW14/WCFHost/HostProgram.cs
Y2PM/1DayProjectW14
0
7069276
<reponame>Y2PM/1DayProjectW14 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.ServiceModel; using System.Text; using System.Threading.Tasks; using WCFServiceCL; namespace WCFHost { class HostProgram { static void Main(string[] args) { ...
Src/JsonDiffPatchDotNet/Internals/DiffAlgorithm.cs
alberto-chiesa/jsondiffpatch.net
0
7069277
<gh_stars>0 // ///////////////////////////////////////////////////////////////////////////// // // File: DiffImplementation.cs // // Copyright (c) 2021 SEA Vision srl // This File is a property of SEA Vision srl // Any use or duplication of this file or part of it, // is strictly prohibited with...
Subsystem/Wrappers/UnitHangarAttributesWrapper.cs
Majiir/Subsystem
4
7069278
using BBI.Core.Utility.FixedPoint; using BBI.Game.Data; using System.Linq; namespace Subsystem.Wrappers { public class UnitHangarAttributesWrapper : UnitHangarAttributes { public UnitHangarAttributesWrapper(UnitHangarAttributes other) { HangarBays = other.HangarBays.ToArray(); ...
Modifiers/BaseValueModifiers/AdditionBaseModifier.cs
NikitaHerndlhofer/Attributes
0
7069279
namespace Attributes.Modifiers.BaseValueModifiers { public class AdditionBaseModifier : BaseModifier<float> { public float AdditionValue; public AdditionBaseModifier() { Order = 0; } public override float CalculateValue(float baseValue) { ...
src/Orchard.Web/Modules/Orchard.Users/Models/UserSecurityConfigurationPartRecord.cs
OrchardCMS/orchard
0
7069280
<filename>src/Orchard.Web/Modules/Orchard.Users/Models/UserSecurityConfigurationPartRecord.cs<gh_stars>0 using Orchard.ContentManagement.Records; namespace Orchard.Users.Models { public class UserSecurityConfigurationPartRecord : ContentPartRecord { // We are creating a record for this rather than making ...
TimeTrack.Client.UWP/Service References/TimeTrackService/Reference.cs
Mogikan/timetrack
0
7069281
<filename>TimeTrack.Client.UWP/Service References/TimeTrackService/Reference.cs //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavi...
3-Business/3-Modules/lm.Comol.Modules.Standard/ProjectManagement/Domain/List/dtoTimeGroup.cs
EdutechSRL/Adevico
1
7069282
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace lm.Comol.Modules.Standard.ProjectManagement.Domain { [Serializable] public class dtoTimeGroup { public TimeGroup TimeLine { get; set; } public long FromTicks { get; set; } public long To...
Maki/Extensions/VariantExtensions.cs
vladris/Maki.NET
8
7069283
using System; namespace Maki { /// <summary> /// Extensions for Variant. /// </summary> public static class VariantExtensions { /// <summary> /// Maps the function matching the item inhabiting the variant. Returns a new variant containing the /// result of the function. ...
GdiPlusExtensions/src/Filters/ConvolutionFilter.cs
AzuxirenLeadGuy/GdiPlusExtension
5
7069284
<gh_stars>1-10 using System.Drawing; namespace GdiPlusExtensions.Filters { /// <summary> /// These filters process the image based on the process of convolution /// </summary> public struct ConvolutionFilter : IFilterType { /// <inheritdoc/> public string FilterName { get; private set; } /// <inheritdoc/> ...
src/Tizen.Multimedia.Util/Interop/Interop.ThumbnailExtractor.cs
yoowonyoung/TizenFX
149
7069286
/* * Copyright (c) 2016 Samsung Electronics Co., Ltd 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...
Fps Project/Assets/FPS Pack/Scripts/Demo/MouseLock.cs
Player11132/FpsProject
0
7069287
using UnityEngine; using System.Collections; public class MouseLock : MonoBehaviour { // Use this for initialization void Start () { } // Update is called once per frame void Update () { #if UNITY_4_1 || UNITY_4_2 || UNITY_4_3 || UNITY_4_5 || UNITY_4_6 Screen.lockCursor = true; #else Cursor.v...
LedGameDisplayLibrary/Character.cs
Hunv/LedGameDisplay
0
7069288
<reponame>Hunv/LedGameDisplay using System; using System.Collections.Generic; using System.Drawing; using System.Text; namespace LedGameDisplayLibrary { public class Character { public string Name { get; set; } public char Char { get; set; } public string File { get; set; } pub...
MattEland.Common/Providers/IObjectProvider.cs
IntegerMan/MattEland.Common
0
7069289
// --------------------------------------------------------- // IObjectProvider.cs // // Created on: 08/27/2015 at 5:44 PM // Last Modified: 08/27/2015 at 5:44 PM // // Last Modified by: <NAME> // --------------------------------------------------------- using System; using MattEland.Common.Annotations; na...
toolkits/Infinity.Mvvm/Commands/CommandBase.cs
Khaled-Janada/AC_Charts
0
7069290
using System.Windows.Input; namespace Infinity.Commands; public abstract class CommandBase : ICommand { public static bool DefaultUseCommandManager { get; set; } = true; public abstract bool CanExecute(object? parameter); public abstract void Execute(object? parameter); public abstract event EventH...
BeatTogether.DedicatedServer.Messaging/Abstractions/IPacketRegistry.cs
pythonology/BeatTogether.DedicatedServer
6
7069292
<filename>BeatTogether.DedicatedServer.Messaging/Abstractions/IPacketRegistry.cs using System; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using LiteNetLib.Utils; namespace BeatTogether.DedicatedServer.Messaging.Abstractions { public interface IPacketRegistry { /// <summar...
02. Programming Fundamentals - Jan2017/05. Lists - Exercises/01. Max Sequence of Equal Elements/MaxSequenceOfEqualElements.cs
IvelinMarinov/SoftUni
3
7069293
<filename>02. Programming Fundamentals - Jan2017/05. Lists - Exercises/01. Max Sequence of Equal Elements/MaxSequenceOfEqualElements.cs using System; using System.Collections.Generic; using System.Linq; namespace _01.Max_Sequence_of_Equal_Elements { class MaxSequenceOfEqualElements { static void Main(...
CSharp.lua.Tests/Input/RuntimeBug/LongNamespace.cs
Drake53/CSharp.lua
12
7069294
<filename>CSharp.lua.Tests/Input/RuntimeBug/LongNamespace.cs using System; using System.Collections.Generic; using System.Text; using This.Namespace.Is.Waaaaaaaaaaay.Too.Long; using This.Namespace.Is.Also.Way.Too.Long; using This.Long; namespace This.Namespace.Is.Waaaaaaaaaaay.Too.Long { class Something { publi...
ModConfig.cs
kdau/GenericModConfigMenu
0
7069295
<reponame>kdau/GenericModConfigMenu using GenericModConfigMenu.ModOption; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using StardewModdingAPI; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GenericModConfigMenu {...
Assets/Scripts/Data/Graph/CycleDetection.cs
V-Sekai/CASSIE
1
7069296
using UnityEngine; using System.Collections.Generic; namespace VRSketch { public static class CycleDetection { public static bool DetectCycle(Graph g, ISegment startSegment, INode startNode, out LinkedList<HalfSegment> cycle, bool reversed = false) { //Cycle cycle = new Cycle(use...
04.Sorting-Algorithms/SortingAlgorithms/Quicksorter.cs
bozhidar-slavov/12.Data-Structures-and-Algorithms
0
7069297
<reponame>bozhidar-slavov/12.Data-Structures-and-Algorithms<gh_stars>0 namespace SortingHomework { using System; using System.Collections.Generic; public class Quicksorter<T> : ISorter<T> where T : IComparable<T> { public void Sort(IList<T> collection) { QuickSort(collectio...
WebGL.UnitTests/conformance/v100/BadArgumentsTest.cs
jdarc/webgl.net
1
7069298
using System; using NUnit.Framework; namespace WebGL.UnitTests { [TestFixture] public class BadArgumentsTest : BaseTest { private class ValueThrows { public readonly dynamic Value; public readonly bool Throws; public ValueThrows(dynamic value, bool thro...
ParkAPI/Controllers/NationalParksController.cs
kevinkirkl3y/Parks.Solution
0
7069299
<reponame>kevinkirkl3y/Parks.Solution using System.Collections.Generic; using System.Linq; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Versioning; using ParkAPI.Models; using Microsoft.EntityFrameworkCore; using System; using System.Threading.Tasks; namespace ParkAPI.Controllers { [ApiVersion("1.0...
FigmaSharp.Tools/xForms/xForms.Cocoa/ViewWrappers/Window.cs
berlamont/FigmaSharp
0
7069300
/* * 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 restriction, including * without limitation the r...
Analogy.LogViewer.RSSReader/Core/RSSFeed.cs
Analogy-LogViewer/Analogy.LogViewer.RSSReader
1
7069301
<gh_stars>1-10 using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace Analogy.LogViewer.RSSReader.Core { [Serializable] public class RSSFeed : AbstractRSSFeed { #region Ctor pu...
bulb/source/ViewModels/Components/RigidBodyComponentViewModel.cs
AGarlicMonkey/Garlic
33
7069303
<gh_stars>10-100 using Membrane = membrane; namespace Bulb { public class RigidBodyComponentViewModel : ComponentViewModel { public string Mass { get => mass; set { mass = value; massNum = EditorPropertyHelper.InputStringToFloat(mass); ...
Hes.Collections/Generic/IMutableGrouping.cs
emrahsungu/Hes.Collections.Generic
0
7069304
namespace Hes.Collections.Generic { using System.Linq; public interface IMutableGrouping<out TKey, TElement> : IGrouping<TKey, TElement> { /// <summary> /// Adds the given element to this grouping. /// </summary> /// <param name="element">Element to add.</param> void A...
RabbitMqHttpApiClient/Models/QueueModel/Queue.cs
kuanysh-nabiyev/RabbitMqHttpApiClient
9
7069305
using Newtonsoft.Json; using RabbitMqHttpApiClient.Models.Common; namespace RabbitMqHttpApiClient.Models.QueueModel { public class Queue { [JsonProperty("memory")] public long Memory { get; set; } [JsonProperty("message_stats")] public QueueMessageStats MessageStats { get; set;...
SecureMessage/MainMenu.cs
nicolaschen1/SecureMessage
1
7069306
/* SecureMessage VERSION: 1.0 Inputs: Message to encrypt. Outputs: Encrypted message. Description: This software tool allows to encrypt and decrypt a message. Developer: <NAME> */ using System; using System.Windows.Forms; namespace SecureMessage { public partial class SecureMessage : Form ...
Confidence/Validations/Collection/CollectionAllValidationExtensions.cs
r12f/Confidence
0
7069307
<filename>Confidence/Validations/Collection/CollectionAllValidationExtensions.cs // Copyright (c) r12f. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System; using System.Collections; using System.Collections.Generic; using System.Diag...
Neovolve.Toolkit/Communication/NamespaceDoc.cs
roryprimrose/Neovolve.Toolkit
0
7069308
namespace Neovolve.Toolkit.Communication { /// <summary> /// The Neovolve.Toolkit.Communication namespace contains classes that provide communication related functionality. /// The communication support includes local, distributed and debugging implementations. /// </summary> internal static clas...
Assets/Resources/Scripts/LoadConfiguration.cs
vithu92/hackzurich2020_viroda
0
7069309
using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class LoadConfiguration { public static ApiConfig ApiConfig; /// <summary> /// Load API config from json file /// </summary> [Runti...
labs/IntroEFCore-ver2/IntroEFCore/IntroEFCore/Todo.cs
ioanabirsan/Introduction-to-.Net
0
7069310
using System; using System.ComponentModel.DataAnnotations; namespace IntroEFCore { public class Todo { public Guid Id { get; set; } public string Description { get; set; } [Required] public bool IsCompleted { get; set; } } }
src/System.ComponentModel.TypeConverter/tests/UInt64ConverterTests.cs
vkvenkat/corefx
2
7069311
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Globalization; using Xunit; namespace System.ComponentModel.Tests { public class UInt64ConverterTe...
src/Samples/Samples.AzureServiceBus/Program.cs
jdaigle/LightRail
9
7069312
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Microsoft.ServiceBus.Messaging; namespace Samples.AzureServiceBus { public class Program { public static void Main(string[] args) { var factory = MessagingFactory...
SplitBillsBackend/Migrations/SplitBillsDbContextModelSnapshot.cs
piters3/SplitBillsBackend
1
7069313
<gh_stars>1-10 // <auto-generated /> using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using SplitBillsBackend.Data; namespace SplitBillsBackend.Migrations { [DbContext(typeof(SplitBillsDbContext))] partial clas...
2015/Day18/Solution.cs
vinaykapadia/adventofcode
0
7069314
using System; namespace AdventOfCode._2015.Day18; [ProblemName("Like a GIF For Your Yard")] internal class Solution : ISolver { private static int size = 0; public object PartOne(string input) { int steps = 100; size = input.Lines().Length; int[,] grid = new int[size + 2, size ...
WarOfTheWorlds/WarOfTheWorlds/Program.cs
iansmith-uk/WarOfTheWorlds
0
7069315
<gh_stars>0 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WarOfTheWorlds { class Program { static void Main(string[] args) { var inputPath = "C:/temp/warOfTheWorlds.txt"; va...
backend/PhanTichChungKhoan.WebApp/Startup.cs
phongnq007/phantichchungkhoan
0
7069316
<filename>backend/PhanTichChungKhoan.WebApp/Startup.cs using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.UI; using Microsoft.AspNetCore.Hosting; using Microsoft.Asp...
An_3_Semestru_1/DezvoltareAplicatiiWebC#/GuessGame/Default.aspx.cs
PavelClaudiuStefan/FMI
1
7069317
<reponame>PavelClaudiuStefan/FMI using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page...
SB014.Tests/Tournament_AddTournamentSubscriberGameAnswerAttemptShould.cs
sbarrettGitHub/SB014
0
7069318
<gh_stars>0 using System; using System.Collections.Generic; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.SignalR; using Moq; using SB014.API.BAL; using SB014.API.Controllers; using SB014.API.DAL; using SB014.API.Domain; using SB014.API.Notifications; using SB014.API.Models; using Xunit; namespace SB014.U...
SRTPluginProviderDMC4SE/GameHashes.cs
SpeedrunTooling/SRTPluginProviderDMC4SE
0
7069319
<reponame>SpeedrunTooling/SRTPluginProviderDMC4SE<gh_stars>0 using System; using System.IO; using System.Linq; using System.Security.Cryptography; namespace SRTPluginProviderDMC4SE { /// <summary> /// SHA256 hashes for the DMC4SE game executables. /// </summary> public static class GameHashes { ...
src/Ducode.Wolk.Api/Utilities/StartupUtilities.cs
dukeofharen/wolk
1
7069320
using System.IO; using Ducode.Wolk.Common.Utilities; using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.FileProviders; namespace Ducode.Wolk.Api.Utilities { public static class StartupUtilities { public static IApplicationBuilder UseGui(this IApplicationBuilder app, bool loadStatic...
tests/Senticode.Database.Tools.Tests/Framework/TestBase.cs
Senticode/Senticode.Xamarin.Tools
1
7069321
using System.Threading.Tasks; using NUnit.Framework; using Senticode.Database.Tools.Interfaces; using Unity; namespace Senticode.Database.Tools.Tests.Framework { [TestFixture] public abstract class TestBase { protected IUnityContainer _container; public bool WithStrongContext { get; set; ...
VaccineTracker/Views/MainWindow.xaml.cs
harshmaurya/covidvaccinetracker
0
7069322
<reponame>harshmaurya/covidvaccinetracker using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Threading.Tasks; using System.Windows; using VaccineTracker.Domain; using VaccineTracker.Services; using VaccineTracker.ViewModel; using VaccineTracker.Views; n...
Source/Ultraviolet.SDL2/Shared/SDL2PlatformConfiguration.cs
Spool5520/ultraviolet
0
7069323
using System; namespace Ultraviolet.SDL2 { /// <summary> /// Represents the configuration information for SDL2 windows. /// </summary> public sealed class SDL2PlatformConfiguration { /// <summary> /// Gets or sets the rendering API which will be used by the application. ///...
End/BlazorProducts.Server/Entities/Models/ChartDto.cs
CodeMazeBlog/blazor-wasm-signalr-charts
8
7069324
<reponame>CodeMazeBlog/blazor-wasm-signalr-charts<filename>End/BlazorProducts.Server/Entities/Models/ChartDto.cs<gh_stars>1-10 using System; using System.Collections.Generic; using System.Text; namespace Entities.Models { public class ChartDto { public string Label { get; set; } public int Val...
Ascentis.Infrastructure/DataPipeline/ISourceAdapter.cs
Ascentis/infrastructure
0
7069325
using System.Collections.Generic; using Ascentis.Infrastructure.DataPipeline.SourceAdapter.Utils; namespace Ascentis.Infrastructure.DataPipeline { public interface ISourceAdapter<TRow> : IAdapter { public event DataPipeline<TRow>.RowErrorDelegate OnSourceAdapterRowReadError; public bool AbortO...
Assets/VoxelEngine/Source/Chunks/MeshGeneration/ChunkUpdateJob.cs
VektorKnight/VoxelEngine
3
7069326
using System; using UnityEngine; using VoxelEngine.Chunks.LightMapping; namespace VoxelEngine.Chunks.MeshGeneration { public readonly struct ChunkUpdateJob { public readonly int Id; public readonly VoxelWorld World; public readonly Chunk Chunk; public readonly Action<ChunkMeshResult...
HuntingModel/Localization/ValidationRes.Designer.cs
jirikoud/HuntingTerritory
0
7069327
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
TypingRealm.Combat/UpdateFactory.cs
ewancoder/typingrealm
1
7069328
using System.Collections.Generic; using TypingRealm.Messaging; using TypingRealm.Messaging.Updating; namespace TypingRealm.Combat { [Message] public sealed class Update { #pragma warning disable CS8618 // Non-nullable field is uninitialized. Consider declaring as nullable. public List<Player> Play...
SearchTaskOption.cs
Wbooru/WbooruPlugin.Saucenao
0
7069329
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WbooruPlugin.Saucenao { public class SearchTaskOption { public SaucenaoAPIOption APIOption { get; set; } = new SaucenaoAPIOption(); public bool EnableDownload { get; s...
mdlDataBaseAccess/mdlDataBaseAccess/MySqlClient/Common/NativeMethods.cs
silvath/siscobras
0
7069330
<filename>mdlDataBaseAccess/mdlDataBaseAccess/MySqlClient/Common/NativeMethods.cs // Copyright (C) 2004-2005 MySQL AB // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as published by // the Free Software Foundation // // There a...
Assets/C#/Object-Chat/UI_Setting_MainChat.cs
Zakarea79/Messenger-unity2020-Csharp_php
0
7069331
<filename>Assets/C#/Object-Chat/UI_Setting_MainChat.cs using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; using UnityEngine.SceneManagement; public class UI_Setting_MainChat : MonoBehaviour { [SerializeField] private Text Username; [SerializeField] private Butto...
src/03.app/01-Alabo.App.Share/TaskExecutes/Domain/Enums/LimitType.cs
tongxin3267/alabo
0
7069332
using Alabo.Web.Mvc.Attributes; using System.ComponentModel.DataAnnotations; namespace Alabo.App.Share.TaskExecutes.Domain.Enums { /// <summary> /// 封顶方式 /// </summary> [ClassProperty(Name = "封顶方式")] public enum LimitType { /// <summary> /// 不封顶 /// </summary> ...
RICADO.RabbitMQ/RedeliveredMessage.cs
ricado-group/dotnet-rabbitmq
0
7069333
using System; namespace RICADO.RabbitMQ { internal struct RedeliveredMessage { public Guid MessageID; public DateTime FirstTimestamp; public DateTime LastTimestamp; public int RedeliveredCount; } }
OOPLab6/AppSettings/Theme.cs
dim-den/Hardware-store
1
7069334
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace OOPLab6.AppSettings { public class Theme { private List<string> themes = new List<string>(); public List<string> Themes { get ...
Assets/Obi/Scripts/Solver/ObiAnimatorController.cs
darke333/Chemical-Laboratory-VR
0
7069335
<gh_stars>0 using UnityEngine; using System; namespace Obi { [RequireComponent(typeof(Animator))] [DisallowMultipleComponent] public class ObiAnimatorController : MonoBehaviour { private Animator animator; private float lastUpdate; private float updateDelta; public float UpdateDelta{ get{return update...
ChartMogul/Models/Enrichment/ClearbitModel.cs
john-craft/chartmogul-dotnet
2
7069336
using Newtonsoft.Json; namespace ChartMogul.API.Models.Enrichment { public class ClearbitModel { [JsonProperty(PropertyName = "person")] public Person Person { get; set; } [JsonProperty(PropertyName = "company")] public Company Company { get; set; } } public class Co...
src/WifiPlug.Api/Entities/GroupItemEntity.cs
wifiplug/api-client-net
2
7069337
<reponame>wifiplug/api-client-net // Copyright (C) WIFIPLUG. All rights reserved. // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace WifiPlug.Api.Entities { ...
InmobiliariaLogicLayer/Lotes/Lote.cs
CBDELEON/cake
0
7069338
<reponame>CBDELEON/cake<gh_stars>0 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace InmobiliariaLogicLayer.Lotes { public class Lote: ILoteComponent { //private double Id; //variable que obtiene el precio de la base d...
Assets/RosSharp/Scripts/RosBridgeClient/RosCommuncation/UnityFibonacciActionClient.cs
hiro-han/ar-car-oculus-quest2
1
7069339
/* © Siemens AG, 2019 Author: <NAME> (<EMAIL>) 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 i...
src/Data/IPSI.Data.Common/Attributes/MinValueAttribute.cs
r-petrov/IPSI
0
7069340
<gh_stars>0 using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace IPSI.Data.Common.Attributes { public class MinValueAttribute : ValidationAttribute { private readonly double minValue; public MinValueAttribute(double minValue...
VideoPlayerSample/VideoPlayerSample/VideoPlayerSample.Droid/Renderers/VideoPlayerRenderer.cs
gagikkyurkchyan/xamarin-samples
20
7069341
<filename>VideoPlayerSample/VideoPlayerSample/VideoPlayerSample.Droid/Renderers/VideoPlayerRenderer.cs<gh_stars>10-100 using System; using System.ComponentModel; using Android.Content; using Android.Runtime; using Android.Util; using Android.Views; using Android.Widget; using VideoPlayerSample.Controls; using VideoPla...
RestServiceApiXam/RestServiceApiXam/Services/IRawgAPI.cs
juanjoaquino05/RestServiceApiXam
0
7069342
using Refit; using RestServiceApiXam.Models; using System; using System.Collections.Generic; using System.Net.Http; using System.Text; using System.Threading.Tasks; namespace RestServiceApiXam.Services { public interface IRawgAPI { [Get("/creators")] //Task<ApiResponse<HttpResponseMessage>> Ge...
Tank Fortress!/Assets/scripts/projectiles/explosion.cs
likangning93/TankFortress
1
7069344
<reponame>likangning93/TankFortress using UnityEngine; using System.Collections; public class explosion : MonoBehaviour { public int lifeSpan = 30; public float maxScale = 10.0f; public int delay = 0; int lifeRemaining; float scaleStep; float currentScale; // Use this for initialization v...
PlatformAgileFrameworkCore/PlatformAgileFrameworkCoreContractsStandard/TypeHandling/CoreContract_TypeHandlingUtils.cs
Platform-Agile-Software/PAF-Community
0
7069345
//@#$&+ // //The MIT X11 License // //Copyright (c) 2010 - 2016 Icucom Corporation // //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...
ExifRemover/frmUpdate.cs
fourDotsSoftware/ExifRemover
0
7069346
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace ExifRemover { public partial class frmUpdate : ExifRemover.CustomForm { public static bool PressedSkip = false; public...
MalApi/Models/Genre.cs
athulrajts/MyAnimeListApi-v2-Wrapper
0
7069347
using System.Text.Json.Serialization; namespace MalApi { public class Genre { [JsonPropertyName("id")] public int ID { get; set; } [JsonPropertyName("name")] public string Name { get; set; } public override string ToString() { return Name; ...
TelecommunicationDevicesStore/TelecommunicationDevicesStore.WebUI/Areas/Admin/Views/Dashboard/Customers.cshtml
matin360/eCommerceApp
1
7069348
<filename>TelecommunicationDevicesStore/TelecommunicationDevicesStore.WebUI/Areas/Admin/Views/Dashboard/Customers.cshtml @model IEnumerable<TelecommunicationDevicesStore.WebUI.Areas.Admin.Models.CustomerFullModel> @{ ViewBag.Title = "Customers"; Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; } @{ Html.Rende...
Foundry.Media.Nintendo64.Rom/RomSize.cs
Shirasho/Foundry
0
7069349
using System; using System.Collections.Generic; namespace Foundry.Media.Nintendo64.Rom { /// <summary> /// ROM size information. /// </summary> public sealed class RomSize : IEquatable<RomSize>, IComparable<RomSize>, IEquatable<ContentSize>, IComparable<ContentSize> { private static readon...
tests/ifvm.testutilities/Resources.cs
DustinCampbell/ifvm
0
7069350
using System.IO; using System.Reflection; namespace IFVM.TestUtilities { public static class Resources { public const string Glulx_Advent = "advent.ulx"; public const string Glulx_Glulxercise = "glulxercise.ulx"; public static Stream LoadResource(string resourceName) { ...
src/Nemo/ObjectFactoryAsync.cs
tahiralvi/Nemo
0
7069351
<filename>src/Nemo/ObjectFactoryAsync.cs<gh_stars>0 using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; using Nemo.Attributes; using Nemo.Collections; using Nemo.Collections.Extensions; using Nemo.C...
Gizza.Extensions/System/Collections/Specialized/ToQueryString.cs
burakoner/GizzaLibraries
0
7069352
using System; using System.Collections.Generic; using System.Collections.Specialized; namespace Gizza.Extensions { public static partial class Extensions { public static string ToQueryString(this NameValueCollection parameters, bool urlEncode = false) { List<string> items = new List...
src/Nethereum.Generators.UnitTests/Tests/Core/DotNetProjectFolderInfoTests.cs
earizon/Nethereum
9
7069353
<reponame>earizon/Nethereum<filename>src/Nethereum.Generators.UnitTests/Tests/Core/DotNetProjectFolderInfoTests.cs using Nethereum.Generators.Core; using Nethereum.Generators.Tests.Common; using System.IO; using Xunit; namespace Nethereum.Generators.UnitTests.Tests.Core { public class DotNetProjectFolderInfoTests...
Find Me Out Client/Assets/Game/Scripts/Lobby/MeshCombiner.cs
adityarahmanda/Find-Me-Out
0
7069354
<gh_stars>0 using System.Collections; using System.Collections.Generic; using UnityEngine; [RequireComponent(typeof(MeshFilter))] [RequireComponent(typeof(MeshRenderer))] public class MeshCombiner : MonoBehaviour { void Start() { CombineMesh(); } void CombineMesh() { MeshFilter[] m...
WebForms-Editor-Modern-UI/Controllers/CleanMetadataController.cs
groupdocs-metadata/GroupDocs.Metadata-for-.NET-WebForms-App
1
7069355
<reponame>groupdocs-metadata/GroupDocs.Metadata-for-.NET-WebForms-App using System; using System.Collections.Generic; using System.Linq; using System.Web.Http; using System.Web.Http.Results; using Metadata_Editor_Modren_UI.Helpers; using System.IO; using GroupDocs.Metadata; using GroupDocs.Metadata.Tools; usi...
sdk/Managed/src/Microsoft.WindowsAzure.MobileServices/Platform/IPlatform.cs
brettsam/azure-mobile-services
0
7069356
<reponame>brettsam/azure-mobile-services<filename>sdk/Managed/src/Microsoft.WindowsAzure.MobileServices/Platform/IPlatform.cs // ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // -------------------------------------------------...
OasX/Views/Exercise/PerformSelectable.cshtml
lurongkai/OasX
0
7069357
@using OasX.Models.Exercise <div id="question-main"> </div> <script> (function() { function isMultiple(q) { if (q.options.length > 0) { var counter = 0; q.options.forEach(function(o) { if (o.isRight == true) { counter ...
CodeployerMVC/CodeployerMVC/Views/Manage/ChangePassword.cshtml
Codeployer/CodeployerMVC
0
7069358
@model CodeployerMVC.Models.ChangePasswordViewModel @{ ViewBag.Title = "Zmień hasło"; } @using (Html.BeginForm("ChangePassword", "Manage", FormMethod.Post, new { @class = "form-horizontal", role = "form" })) { <center> <h1 class="deepshd">Zmień swoje hasło</h1> @Html.AntiForgeryToken() <h2>Wypełni...
Assets/Scripts/CharacterSelectState.cs
DapperDino/Multiplayer-Character-Select
3
7069359
using System; using Unity.Netcode; public struct CharacterSelectState : INetworkSerializable, IEquatable<CharacterSelectState> { public ulong ClientId; public int CharacterId; public bool IsLockedIn; public string PlayerName => $"Player {ClientId}"; public CharacterSelectState(ulong clientId, int...
src/Iys.SDK/Models/RetailerAddResult.cs
ErcinDedeoglu/Iys.Sdk
0
7069360
<filename>src/Iys.SDK/Models/RetailerAddResult.cs using System.Collections.Generic; using Newtonsoft.Json; namespace Iys.SDK.Models { public class RetailerAddResult { [JsonProperty("retailerCode")] public string RetailerCode { get; set; } [JsonProperty("errors")] public List<IysError> Errors ...
WebServices/TodoREST/TodoREST/Models/TodoItem.cs
tibi0930/xamarin-forms-samples
0
7069361
<filename>WebServices/TodoREST/TodoREST/Models/TodoItem.cs using System; namespace TodoREST { public class TodoItem { /*public string ID { get; set; } public string Name { get; set; } public string Notes { get; set; } public bool Done { get; set; }; //TODOLISTPAGE <Image ...
ESISharp/Enumerations/MailLabelColor.cs
wranders/ESISharp
20
7069362
<reponame>wranders/ESISharp namespace ESISharp.Enumerations { /// <summary>Mail Label Color</summary> public class MailLabelColor { /// <summary>White</summary> public static readonly MailLabelColor White = new MailLabelColor("#ffffff"); /// <summary>Yellow</summary> public ...
sdk/dotnet/MountedFile.cs
spacelift-io/pulumi-spacelift
0
7069363
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; names...
AP.cs/Form1.cs
Lam-dev/Cat_Ghep_Video
0
7069364
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; using System.Media; namespace AP.cs { public partial class Form1 : Form { public Form1()...
Cake.PlasticSCM.Tests/Fixtures/FindFixture.cs
unatecict/Cake.PlasticSCM
0
7069365
using Cake.Core.Diagnostics; using Cake.PlasticSCM.Find; namespace Cake.PlasticSCM.Tests.Fixtures { public class FindFixture : PlasticSCMFixtureWithData<PlasticSCMFindSettings, PlasticSCMFindResult> { /// <inheritdoc /> public FindFixture(string resultFile) { Pr...
Assets/Scripts/GameManager.cs
RaphGamingz/Unity-Tower-Defense
0
7069366
using UnityEngine; using UnityEngine.SceneManagement; using TMPro; public class GameManager : MonoBehaviour { public static bool gameEnded = true; public static string terrainLoaded; public static GameManager instance; public Material lighting; public GameObject gameEndEffect; public TextMeshP...
NPOI.HSSF.Record.Aggregates.Chart/AXMAggregate.cs
iNeverSleeeeep/NPOI-For-Unity
1
7069367
<filename>NPOI.HSSF.Record.Aggregates.Chart/AXMAggregate.cs using NPOI.HSSF.Model; using NPOI.HSSF.Record.Chart; namespace NPOI.HSSF.Record.Aggregates.Chart { /// <summary> /// AXM = YMult StartObject ATTACHEDLABEL EndObject /// </summary> public class AXMAggregate : ChartRecordAggregate { private YMultRecord y...
src/lib/XyrusWorx.Runtime.Primitives/Float4x4.cs
xyrus02/runtime
0
7069368
using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Runtime.InteropServices; using JetBrains.Annotations; namespace XyrusWorx.Runtime { [PublicAPI] [StructLayout(LayoutKind.Sequential)] [SuppressMessage("ReSharper", "InconsistentNaming")] [DebuggerDisplay("{_m00}, {_m01}, {_...
BookStoreApi/Services/Dtos/DeliveryInforDto.cs
NgocThachThai/AugenBookStore
0
7069369
using DataAccessor.Common; using DataAccessor.Models; namespace Services.Dtos { public class DeliveryInforDto { public ServiceType ServiceType { get; set; } public Book Book { get; set; } } }
src/Be.Stateless.BizTalk.Deployment.Cmdlets/Deployment/Cmdlet/Sso/RemoveAffiliateApplication.cs
icraftsoftware/Be.Stateless.PowerShell.Module.BizTalk.Deploymen
1
7069370
#region Copyright & License // Copyright © 2012 - 2021 <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 ...
src/FubuMVC.Core/Attributes.cs
ketiko/fubumvc
0
7069371
using System; using System.Collections.Generic; using FubuCore; using FubuMVC.Core.Registration; using FubuMVC.Core.Registration.Nodes; using FubuMVC.Core.Resources.Conneg; using FubuMVC.Core.Runtime.Formatters; namespace FubuMVC.Core { [AttributeUsage(AttributeTargets.Property)] public class RouteI...
src/GameLibrary.Domain/Interfaces/Repositories/IRepository.cs
evertonrps/game-library
0
7069372
using GameLibrary.Domain.Core; using System; using System.Collections.Generic; using System.Linq.Expressions; namespace GameLibrary.Domain.Interfaces.Repositories { public interface IRepositoryManyToMany<TEntity> : IDisposable where TEntity : EntityMany<TEntity> { IEnumerable<TEntity> GetAll(); ...
common/HR.TA.CommonLibrary/HR.TA.Talent/EnumSetModel/CandidateTrackingCategory.cs
nirajindi/msrecruit-scheduling-engine
8
7069373
<gh_stars>1-10 //----------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. //----------------------------------------------------------------------- using System.Runtime.Serialization; namespace HR.TA.TalentEntities.Enum { [Da...
Supported Languages/C#.Net/SMASH.Tests/VerificationTest.cs
SMASH-INC/API
0
7069374
/* * SMASH.Tests * * This file was automatically generated for the SMASH API by SMASH, INC ( https://smashlabs.io ) */ using System; using System.Collections.Generic; using System.Globalization; using System.IO; using System.Threading.Tasks; using Newtonsoft.Json.Converters; using SMASH.SDK.Common; using SMASH.SDK...
src/Reviewer.Core/Pages/EditBusinessPage.xaml.cs
Luyunmt/xamarin-azure-businessreview
57
7069375
using System; using System.Collections.Generic; using System.Threading.Tasks; using Xamarin.Forms; namespace Reviewer.Core { public partial class EditBusinessPage : ContentPage { bool isNew; EditBusinessViewModel viewModel; public EditBusinessPage() { InitializeCom...
ProjBobcat/ProjBobcat/Class/Helper/DownloadHelper.cs
laolarou726/ProjBobcat
0
7069376
using System; using System.Buffers; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Linq; using System.Net; using System.Net.Http; using System.Net.Http.Headers; using System.Security.Cryptography; using System.Threading; using System.Threa...
nn/hid/NpadControllerColor.cs
SinsofSloth/RF5-global-metadata
1
7069377
<reponame>SinsofSloth/RF5-global-metadata public struct NpadControllerColor // TypeDefIndex: 11562 { // Fields public Color4u8 main; // 0x0 public Color4u8 sub; // 0x4 // Methods // RVA: 0x364C40 Offset: 0x364D41 VA: 0x364C40 Slot: 3 public override string ToString() { } }
2015/06-ElmahAndSimpleInjector/SimpleInjector/WebMvcApplication/Views/Home/Index.cshtml
htdnug/meetings
2
7069378
@model IEnumerable<ClassLibrary.MyObject> @{ ViewBag.Title = "Home Page"; } <div class="jumbotron"> <h1>ASP.NET</h1> <p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS and JavaScript.</p> <p><a href="http://asp.net" class="btn btn-primary...