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 |
|---|---|---|---|---|
server/TestMySkills.Tests/App_Start/AutoMapperConfig/AutoMapperRegistry.cs | encounter12/TestMySkills | 0 | 7065589 | <filename>server/TestMySkills.Tests/App_Start/AutoMapperConfig/AutoMapperRegistry.cs
namespace TestMySkills.Tests.App_Start.AutoMapperConfig
{
using System;
using System.Linq;
using AutoMapper;
using StructureMap.Configuration.DSL;
using TestMySkills.Models;
using TestMySkills.WebAPI.Mod... |
Com.Game.Data/SysNewbieWidgeVo.cs | moto2002/mobahero_src | 4 | 7065590 | <reponame>moto2002/mobahero_src<gh_stars>1-10
using System;
namespace Com.Game.Data
{
[Serializable]
public class SysNewbieWidgeVo
{
public string unikey;
public string widge_id;
public string widge_name;
public string widge_pos_fix;
public int widge_type;
public int arrow_show;
... |
NodeService/ConsoleWriter.cs | thinkingmedia/gems | 0 | 7065591 | <reponame>thinkingmedia/gems
using System;
using Common.Log;
namespace NodeService
{
/// <summary>
/// Used to write the log output to the console.
/// </summary>
public class ConsoleWriter : ILogWriter
{
public void Open()
{
}
public void Write(Logger.LogLevel pLe... |
NewLife.Core/Net/SerialPortConfig.cs | NewLifeX/X_NET20 | 5 | 7065592 | using System;
using System.ComponentModel;
using System.IO.Ports;
using System.Text;
using System.Xml.Serialization;
using NewLife.Xml;
namespace NewLife.Net
{
/// <summary>串口配置</summary>
[XmlConfigFile("Config\\Serial.config")]
public class SerialPortConfig : XmlConfig<SerialPortConfig>
{... |
Interface/Misc/VariousTable.cs | Hara-Laboratory/oiscsim | 4 | 7065593 | <filename>Interface/Misc/VariousTable.cs
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace Interface.Misc
{
[Serializable]
public class VariousTable
{
public enum enumVariousElement
{
Table,
Bool,
... |
DependentTaskRunner/Properties/AssemblyInfo.cs | TheCodeCleaner/DependentTaskRunner | 7 | 7065594 | using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("DependentTaskRunner")]
[assembly: AssemblyDescription("Running tasks in parallel while taking into account the dependencies between them.")]
[assembly: AssemblyProduct("DependentTaskRunner")]
[assembly: AssemblyCopyright("Copyrig... |
src/Microsoft.Azure.CosmosRepository/Providers/ICosmosUniqueKeyPolicyProvider.cs | Rabosa616/azure-cosmos-dotnet-repository | 0 | 7065595 | <gh_stars>0
// Copyright (c) IEvangelist. All rights reserved.
// Licensed under the MIT License.
using System;
using Microsoft.Azure.Cosmos;
namespace Microsoft.Azure.CosmosRepository.Providers
{
/// <summary>
/// The cosmos partition key path provider exposes the ability
/// to get an <see cref="IItem"... |
src/Nager.Date/Contract/ICatholicProvider.cs | RexTremendae/Nager.Date | 358 | 7065596 | using Nager.Date.Model;
using System;
namespace Nager.Date.Contract
{
/// <summary>
/// Catholic Provider
/// </summary>
public interface ICatholicProvider
{
/// <summary>
/// Get Catholic easter for requested year
/// </summary>
/// <param name="year"></param>
... |
HealthR/Web/HealthR.Web/Views/Home/Index.cshtml | tanyogeorgiev/ASP.NET-Core-MVC | 0 | 7065597 |
@{
Layout = "_emptyLayout";
}
@{
ViewData["Title"] = "Home Page";
}
<div id="holder">
<div class="container-full " >
<div class="btn-group btn-group-justified paddingFromTop ">
<a asp-area="" asp-controller="Account" asp-action="Login" class="btn btn-lg btn-block btn-success btn-w... |
Therapp/FiapCoin/FiapCoin/Model/ChatModel.cs | gabrielpfc/produto-therapp | 0 | 7065598 | <gh_stars>0
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.CompilerServices;
using System.ComponentModel;
namespace THERAPP.Model
{
public class ChatModel : INotifyPropertyChanged
{
public ChatModel()
{
}
public ChatModel(int _id, Stri... |
v2.4/API/Controllers/DB/EtrainPartController.cs | LightosLimited/RailML | 0 | 7065599 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Models.DB;
namespace API.Controllers.DB
{
[Route("api/[controller]")]
[ApiController]
public class Etr... |
src/GeminiLab.Core2.CommandLineParser/CommandLineParser.cs | GeminiLab/GeminiLab.Core2 | 0 | 7065600 | using System;
using System.Collections.Generic;
using System.Reflection;
using GeminiLab.Core2.GetOpt;
namespace GeminiLab.Core2.CommandLineParser {
[AttributeUsage(AttributeTargets.Property, AllowMultiple = true)]
public sealed class OptionAttribute : Attribute {
public char Option { get; set; } = '\0... |
Assets/Scenes/AllScenes/Items/BaseOffhand.cs | SuperJura/RpgGame | 2 | 7065601 | <filename>Assets/Scenes/AllScenes/Items/BaseOffhand.cs
using System;
using System.Collections.Generic;
[Serializable]
public class BaseOffhand : Equipment
{
public BaseOffhand()
{
this.Slot = Enumerations.EquipmentSlot.Offhand;
}
}
|
CefNet.DevTools.Protocol/Generated/DOM/BackendNode.g.cs | CefNet/CefNet.DevTools.Protocol | 0 | 7065602 | <gh_stars>0
//
// DO NOT MODIFY. THIS IS AUTOMATICALLY GENERATED FILE.
//
#nullable enable
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
using System;
using System.Collections.Generic;
namespace CefNet.DevTools.Protocol.DOM
... |
src/WebApi/Models/Mapping/UserProfile.cs | pscream/multitimezones_app | 0 | 7065603 | <gh_stars>0
using System;
using AutoMapper;
using UserResponse = WebApi.Models.Responses.User;
using UserDatabase = WebApi.Models.Database.User;
namespace WebApi.Models.Mapping
{
public class UserProfile : Profile
{
public UserProfile()
{
CreateMap<UserDatabase, UserResponse>();
... |
Wazzy/Sections/Subsections/ImportSubsection.cs | PaulusParssinen/Wazzy | 6 | 7065604 | <reponame>PaulusParssinen/Wazzy<gh_stars>1-10
using System.Diagnostics;
using Wazzy.IO;
using Wazzy.Types;
namespace Wazzy.Sections.Subsections
{
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class ImportSubsection : WASMObject
{
public string Name { get; set; }
public object Value { g... |
Api/Customer/Sync/Sp.Samples.Consume/Sp.Samples.Consume.CustomerSync/SpApi.cs | SoftwarePotential/samples | 6 | 7065605 | /*
* Copyright 2013-2021 (c) Inish Technology Ventures Limited. All rights reserved.
*
* This code is licensed under the BSD 3-Clause License included with this source
*
* ALSO SEE: https://github.com/SoftwarePotential/samples/wiki/License
*
*/
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRA... |
src/asm.core/src/models/imm/Imm16.cs | 0xCM/z0 | 0 | 7065606 | <filename>src/asm.core/src/models/imm/Imm16.cs
//-----------------------------------------------------------------------------
// Copyright : (c) <NAME>, 2020
// License : MIT
//-----------------------------------------------------------------------------
namespace Z0
{
using System;
using System.Runtim... |
HADotNet.CommandCenter/Controllers/AdminPagesController.cs | qJake/HADotNet.Panel | 167 | 7065607 | <reponame>qJake/HADotNet.Panel
using HADotNet.CommandCenter.Models.Config;
using HADotNet.CommandCenter.Models.Config.Pages;
using HADotNet.CommandCenter.Models.Config.Tiles;
using HADotNet.CommandCenter.Services.Interfaces;
using HADotNet.CommandCenter.Utils;
using HADotNet.CommandCenter.ViewModels;
using HADotNet.Co... |
QrCodeGenerator/Models/QrGeneralConfiguration.cs | mikefoxnobel/QrCodeGenerator | 1 | 7065608 | using Prism.Mvvm;
using QRCoder;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Drawing.Imaging;
using System.Windows.Interop;
using Encoder = System.Text.Encoder;
namespace QrCodeGenerator.Models
{
public clas... |
Castle Bite/Assets/Script/UniquePowerModifier/UniquePowerModifierStatusIconUIConfig.cs | InconstantUA/CastleBite | 0 | 7065609 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public enum UniquePowerModifierAlignment
{
None,
Left,
Right
}
[CreateAssetMenu(menuName = "Config/Unit/UniquePowerModifiers/UIConfigs/StatusIcon")]
public class UniquePowerModifierStatusIconUIConfig : ScriptableObject
{
p... |
GGJ19/Assets/Scripts/UI/FillBar.cs | kangareuben/GGJ19 | 0 | 7065610 | <reponame>kangareuben/GGJ19
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class FillBar : MonoBehaviour
{
[SerializeField]
private float _minValue;
[SerializeField]
private float _maxValue;
private RectTransform _fillTransform;
pri... |
Game/Object/Battle/Battle.cs | hellun205/Goguma | 9 | 7065611 | <filename>Game/Object/Battle/Battle.cs
using Goguma.Game.Object.Entity.Monster;
using static Goguma.Game.Console.StringFunction;
using System.Linq;
using Goguma.Game.Object.Skill;
using System.Collections.Generic;
using System;
using Goguma.Game.Object.Skill.Attack;
using Goguma.Game.Object.Skill.Buff;
namespace Gogum... |
Models/BaseUser.cs | FullerD3V/API-users | 0 | 7065612 | <gh_stars>0
public class BaseUser
{
public string Nombre { get; set; }
public string Apellido { get; set; }
public string Nacionalidad { get; set; }
public DateTime FechNac { get; set; }
public string DNI { get; set; }
} |
solutions/Demo-MVC-CRUD/Views/Books/Edit.cshtml | StefanIordache/Laborator-DAW | 23 | 7065613 | <reponame>StefanIordache/Laborator-DAW
@model Demo_MVC_CRUD.Models.Book
@{
ViewBag.Title = "Edit";
}
<h2>Editare carte</h2>
<br />
@using (Html.BeginForm())
{
<div class="form-horizontal">
@Html.HiddenFor(x => x.Id);
<div class="form-group">
@Html.LabelFor(x => x.Titl... |
src/Orchard.Tests/ContentManagement/DynamicContentItemTests.cs | yangbingqi155/Nagrace | 2,670 | 7065614 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using Orchard.ContentManagement;
using Orchard.ContentManagement.MetaData.Models;
namespace Orchard.Tests.ContentManagement {
[TestFixture]
public class DynamicContentItemTests {
[Test]
... |
UltimaOnline.Data/Items/Minor Artifacts/ShieldOfInvulnerability.cs | netcode-gamer/game.ultimaonline.io | 0 | 7065615 | <reponame>netcode-gamer/game.ultimaonline.io
using System;
using UltimaOnline;
namespace UltimaOnline.Items
{
public class ShieldOfInvulnerability : OrderShield
{
public override int LabelNumber { get { return 1070693; } }
public override int BasePhysicalResistance { get { return 8; }... |
Assets/OtherAssets/ACC_Lite/Scripts/Game/GamePlay/GameController.cs | qenious/qSphere-Kodlar- | 0 | 7065616 | <filename>Assets/OtherAssets/ACC_Lite/Scripts/Game/GamePlay/GameController.cs
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// Base class game controller.
/// </summary>
public class GameController :MonoBehaviour
{
[SerializeField] KeyC... |
Dumps/PrimitierDumpV1.0.1/Valve/Newtonsoft/Json/JsonSerializerSettings.cs | TotalJTM/PrimitierModdingFramework | 2 | 7065617 | /*
* Generated code file by Il2CppInspector - http://www.djkaty.com - https://github.com/djkaty
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.Inte... |
source/VSPropertyPages/PropertyManager/IPropertyManager.cs | Dark-Tater/XSharp | 7 | 7065618 | <filename>source/VSPropertyPages/PropertyManager/IPropertyManager.cs
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.VisualStudio.ProjectSystem;
namespace VSPropertyPages
{
public interface IPropertyManager
{
event EventHandler<ProjectPropertyChangingEvent... |
CompareCloudware.Web/Models/DocumentTypeModel.cs | protechdm/CompareCloudware | 0 | 7065619 | <reponame>protechdm/CompareCloudware<filename>CompareCloudware.Web/Models/DocumentTypeModel.cs
using System;
using System.Runtime.CompilerServices;
using System.ComponentModel.DataAnnotations;
namespace CompareCloudware.Web.Models
{
public class CloudApplicationDocumentTypeModel
{
public int CloudApp... |
WebRunLocal/Forms/AboutForm.Designer.cs | waodng/WebRunLocal | 40 | 7065620 | namespace WebRunLocal.Forms
{
partial class AboutForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/... |
src/OnsiteSewageFacilitiesInspectionApiClient/Models/Inspection.cs | SunshineCoastCouncil/OnsiteSewageFacilitiesInspectionApiClient | 0 | 7065621 | using System;
namespace OnsiteSewageFacilitiesInspectionApiClient.Models
{
public class Inspection
{
public OSF OSF { get; set; }
public DateTime ServiceDateTime { get; set; }
public string TesterFirstName { get; set; }
public string TesterLastName { get; set; }
publi... |
High-Quality-Code/14. Creational Patterns Homework/CreationalPatternsHomework/CopyACake/Cake.cs | glifada/TelerikAcademy | 0 | 7065622 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CopyACake
{
//Represents a product created by the builder
public class Cake: CakePrototype
{
private readonly string cakeType;
public Cake(string cakeType, string ... |
src/FiveM/RPServer/Classes/Environment/AfkKick.cs | Sydres/FiveMRpServerResources | 124 | 7065623 | <reponame>Sydres/FiveMRpServerResources<filename>src/FiveM/RPServer/Classes/Environment/AfkKick.cs<gh_stars>100-1000
using CitizenFX.Core;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FamilyRP.Roleplay.Server.Classes.Environment
{
cl... |
Assets/Scripts/mainMenu.cs | OSUGameDev/6-9-12 | 0 | 7065624 | <filename>Assets/Scripts/mainMenu.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class mainMenu : MonoBehaviour
{
public int playerLives;
public int numRounds;
public Animator animator;
public void NewGame()
{
S... |
GameEngine/IGame.cs | carlpaton/TicTacToe | 0 | 7065625 | <reponame>carlpaton/TicTacToe<filename>GameEngine/IGame.cs
using GameEngine.Services.ComputerMove;
using System.Collections.Generic;
using static GameEngine.PlayerEnum;
namespace GameEngine
{
public interface IGame
{
ComputerLevel ComputerLevel { get; set; }
bool GameOver { get; set; }
... |
src/UtilitySharp.Tests/StringHelperTests.cs | Mason32NZ/UtilitySharp | 4 | 7065626 | using System;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace UtilitySharp.Tests
{
[TestClass]
public class StringHelperTests
{
[TestMethod]
public void CleanAndConvert_Int32()
{
var expected = 8;
... |
UltimaOnline.Data/Items/Special/Veteran Rewards/PottedCactus.cs | netcode-gamer/game.ultimaonline.io | 0 | 7065627 | using System;
using UltimaOnline;
using UltimaOnline.Gumps;
using UltimaOnline.Network;
using UltimaOnline.Engines.VeteranRewards;
namespace UltimaOnline.Items
{
public class RewardPottedCactus : Item, IRewardItem
{
public override bool ForceShowProperties { get { return ObjectPropertyList.En... |
src/m-r/Marubozu/Marubozu.Models.cs | TaylorNT3/Stock.Indicators | 1 | 7065628 | namespace Skender.Stock.Indicators;
[Serializable]
public class MarubozuResult : ResultBase
{
public decimal? Marubozu { get; set; }
public bool? IsBullish { get; set; }
}
|
src/Modules/SimplCommerce.Module.NongMinGo/obj/Release/netcoreapp3.0/Razor/Areas/NongMinGo/Views/Shared/Components/MyProduct/Default.cshtml.g.cs | Coopathon2019/03_NongMinGo | 0 | 7065629 | <reponame>Coopathon2019/03_NongMinGo
#pragma checksum "D:\CodingWork\Projects\NongMinGoProject\SimplCommerce\src\Modules\SimplCommerce.Module.NongMinGo\Areas\NongMinGo\Views\Shared\Components\MyProduct\Default.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "80ade6684c4825a9b539eae394609a2c815ca1bf"
// <auto-generated... |
DesktopModules/TrainingCoreBanking/BankProject/Views/TellerApplication/DefineCustomerLimit_Enquiry.ascx.designer.cs | nguyenppt/1pubcreditnew | 0 | 7065630 | //------------------------------------------------------------------------------
// <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>
//---------------------------------... |
src/Ragnarok.AgentApi/Exceptions/NotInitializedException.cs | 0phois/Ragnarok | 1 | 7065631 | using System;
namespace Ragnarok.AgentApi.Exceptions
{
[Serializable]
internal class NotInitializedException : ApplicationException
{
public NotInitializedException() : base("The RagnarokClient must be initialized before performing this action") { }
public NotInitializedException(string m... |
PELoader/CLI/MetadataTable/ManifestResourceLayout.cs | giawa/GiawaOS | 5 | 7065632 | using System;
namespace PELoader
{
public class ManifestResourceLayout
{
[Flags]
public enum ManifestResourceAttributes
{
}
public uint offset;
public ManifestResourceAttributes flags;
private uint name;
public uint implementation;
publ... |
Parse/Public/ParseRelation.cs | onerain88/Parse-SDK-dotNET-Standard | 0 | 7065633 | using System;
namespace ParseSDK {
public class ParseRelation<T> where T : ParseObject {
public string Key {
get; set;
}
public ParseObject Parent {
get; set;
}
public string TargetClass {
get; set;
}
public ParseRelati... |
api/controllers/AuthController.cs | nikola-rados/sheriff-scheduling | 0 | 7065634 | using System;
using System.Security.Claims;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authentication.Cookies;
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System.Threa... |
TimeSignal/Properties/Resources.Designer.cs | tepp91/timesignal | 0 | 7065635 | //------------------------------------------------------------------------------
// <auto-generated>
// このコードはツールによって生成されました。
// ランタイム バージョン:4.0.30319.42000
//
// このファイルへの変更は、以下の状況下で不正な動作の原因になったり、
// コードが再生成されるときに損失したりします。
// </auto-generated>
//-------------------------------------------------... |
EntityFrameworkModel/EntityFramework/Profesor.cs | jofaval/-tfcgs-dam | 1 | 7065636 | namespace Model
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("Profesor")]
public partial class Profesor
{
[System.Diagnostics.CodeAnalys... |
src/Xplorium.Web/Mvc/Attributes/KeywordPartAttribute.cs | m-sadegh-sh/Xplorium | 0 | 7065637 | <gh_stars>0
namespace Xplorium.Web.Mvc {
using System;
using System.Web.Mvc;
using Xplorium.Common;
public class KeywordPartAttribute : ActionFilterAttribute {
public override void OnActionExecuting(ActionExecutingContext filterContext) {
const string keywordPartKey = "part";
... |
ErsatzTV.Application/Plex/Commands/UpdatePlexLibraryPreferences.cs | Long-Man/ErsatzTV | 176 | 7065638 | using System.Collections.Generic;
using ErsatzTV.Core;
using LanguageExt;
namespace ErsatzTV.Application.Plex.Commands
{
public record UpdatePlexLibraryPreferences
(List<PlexLibraryPreference> Preferences) : MediatR.IRequest<Either<BaseError, Unit>>;
public record PlexLibraryPreference(int Id, bool S... |
src/server/WhoWhat.Tests.Domain/Stuff/BehaviourTestBase.cs | Ontropix/whowhat | 0 | 7065639 | using Microsoft.VisualStudio.TestTools.UnitTesting;
using Platform.Domain;
using Platform.EventStore.InMemory;
using Platform.Testing.Domain;
using WhoWhat.Core;
namespace WhoWhat.Tests.Domain
{
[TestClass]
public class BehaviourTestBase<TAggregate> : AggregateBehaviourValidator<TAggregate> where TAggregate :... |
Discord/DiscordBots/TriggersTools.DiscordBots.Core/Utils/StringExtensions.cs | trigger-death/MCC-WJLCS | 0 | 7065640 | using System.Collections.Generic;
using System.Linq;
namespace TriggersTools.DiscordBots.Utils {
public static class StringExtensions {
public static bool IsSurroundedWith(this string str, string left, string right) {
return str.StartsWith(left) && str.EndsWith(right);
}
public static string RemoveSurro... |
DrawShip.Viewer/NullRunMode.cs | laingsimon/draw-ship | 4 | 7065641 | <reponame>laingsimon/draw-ship<gh_stars>1-10
namespace DrawShip.Viewer
{
internal class NullRunMode : IRunMode
{
public bool Run(ApplicationContext applicationContext)
{
return true;
}
}
}
|
Assets/Scripts/Model/Ships/TIE Silencer/SienarJaemusAnalyst.cs | tron999/FlyCasual | 0 | 7065642 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ship
{
namespace TIESilencer
{
public class SienarJaemusAnalyst : TIESilencer
{
public SienarJaemusAnalyst() : base()
{
PilotName = "<NAME>";
PilotSk... |
src/Qitar/Utils/Timer/ITimer.cs | Bullabs/Qitar | 6 | 7065643 | <filename>src/Qitar/Utils/Timer/ITimer.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Qitar.Utils.Timer
{
public interface ITimer
{
T Time<T>(Func<T> action);
void Time(Action action);
}
}
|
NSISInfoWriter/InfoParsers/VCS/BazaarParser.cs | segrived/NSISInfoWriter | 0 | 7065644 | using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
namespace NSISInfoWriter.InfoParsers.VCS
{
public struct BazaarVersionInformation
{
public string Date { get; }
public string RevisionNumber { get; }
public string Revision... |
fps-test-game/Assets/Dependencies/UtilityBat/Movement/TranslateUtility.cs | harroo/fps-test | 0 | 7065645 | <reponame>harroo/fps-test
using UnityEngine;
public class TranslateUtility : MonoBehaviour {
public Vector3 movementSpeeds;
private void Update () {
transform.position += movementSpeeds * Time.deltaTime;
}
}
|
Runtime/effect/particle/ParticlePool.cs | mulova/legacy | 0 | 7065646 | //----------------------------------------------
// Unity3D common libraries and editor tools
// Copyright © 2013-2014 <EMAIL>
//----------------------------------------------
using System;
using System.Collections.Generic;
using System.Collections.Generic.Ex;
using System.Ex;
using mulova.comunity;
using mulova.unic... |
src/EventSourced.Persistence.InMemory/Configuration/EventSourcedOptionsExtensions.cs | mrnustik/EventSourced | 0 | 7065647 | <reponame>mrnustik/EventSourced
using EventSourced.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
namespace EventSourced.Persistence.InMemory.Configuration
{
public static class EventSourcedOptionsExtensions
{
public static Eve... |
CountriesREader/CountriesREader/CsvReader.cs | codejoncode/csharp-practice | 0 | 7065648 | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace CountriesREader
{
class CsvReader
{
private string _csvFilePath;
public CsvReader(string csvFilePath)
{
this._csvFilePath = csvFilePath;
}
public Dictionary<strin... |
Modules/LidarEmulator/LidarEmulatorThread.cs | hightower70/CygnusGroundStationDev | 1 | 7065649 | <reponame>hightower70/CygnusGroundStationDev
///////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2016 <NAME>. All rights reserved.
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License ... |
ApeVolo.Common/Model/SelectOption.cs | xianhc/apevolo-api | 188 | 7065650 | namespace ApeVolo.Common.Model;
/// <summary>
/// 前端SelectOption
/// </summary>
public class SelectOption
{
public string Value { get; set; }
public string Text { get; set; }
} |
src/Machine/CarScript.cs | dgx80/unity-dgx-lib | 0 | 7065651 | using UnityEngine;
using System.Collections;
namespace DGX.Machine
{
public class CarScript : MonoBehaviour {
public enum eTractionType
{
ForwardTraction,
BackwardTraction,
IntegralTraction
};
public bool EnableController;
public... |
SHFB/Source/BuildAssembler/BuildComponents/SnippetComponent.cs | Triggs9/SHFB | 0 | 7065652 | <reponame>Triggs9/SHFB
// Copyright © Microsoft Corporation.
// This source file is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.
// Change history:
// 12/24/2013 - EFW - Updated the bui... |
src/Monaco/Testing/MessageConsumers/IMessageConsumerTestScenario.cs | limitzero/MonacoServiceBus | 1 | 7065653 | <gh_stars>1-10
using System;
namespace Monaco.Testing.MessageConsumers
{
public interface IMessageConsumerTestScenario<TMessageConsumer>
where TMessageConsumer : MessageConsumer
{
/// <summary>
/// This will set the expectation that a message will be published by the service bus.
/// </summary>
/// <typep... |
src/Framework/Schubert.Framework.Web/SchubertWebUtility.cs | endink/Schubert | 13 | 7065654 | using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.WebUtilities;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using Microsoft.Extensions.Options;
using Schubert.Framework.Web.DependencyInjection;
using Schubert.Frame... |
Hjg.Pngcs/Zlib/DeflateCompressLevel.cs | pldg/pngcs | 61 | 7065655 | <gh_stars>10-100
using System;
using System.Collections.Generic;
using System.Text;
namespace Hjg.Pngcs.Zlib {
// DEFLATE compression levels 0-9
public class DeflateCompressLevel {
public const int NO_COMPRESSION = 0;
public const int FASTEST = 3;
public const int DEFAULT = 6;
... |
XOutput/Devices/Mapper/KeyboardToXInputMapper.cs | LLltirlec/XOutput | 1 | 7065656 | <reponame>LLltirlec/XOutput<gh_stars>1-10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
namespace XOutput.Devices.Mapper
{
/// <summary>
/// Mapper that converts keyboard into XInput
/// </summary>
public... |
Lime/Source/Profiler/SceneProfilingInfo.cs | game-forest/Citrus | 14 | 7065657 | #if PROFILER
namespace Lime.Profiler
{
public static class SceneProfilingInfo
{
/// <summary>
/// Node manager for scene objects.
/// </summary>
public static object NodeManager;
}
}
#endif // PROFILER
|
Kartverket.Geonorge.Download/Models/ClipperFile.cs | kartverket/geonorge-nedlastingsapi | 0 | 7065658 | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace Kartverket.Geonorge.Download.Models
{
public class ClipperFile
{
[Key]
public Guid Id { get; set; }
public DateTime DateUploaded { get; set; }
... |
SampleApp/Components/ComponentHosts/Loggers/ILoggersViewModel.cs | franck-gaspoz/WPFUtilities | 1 | 7065659 |
using WPFUtilities.Components.UI.KeyValueDataGridControl;
namespace SampleApp.Components.ComponentHosts.Loggers
{
/// <summary>
/// loggers view model
/// </summary>
public interface ILoggersViewModel :
IKeyValueViewModel<ILoggerViewModel>
{
}
}
|
TCDev.SEPA/CAMT/Generic/AccountReport12.cs | DeeJayTC/sepa.net | 2 | 7065660 | <gh_stars>1-10
//
// SEPA.Net SEPA Parser for C#
// https://sepa.codeplex.com
// File: TCDev.SEPA.AccountReport12.cs
// Author: <NAME>, TCDev
// Created: 07.09.2013 - TCA
// Changed: 13.09.2013 - TCA
// Purpose:
// ... |
SmartLife.Applications/SmartLife.Share.Behaviors/__IPCCService.cs | rhuber1279/SmartLifeForDotNet | 3 | 7065661 | <reponame>rhuber1279/SmartLifeForDotNet<gh_stars>1-10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ServiceModel;
using System.ServiceModel.Activation;
using System.ServiceModel.Web;
using e0571.web.core.Utils;
using e0571.web.core.Model;
using e0571.web.core.Wcf;
u... |
V.1.0.8/EclipsePOS.WPF.SystemManager/EclipsePOS.WPF.SystemManager.PosSetup/SQLSetup/EmbeddedInstall.cs | naushard/EclipsePOS | 7 | 7065662 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Win32;
using System.Diagnostics;
namespace EclipsePOS.WPF.SystemManager.PosSetup.SQLSetup
{
class EmbeddedInstall
{
#region Internal variables
//Variables for setup.exe command line
... |
DemoWindow.cs | davudk/opengl-tilemap-demos | 24 | 7065663 | <gh_stars>10-100
using System;
using System.Reflection;
using OpenToolkit.Graphics.OpenGL;
using OpenToolkit.Mathematics;
using OpenToolkit.Windowing.Common;
using OpenToolkit.Windowing.Common.Input;
using OpenToolkit.Windowing.Desktop;
using SixLabors.ImageSharp.PixelFormats;
using TileMapDemos.Renderers;
using Image... |
src/IO.Ably.Tests.Shared/Infrastructure/ConditionalAwaiter.cs | dpflucas/ably-dotnet | 0 | 7065664 | using System;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Tasks;
using System.Timers;
using Timer = System.Timers.Timer;
namespace IO.Ably.Tests.DotNetCore20.Infrastructure
{
public class ConditionalAwaiter
{
private readonly Func<bool> _condition;
priv... |
MultiSourceTorrentDownloader/Models/ModelBase.cs | fakegit/MultiSourceTorrentDownloader | 49 | 7065665 | <gh_stars>10-100
using MultiSourceTorrentDownloader.Enums;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Reactive.Subjects;
using System.Text;
using System.Threading.Tasks;
namespace MultiSourceTorrentDownloader.Models
{
public class ModelBase : INoti... |
sources/Graphics/D3D12/Utilities/D3D12Utilities.cs | phizch/terrafx | 204 | 7065666 | <filename>sources/Graphics/D3D12/Utilities/D3D12Utilities.cs
// Copyright © <NAME> Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
using TerraFX.Graphics;
using TerraFX.Interop;
using static TerraFX.Interop.DXGI_FORMAT;
using static TerraFX.Interop.Windo... |
src/Rvn.Izr.Tests/Adapters/Support/ImportedCode.cs | dgg/rvn-izr | 3 | 7065667 | using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using Raven.Abstractions.Data;
using Raven.Client;
using Raven.Client.Document;
using Raven.Client.Indexes;
using Raven.Client.Linq;
namespace Rvn.Izr.Tests.Adapters.Support
{
internal abstract class DbSessionAdapter : IDocumentSession
{... |
COMTypeDef/IEnumSTATPROPSETSTG.cs | Remotion/dropout_search | 0 | 7065668 | using System.Runtime.InteropServices;
using System.Security;
namespace Dropout.COMTypeDef
{
[ComImport, Guid("0000013B-0000-0000-C000-000000000046"), SuppressUnmanagedCodeSecurity, InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IEnumSTATPROPSETSTG
{
void Clone(out IEnumSTATP... |
UnityCodeGen.Test/Builder/ClassBuilderTest.cs | Vengarioth/UnityCodeGen | 3 | 7065669 | <gh_stars>1-10
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityCodeGen.Ast;
using UnityCodeGen.Builder;
namespace UnityCodeGen.Test.Builder
{
[TestClass]
public class ... |
src/CoreWCF.Primitives/src/CoreWCF/IdentityModel/Configuration/ConfigurationStrings.cs | bstordrup/CoreWCF | 0 | 7065670 | <reponame>bstordrup/CoreWCF<filename>src/CoreWCF.Primitives/src/CoreWCF/IdentityModel/Configuration/ConfigurationStrings.cs<gh_stars>0
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace CoreWCF.IdentityModel.Configuration
... |
TSVD/Radical/src/net35/Radical/Helpers/CommandLineArgumentAttribute.cs | uditagarwal97/nekara-artifact | 2 | 7065671 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Topics.Radical.Validation;
namespace Topics.Radical.Helpers
{
/// <summary>
/// Defines the command line argument name associated to a property.
/// </summary>
[AttributeUsage( AttributeTargets.Property, AllowM... |
CookLab/Models/CookLab.Models.ViewModels/PaginationViewModel.cs | EvaDoychinova/CookLab | 0 | 7065672 | <reponame>EvaDoychinova/CookLab
namespace CookLab.Models.ViewModels
{
using System;
public class PaginationViewModel
{
public int CurrentPage { get; set; }
public int ItemsCount { get; set; }
public int ItemsPerPage { get; set; }
public int TotalPagesCount => (int)Math.C... |
System.Data.SQLite.EF6.Migrations/MetadataHelpers.cs | Jmerk523/sqliteef6migrations | 35 | 7065673 | <gh_stars>10-100
using System;
using System.Collections.Generic;
using System.Data.Entity.Core.Metadata.Edm;
namespace System.Data.SQLite.EF6.Migrations
{
/// <summary>
/// A set of static helpers for type metadata
/// </summary>
static class MetadataHelpers
{
#region Type Helpers
... |
Reflex.Benchmark/Assets/Benchmark/NestedModel/B.cs | nilgawa/Reflex | 113 | 7065674 | <reponame>nilgawa/Reflex
namespace Benchmark.NestedModel
{
public class B : IB
{
private readonly IC _c;
public B(IC c)
{
_c = c;
}
}
} |
src/Forms/eliteKit_Src/Models/YoutubeModels/MediaStreams/MuxedStreamInfo.cs | arqueror/eliteK | 29 | 7065675 | <reponame>arqueror/eliteK<gh_stars>10-100
namespace eliteKit.Models.YoutubeModels.MediaStreams
{
/// <summary>
/// Metadata associated with a certain <see cref="MediaStream"/> that contains both audio and video.
/// </summary>
internal class MuxedStreamInfo : MediaStreamInfo
{
/// <summary>... |
Winstreak.Core/Parsers/ImageParser/ParserHelper.cs | ewang2002/Winstreak.NET | 0 | 7065676 | using System.IO;
namespace Winstreak.Core.Parsers.ImageParser
{
public static class ParserHelper
{
/// <summary>
/// Gets the defined Gui scale from your Minecraft settings.
/// </summary>
/// <param name="pathToMcFolder">The path to your Minecraft folder of interest,</param>
/// <returns>The Gui scale.<... |
14/StocksTicker/Grains/StocksStreamingGrain.cs | sansindia85/Orleans | 0 | 7065677 | using Interfaces;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
using Orleans;
using System;
using System.Threading.Tasks;
namespace Grains
{
public class StocksStreamingGrain : Grain, IStocksStreamingGrain
{
public async Task<string> GetPrice()
... |
TablePlayground/LogColumn.cs | fhmcn/Tailviewer | 84 | 7065678 | <filename>TablePlayground/LogColumn.cs
using System;
namespace TablePlayground
{
public sealed class LogColumn<T>
: ILogColumn<T>
{
public Type DataType => typeof(T);
}
} |
tests/Bellatrix.Web.Tests/Controls/TextArea/TextAreaControlTestsSafari.cs | quantum-grit/BELLATRIX | 0 | 7065679 | <gh_stars>0
// <copyright file="TextAreaControlTestsSafari.cs" company="Automate The Planet Ltd.">
// Copyright 2020 Automate The Planet Ltd.
// 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... |
Attributes/ShowOnEnum.cs | AdriaandeJongh/UnityTools | 27 | 7065680 | using UnityEngine;
#if UNITY_EDITOR
using UnityEditor;
#endif
using System.Collections;
public class ShowOnEnum : PropertyAttribute
{
public readonly string enumName;
public readonly int wantedValue;
public ShowOnEnum(string enumName, int wantedValue)
{
this.enumName = enumName;
this.wantedValue = wantedV... |
Assets/MuseumExplorerSDK/ME-Extras/Lighting/Sun.cs | ututrc/ME-UnitySDK | 2 | 7065681 | using UnityEngine;
using System.Collections;
using System;
using System.Timers;
namespace AR.Lighting
{
public class Sun : MonoBehaviour {
private static System.Timers.Timer sunUpdateTimer;
private Vector3 playerLocation;
private Vector3 sunLocation;
// Use this for initialization
void Start () {
... |
Tests/Blueprints/Configurators/Abilities/AbilityConfiguratorTest.cs | vikigenius/WW-Blueprint-Core | 3 | 7065682 | using BlueprintCore.Abilities.Restrictions.New;
using BlueprintCore.Actions.Builder;
using BlueprintCore.Actions.Builder.ContextEx;
using BlueprintCore.Blueprints.Configurators.Abilities;
using BlueprintCore.Conditions.Builder;
using BlueprintCore.Conditions.Builder.ContextEx;
using BlueprintCore.Conditions.Builder.New... |
kode/RubiksSolver/SolutionStages/HTRParity.cs | ICantDrive/SOP-IDDFSSolver | 0 | 7065683 | <reponame>ICantDrive/SOP-IDDFSSolver
using RubiksSolver.CubeModels;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RubiksSolver.SolutionStages
{
/// <summary>
/// Solves just the corners after ... |
Source/JsonApiFramework.Infrastructure/Internal/Dom/DomReadWriteResourceIdentifier.cs | circleupx/JsonApiFramework | 108 | 7065684 | <filename>Source/JsonApiFramework.Infrastructure/Internal/Dom/DomReadWriteResourceIdentifier.cs
// Copyright (c) 2015–Present <NAME>. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.md in the project root for license information.
using JsonApiFramework.Internal.Tree;
using JsonApiF... |
tests/Web.RazorPages.Tests.Unit/PageModels/MessageModelTests.cs | smirnov-coder/startup-creative-agency-razor-pages | 1 | 7065686 | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Moq;
using StartupCreativeAgency.Domain.Abstractions.Services;
using StartupCreativeAgency.Domain.Entities;
using StartupCreativeAgency.Web.RazorPages.Areas.Admin.Pages;
using Xunit;
namespace StartupCreativeAgency.... |
TrumpOnTrial/Assets/Scripts/FallacyRecognition/FallacyParser.cs | ethankennerly/trumpontrial | 0 | 7065687 | using FineGameDesign.UI;
using FineGameDesign.Utils;
using System;
using UnityEngine;
namespace FineGameDesign.FallacyRecognition
{
public sealed class FallacyParser : MonoBehaviour, IStringArray
{
[SerializeField]
private TextAsset m_FallaciesCsv = default;
[SerializeField]
pr... |
ACTransit.Training/Web/App_Start/BundleConfig.cs | actransitorg/ACTransit.Training | 7 | 7065688 | <reponame>actransitorg/ACTransit.Training
using System.Web.Optimization;
namespace ACTransit.Training.Web
{
public class BundleConfig
{
// For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862
public static void RegisterBundles(BundleCollection bundles)
... |
sample/Sample.Graphql/Startup.cs | RocketSurgeonsGuild/SpaceShuttle | 0 | 7065689 | using System.Collections.Concurrent;
using System.Diagnostics;
using System.Linq.Expressions;
using System.Reflection;
using HotChocolate;
using HotChocolate.Configuration;
using HotChocolate.Data.Filters;
using HotChocolate.Data.Sorting;
using HotChocolate.Types;
using HotChocolate.Types.Descriptors;
using HotChocola... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.