content stringlengths 5 1.04M | avg_line_length float64 1.75 12.9k | max_line_length int64 2 244k | alphanum_fraction float64 0 0.98 | licenses list | repository_name stringlengths 7 92 | path stringlengths 3 249 | size int64 5 1.04M | lang stringclasses 2
values |
|---|---|---|---|---|---|---|---|---|
/*
* Copyright © 2021 Neuroglia SPRL. All rights reserved.
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless requ... | 40.363636 | 211 | 0.668919 | [
"Apache-2.0"
] | neuroglia-io/AsyncApi | src/Neuroglia.AsyncApi.AspNetCore/Services/AsyncApiDocumentProvider.cs | 4,443 | C# |
/*----------------------------------------------------------------
Copyright (C) 2021 Senparc
文件名:ScheduleApi.cs
文件功能描述:日程相关API
创建标识:lishewen - 20191226
----------------------------------------------------------------*/
using Senparc.NeuChar;
using System;
using System.Collections.... | 40.535545 | 175 | 0.58307 | [
"Apache-2.0"
] | LonelyLancer/WeiXinMPSDK | src/Senparc.Weixin.Work/Senparc.Weixin.Work/AdvancedAPIs/Schedule/ScheduleApi.cs | 9,103 | C# |
using Luis;
using ToDoSkill.Dialogs.Shared.Resources;
namespace ToDoSkillTest.Flow.Utterances
{
public class DeleteToDoFlowTestUtterances : ShowToDoFlowTestUtterances
{
public DeleteToDoFlowTestUtterances()
{
var number = new double[] { 1 };
this.Add(DeleteSpecificTask,... | 33.673077 | 116 | 0.5751 | [
"MIT"
] | vinstce/AI | solutions/Virtual-Assistant/src/csharp/skills/tests/todoskilltest/Flow/Utterances/DeleteToDoFlowTestUtterances.cs | 1,753 | C# |
using System;
using UnityEngine;
using UnityEngine.Events;
namespace DapperDino.GGJ2020.Movements
{
[Serializable]
public struct MovementData
{
public Vector3 Input { get; set; }
public Transform CharacterTransform { get; set; }
public Transform CameraTransform { get; set; }
}
... | 23.055556 | 72 | 0.693976 | [
"MIT"
] | DapperDino/GGJ-2020 | Assets/Scripts/Items/MovementData.cs | 417 | C# |
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*------------------------------------------------------------... | 37.983607 | 125 | 0.537333 | [
"MIT"
] | Agazoth/azure-powershell | src/Purview/Purviewdata.Autorest/generated/runtime/Helpers/Extensions/TypeExtensions.cs | 2,259 | C# |
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace AlibabaCloud.SDK.Dingtalkdoc_1_0.Models
{
public class CreateWorkspaceDocResponse : TeaModel {
[NameInMap("headers")]
[Validation(Required=true)]
pu... | 22.347826 | 64 | 0.680934 | [
"Apache-2.0"
] | aliyun/dingtalk-sdk | dingtalk/csharp/core/doc_1_0/Models/CreateWorkspaceDocResponse.cs | 514 | C# |
using System;
using System.Linq;
using uTinyRipper.Classes;
using uTinyRipper.Classes.GameObjects;
using uTinyRipper.Converters.GameObjects;
using uTinyRipper.Layout;
namespace uTinyRipper.Converters
{
public static class GameObjectConverter
{
public static GameObject Convert(IExportContainer container, GameObjec... | 26.883495 | 96 | 0.723366 | [
"MIT"
] | Bluscream/UtinyRipper | uTinyRipperCore/Converters/Classes/GameObject/GameObjectConverter.cs | 2,771 | C# |
#region License & Metadata
// The MIT License (MIT)
//
// 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, modi... | 22.607143 | 99 | 0.654555 | [
"MIT"
] | KeepOnSurviving/SuperMemoAssistant | src/Core/SuperMemoAssistant.Interop/Interop/SuperMemo/Core/SMEventArgs.cs | 5,699 | C# |
// Copyright (c) Microsoft. 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.Windows;
namespace Microsoft.VisualStudio.InteractiveWindow.UnitTests
{
internal sealed class TestClipboard : InteractiveWind... | 34.481481 | 161 | 0.704619 | [
"Apache-2.0"
] | 0x53A/roslyn | src/InteractiveWindow/EditorTest/TestClipboard.cs | 933 | C# |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Tes... | 37.189189 | 84 | 0.744913 | [
"MIT"
] | PhilipYordanov/Software-University-C-Fundamentals-track | CSharpAdvance/Sets and Dictionaries - Lab/Sets and Dictionaries - Lab/Test/Properties/AssemblyInfo.cs | 1,379 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;
using System.Web.Security;
using LightInject;
using RestOfUs.Common.Services;
using RestOfUs.Services;
using RestOfUs.Web.Services;
namespace RestOfUs.Web {
/... | 32.727273 | 73 | 0.711111 | [
"MIT"
] | dylanbeattie/RestOfUs | src/RestOfUs.Web/Global.asax.cs | 1,082 | C# |
using FPP.Scripts.Enums;
using UnityEngine.Events;
using System.Collections.Generic;
namespace FPP.Scripts.Patterns
{
public class RaceEventBus
{
private static readonly IDictionary<RaceEventType, UnityEvent> Events =
new Dictionary<RaceEventType, UnityEvent>();
public static void... | 28.711111 | 85 | 0.564241 | [
"MIT"
] | PacktPublishing/Game-Development-Patterns-with-Unity-2021 | Assets/FPP/Scripts/Patterns/RaceEventBus.cs | 1,294 | C# |
using Sandbox;
[Library( "weapon_shotgun", Title = "Shotgun", Spawnable = true )]
partial class Shotgun : Weapon
{
public override string ViewModelPath => "weapons/rust_pumpshotgun/v_rust_pumpshotgun.vmdl";
public override float PrimaryRate => 1;
public override float SecondaryRate => 1;
public override float Rel... | 21.642857 | 92 | 0.695957 | [
"MIT"
] | ImWill0w0/sandbox | code/weapons/Shotgun.cs | 2,426 | C# |
/*
* Licensed to SharpSoftware under one or more contributor
* license agreements. See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*
* SharpSoftware licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use... | 35.054054 | 118 | 0.561103 | [
"Apache-2.0"
] | msioen/optimization | src/Itinero.Optimization/Abstract/Solvers/TSP/TSPSolverDetails.cs | 5,188 | C# |
// Copyright 2016-2017 Confluent 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 by applicable law or agreed to... | 41.056338 | 140 | 0.613379 | [
"Apache-2.0"
] | sstaton/daxko-kafka-etl | test/Confluent.Kafka.IntegrationTests/Tests/Producer_ProduceAsync_Null_Task.cs | 2,915 | C# |
using Nager.Date.Contract;
using Nager.Date.Model;
using System;
using System.Collections.Generic;
using System.Linq;
namespace Nager.Date.PublicHolidays
{
/// <summary>
/// Switzerland
/// http://de.wikipedia.org/wiki/Feiertage_in_der_Schweiz
/// </summary>
public class SwitzerlandProvider : IPub... | 76.909091 | 360 | 0.57565 | [
"MIT"
] | Pulgovisk/Nager.Date | Src/Nager.Date/PublicHolidays/SwitzerlandProvider.cs | 5,936 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dw.common.util
{
public class CommandLineParser
{
protected static string usage = "etl <configfile>";
public static string Usage { get { return usage; } }
pu... | 22.12766 | 61 | 0.498077 | [
"MIT"
] | dataventure-io/dw | src/dw-common/util/CommandLineParser.cs | 1,042 | C# |
using System;
using System.Threading;
using System.Threading.Tasks;
namespace Juce.Core.Time
{
public interface ITimer
{
ITimeContext TimeContext { get; }
TimeSpan Time { get; }
void Start();
void Pause();
void Resume();
void Reset();
void Restart();
... | 24.666667 | 76 | 0.640927 | [
"MIT"
] | Juce-Assets/Juce-Core | Runtime/Time/ITimer.cs | 520 | C# |
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace XTool
{
public class TabDataProfiler
{
public DataProfileFieldCollection Fields { get; set; }
p... | 29.942197 | 124 | 0.445946 | [
"MIT"
] | eXtensoft/xtool | XTool/code/profiler.tab/TabDataProfiler.cs | 5,182 | C# |
using Patients.Core.Entities.Foundation;
using System;
using System.Data.Entity;
using System.Threading.Tasks;
namespace Patients.Data
{
public interface IDbContext : IDisposable
{
IDbSet<TEntity> Set<TEntity>() where TEntity : BaseEntity;
void SetAsAdded<TEntity>(TEntity entity) where TEntit... | 23.037037 | 79 | 0.684887 | [
"MIT"
] | amshekar/azure-iot-devops | iMinify-Innova/Patient.Data/IDbContext.cs | 624 | C# |
using System.Net.Http;
namespace BitTorrentAnonymizer.Services
{
public class AnonymizerHttpClient
{
public readonly HttpClient Client;
public AnonymizerHttpClient(HttpClient client)
{
Client = client;
}
}
}
| 18.733333 | 55 | 0.604982 | [
"MIT"
] | magicxor/BitTorrentAnonymizer | BitTorrentAnonymizer/Services/AnonymizerHttpClient.cs | 283 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using AutoMapper;
using Lykke.Service.Affiliate.Contracts;
using Lykke.Service.Affiliate.Core.Domain.Repositories.Mongo;
using Lykke.Service.Affiliate.Core.Services;
using Lykke.Service.Affiliate.Models;
... | 38.198413 | 128 | 0.669645 | [
"MIT"
] | LykkeCity/Lykke.Service.Affiliate | src/Lykke.Service.Affiliate/Controllers/AffiliateController.cs | 4,815 | C# |
/*
* [The BSD 3-Clause License]
* Copyright (c) 2015, Samuel Suffos
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyrig... | 42.72973 | 88 | 0.757116 | [
"BSD-3-Clause"
] | samuel-suffos/matlab-parser | Matlab.Nodes/Properties/AssemblyInfo.cs | 3,164 | C# |
/*
* Copyright Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fi... | 33.99 | 134 | 0.631656 | [
"Apache-2.0"
] | Hazy87/aws-sdk-net | sdk/src/Services/Backup/Generated/Model/FrameworkControl.cs | 3,399 | C# |
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using Microsoft.Build.BackEnd;
using Microsoft.Build.Execution;
using Xunit;
namespace Microsoft.Build.UnitTests.BackEn... | 42.789474 | 227 | 0.637556 | [
"MIT"
] | 0xced/msbuild | src/Build.UnitTests/BackEnd/FullyQualifiedBuildRequest_Tests.cs | 2,439 | C# |
// Copyright (c) Jeremy W. Kuhne. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace WInterop.Storage
{
/// <summary>
/// Named pipe configuration.
/// </summary>
/// <remarks>
/// <see cref="https://msdn.microsoft.... | 31.8125 | 101 | 0.586444 | [
"MIT"
] | JeremyKuhne/WInterop | src/WInterop.Desktop/Storage/PipeConfiguration.cs | 1,020 | C# |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using Azure.Core;
namespace Azure.ResourceManager.AppService.Models
{
/// <summary> Details about restoring a deleted app. </summary>
public partial class DeletedAppRestoreR... | 46.728814 | 231 | 0.647443 | [
"MIT"
] | AhmedLeithy/azure-sdk-for-net | sdk/websites/Azure.ResourceManager.AppService/src/Generated/Models/DeletedAppRestoreRequest.cs | 2,757 | C# |
// Note: Adapted from https://github.com/ap0llo/changelog/blob/9c789d570199480801ea95d57f425b425b5f1964/src/ChangeLog.Test/EqualityTest.cs
using System;
using System.Collections.Generic;
using System.Reflection;
using NUnit.Framework;
namespace Grynwald.Extensions.Statiq.TestHelpers
{
public interface IEqualityT... | 39.927007 | 139 | 0.6117 | [
"MIT"
] | ap0llo/extensions-statiq | src/Extensions.Statiq.TestHelpers/EqualityTest.cs | 5,472 | C# |
// Copyright 2018 Google LLC
//
// 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 ... | 38.612903 | 99 | 0.571625 | [
"Apache-2.0"
] | CoryLiseno/googleads-dotnet-lib | tests/AdWords/Util/BatchJob/v201809/BatchJobUtilitiesTest.cs | 20,369 | C# |
// --------------------------------------------------------------------------------------------------------------------
// <copyright company="Chocolatey" file="AdvancedInstallViewModel.cs">
// Copyright 2017 - Present Chocolatey Software, LLC
// Copyright 2014 - 2017 Rob Reynolds, the maintainers of Chocolatey... | 30.181435 | 184 | 0.517056 | [
"Apache-2.0"
] | BearerPipelineTest/ChocolateyGUI | Source/ChocolateyGui.Common.Windows/ViewModels/AdvancedInstallViewModel.cs | 14,308 | C# |
using System.Threading.Tasks;
using SalesOrder.Models;
namespace SalesOrder.ServiceBus.Helpers
{
public interface IStorageQueueHelper
{
Task SendToSalesOrderMessageQueue(SalesOrder.Models.SalesOrder salesOrderData);
Task<Models.SalesOrder?> GetNextOrderFromMessageQueue();
Task ConfirmS... | 29.692308 | 87 | 0.756477 | [
"MIT"
] | DickBaker/C-8-and-.NET-Core-3-Projects-Using-Azure-Second-Edition | Chapter08/SalesOrder.ServiceBus/ServiceBus/IStorageQueueHelper.cs | 388 | C# |
// Copyright (c) SecretCollect B.V. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE file in the project root for license information.
//
// Based upon work by Michiel van Oudheusden
// https://github.com/mivano/EFIndexInclude
// Changes:
// - Moved SqlServer:IncludeIndex to constant... | 37.06383 | 134 | 0.669346 | [
"Apache-2.0"
] | SecretView/EntityFramework | src/SecretCollect.EntityFramework/Extensions/IndexExtensions.cs | 1,742 | C# |
namespace PhotoShare.Client.Core.Commands
{
using System;
using Data;
using Models;
using Contracts;
using Services.Contracts;
public class ShareAlbumCommand : ICommand
{
private readonly IAlbumService albumService;
public ShareAlbumCommand(IAlbumService albumService)
... | 25.431373 | 85 | 0.55744 | [
"MIT"
] | jackofdiamond5/Software-University | C# DB Fundamentals/DB Advanced - EF Core/PhotoShare/PhotoShare.Client/Core/Commands/ShareAlbumCommand.cs | 1,299 | C# |
using System;
using System.CodeDom.Compiler;
using System.Xml.Serialization;
namespace Workday.Recruiting
{
[GeneratedCode("System.Xml", "4.6.1590.0"), XmlType(Namespace = "urn:com.workday/bsvc", IncludeInSchema = false)]
[Serializable]
public enum ItemChoiceType5
{
Social_Network_Account_URL,
Social_Network_A... | 22.8 | 114 | 0.780702 | [
"MIT"
] | matteofabbri/Workday.WebServices | Workday.Recruiting/ItemChoiceType5.cs | 342 | C# |
#if UNITY_IOS && UNITY_EDITOR
using UnityEditor.iOS.Xcode;
namespace PostprocessCollection
{
/// <summary>
/// Writes properties to Info.plist file of XCode project
/// with given values.
/// For example:
/// ITSAppUsesNonExemptEncryption false - claims that your app doesn't use encrypt... | 30.86 | 105 | 0.533377 | [
"MIT"
] | vmchar/iOSPostprocessCollection | Postprocess Collection/Assets/PostprocessCollection/AddPropertiesPostprocess.cs | 1,545 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StatureTool
{
public class OLV_MappingDetails
{
public int index { get; set; }
public string mrn { get; set; }
public string course { get; set; }
public... | 39.043478 | 238 | 0.619154 | [
"Apache-2.0"
] | tschuler/StatureTool | StatureTool/OLV_Models.cs | 1,798 | C# |
using UniRx;
using UniRx.Triggers;
using UnityEngine;
namespace Samples.Section4.Filters
{
public class DistinctSample2 : MonoBehaviour
{
private void Start()
{
this.OnCollisionEnterAsObservable()
// 過去に衝突したことがあるGameObjectは無視
.Distinct(x => x.gameObj... | 23.823529 | 62 | 0.592593 | [
"Unlicense",
"CC0-1.0",
"MIT"
] | TORISOUP/UniRx-UniTask_Samples | Assets/Samples/Section4/Filters/DistinctSample2.cs | 437 | C# |
#pragma checksum "C:\Users\Michael Douglas\Documents\GitHub\FormacaoAspNetCoreExpertDesenvolvedorIO\DominandoAspNetMVCCore\PrimeiraAppMvcCore\AppModelo\src\DevIO.UI.Site\Views\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "fb15a6fa2b9e89da8d14e27ff92faedafbbc5199"
// <auto-generated/>
#pragma warning disa... | 55.403846 | 278 | 0.781326 | [
"MIT"
] | MichaelDouglasGit/FormacaoAspNetCoreExpertDesenvolvedorIO | DominandoAspNetMVCCore/PrimeiraAppMvcCore/AppModelo/src/DevIO.UI.Site/obj/Debug/netcoreapp3.1/Razor/Views/_ViewStart.cshtml.g.cs | 2,881 | C# |
/*
* Copyright 2007 ZXing authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed ... | 36.431373 | 183 | 0.676175 | [
"Apache-2.0"
] | LeonidRulit/zxing1 | csharp/datamatrix/decoder/Decoder.cs | 5,574 | C# |
using System.Runtime.InteropServices;
namespace Ship_Game
{
public class PerfTimer
{
[DllImport("Kernel32.dll")]
private static extern bool QueryPerformanceCounter(out long perfcount);
[DllImport("Kernel32.dll")]
private static extern bool QueryPerformanceFrequency(o... | 28.774648 | 86 | 0.524719 | [
"MIT"
] | UnGaucho/StarDrive | Ship_Game/Utils/PerfTimer.cs | 2,045 | C# |
using System;
using Android.App;
using Android.Content;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using Android.Support.Wearable.Views;
using Android.Support.V4.App;
using Android.Support.V4.View;
using Android.Support.Wearable.Activity;
using Java.Interop;
using... | 31.891892 | 119 | 0.561017 | [
"MIT"
] | PavlenkoDR/World-Skills-Juniors | Code/App4/App4/App4/MainActivity.cs | 2,599 | C# |
using I18nMigrationTool.Services.Models;
using System.Collections.Generic;
using System.IO;
namespace I18nMigrationTool.Services
{
public class ReportService
{
public static void CreateReport(List<Translation> translations, string filepath, List<I18NFile> i18NTranslations)
{
using ... | 38.692308 | 212 | 0.639165 | [
"MIT"
] | YounitedCredit/Younited.I18nMigrationTool | I18nMigrationTool.Services/ReportService.cs | 1,008 | C# |
using System;
using System.Collections.Generic;
using System.Text;
namespace Gw2.Models.Commerce
{
/// <summary>
/// GW2 commerce Item
/// </summary>
public class Item
{
/// <summary>
/// Id of the Item
/// </summary>
public int Id { get; set; }
/// <summar... | 18.434783 | 38 | 0.509434 | [
"Apache-2.0"
] | jjoaoclaro/Gw2Bacalhaus | Gw2/Models/Commerce/Item.cs | 426 | C# |
/*
* Copyright Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fi... | 28.866667 | 118 | 0.614781 | [
"Apache-2.0"
] | ChristopherButtars/aws-sdk-net | sdk/src/Services/CodeStarconnections/Generated/Model/CreateHostResponse.cs | 2,165 | C# |
//-----------------------------------------------------------------------------
// Copyright : (c) Chris Moore, 2020
// License : MIT
//-----------------------------------------------------------------------------
namespace Z0
{
using System;
using System.Runtime.CompilerServices;
using System.Runti... | 30.383562 | 79 | 0.483318 | [
"BSD-3-Clause"
] | 0xCM/z0 | src/calc/src/hosts/Nonz.cs | 2,218 | C# |
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. 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.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "l... | 35.567901 | 110 | 0.613155 | [
"Apache-2.0"
] | Bio2hazard/aws-sdk-net | sdk/src/Services/KinesisFirehose/Generated/Model/ParquetSerDe.cs | 5,762 | C# |
using System;
using System.Drawing;
using SummerGUI.DataGrid;
using SummerGUI.Charting.Graph2D;
namespace SummerGUI.Charting
{
public class PlotterContainer : SplitContainer
{
public Graph2DPlotter Plotter { get; private set; }
public DataGridView GRD { get; private set; }
public GraphList Graphs { get; pri... | 21.577778 | 68 | 0.68898 | [
"MIT"
] | kroll-software/SummerGUI.Charting | Forms/Graph2D/PlotterContainer.cs | 973 | C# |
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics.Tracing;
using System.Linq;
using Microsoft.Practices.EnterpriseLibrary.SemanticLoggi... | 38.206349 | 122 | 0.539676 | [
"Apache-2.0"
] | DSakura1987/slab-sinks | tests/SemanticLogging.Tests/TestSupport/EventEntryTestHelper.cs | 2,409 | C# |
using System;
using System.IO;
namespace Picturepark.SDK.V1.Contract
{
/// <summary>
/// Specifies the location where to upload the file from and optional filename if it should be renamed on upload
/// </summary>
public class FileLocations
{
/// <summary>
/// Initializes a new inst... | 37.54717 | 116 | 0.610553 | [
"MIT"
] | Picturepark/Picturepark.SDK.DotNet | src/Picturepark.SDK.V1.Contract/Contract/FileLocations.cs | 1,992 | C# |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace AdditionalBoneSliders.Debug
{
internal class Logger
{
private const string timeStampFormat = "yyyy-mm-dd HH:mm:ss";
private const string defaultLogPath = "log.txt";
private... | 27.339394 | 128 | 0.522057 | [
"MIT"
] | whoaabird/AdditionalBoneSliders | src/AdditionalBoneSliders/AdditionalBoneSliders/Logger.cs | 4,513 | C# |
// 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, publish,
// distribute, sublicense, and/or ... | 26.154167 | 155 | 0.727895 | [
"MIT"
] | ABEMBARKA/monoUI | UiaAtkBridge/UiaAtkBridge/ListGroup.cs | 6,277 | C# |
// Amplify Shader Editor - Visual Shader Editing Tool
// Copyright (c) Amplify Creations, Lda <info@amplify.pt>
//
// Custom Node TAU
// Donated by The Four Headed Cat - @fourheadedcat
using UnityEngine;
using System;
namespace AmplifyShaderEditor
{
[Serializable]
[NodeAttributes( "Tau", "Constants And Properties",... | 33.969697 | 176 | 0.729706 | [
"MIT"
] | 142333lzg/jynew | jyx2/Assets/3rd/AmplifyShaderEditor/Plugins/Editor/Nodes/Constants/TauNode.cs | 1,121 | C# |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System.Collections.Generic;
using System.Text.Json;
using Azure.Core;
namespace Azure.Analytics.Synapse.Artifacts.Models
{
public partial class NetezzaLinkedService : IUtf... | 41.566879 | 236 | 0.528808 | [
"MIT"
] | amolagar5/azure-sdk-for-net | sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/Models/NetezzaLinkedService.Serialization.cs | 6,526 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace EasyWrapper
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
... | 21.772727 | 65 | 0.597077 | [
"MIT"
] | SkillsFundingAgency/DC-Alpha-EasyWrapperPaaS | EasyWrapper/Program.cs | 481 | C# |
using Entitas.Generics;
using Entitas.MatchLine;
using Performance.ViewModels;
using System.Threading;
using UnityEngine;
using Random = UnityEngine.Random;
public sealed partial class TestElementService : Service, IElementService
{
private int _entityCounter;
private IGenericContext<GameEntity> _game;
... | 35.836538 | 134 | 0.641803 | [
"MIT"
] | jeffvella/EntitasGenerics | Assets/Sources/WpfRenderer/cvs/Performance.Game/Services/TestElementService.cs | 3,729 | C# |
using AutoMapper;
using PendAdvisor.API.DTOs;
using PendAdvisorModel;
using System.Linq;
namespace PendAdvisor.API
{
public class MappingProfile : Profile
{
public MappingProfile()
{
CreateMap<ClaimData, ModelInput>();
CreateMap<ModelOutputEx, AdviceData>()
.ForMember(... | 37 | 210 | 0.660811 | [
"Apache-2.0"
] | mavidian/PendAdvisor | PendAdvisor.API/MappingProfile.cs | 742 | C# |
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace FeatureA.Contracts
{
public interface IWorker
{
Task Work(CancellationToken cancellationToken = default);
}
}
| 18.785714 | 65 | 0.749049 | [
"MIT"
] | bnayae/autofac-module-sample | AutofacModuleSamples/FeatureA/FeatureA.Contracts/IWorker.cs | 265 | C# |
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 MinerByAlexForms
{
public partial class Template : Form
{
private static Templ... | 31.516129 | 80 | 0.541198 | [
"MIT"
] | Trissstar/MineSweeper | MineSweeperForms/Template.cs | 3,910 | C# |
// ==============================================================================================================
// Microsoft patterns & practices
// CQRS Journey project
// ==============================================================================================================
// ©2012 Microsoft. All right... | 49.27027 | 140 | 0.556226 | [
"Apache-2.0"
] | BenakTomas/cqrs-journey | source/Infrastructure/Azure/Infrastructure.Azure/Messaging/IMessageReceiver.cs | 1,826 | C# |
#if WITH_GAME
#if PLATFORM_32BITS
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace UnrealEngine
{
public partial class UStaticMesh
{
static readonly int MinLOD__Offset;
public int MinLOD
{
get{ CheckIsValid();return (int)Marshal.PtrToStructure(_this.Get()+M... | 42.964286 | 209 | 0.780549 | [
"MIT"
] | RobertAcksel/UnrealCS | Engine/Plugins/UnrealCS/UECSharpDomain/UnrealEngine/GeneratedScriptFile_Game_32bits/UStaticMesh_FixSize.cs | 8,421 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
namespace LeetCode.Naive.Problems
{
/// <summary>
/// Problem: https://leetcode.com/problems/score-of-parentheses/
/// Submission: https://leetcode.com/submissions/detail/239976930/
///... | 20.608696 | 72 | 0.46519 | [
"MIT"
] | viacheslave/leetcode-naive | c#/Problems/P0856.cs | 948 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Xml.Xsl;
using System.Diagnostics;
using System.Globalization;
using System.IO;
namespace Arebis.Caching
{
/// <summary>
/// A cache for XSLT document files.
/// </summa... | 35 | 182 | 0.551827 | [
"MIT"
] | FingersCrossed/Arebis.Common | Arebis.Common/Arebis/Caching/XsltFileCache.cs | 6,022 | C# |
using System;
using System.Globalization;
using System.Threading.Tasks;
using System.Xml;
using XRoadLib.Extensions;
using XRoadLib.Schema;
using XRoadLib.Serialization.Template;
namespace XRoadLib.Serialization.Mapping
{
public class DateTypeMap : TypeMap
{
private static readonly string[] DateFormat... | 38.482143 | 161 | 0.647332 | [
"MIT"
] | janno-p/XRoadLib | src/XRoadLib/Serialization/Mapping/DateTypeMap.cs | 2,157 | C# |
using Assets.scripts.DataModel;
using Assets.scripts.Location;
using System.Collections;
using System.Collections.Generic;
using System.Threading;
using UnityEngine;
public class DataModel : MonoBehaviour
{
public static DataModel instance;
[Header("Server info")]
// Server Connection Info
public str... | 28.55814 | 185 | 0.642101 | [
"MIT"
] | RemiFusade2/KorokGO | Korok GO/Assets/scripts/datamodel/DataModel.cs | 4,914 | C# |
using System;
using System.Linq;
using Alea;
using Alea.Parallel.Device;
namespace AleaTK.ML {
public class Batcher: IDisposable {
[GpuParam]
private readonly int cols_, rows_, outputs_;
private readonly bool doReset_;
public long Index { get; private set; }
public int Row... | 40.566667 | 125 | 0.570049 | [
"Apache-2.0"
] | fastai/AleaTK | src/AleaTK/ML/Batcher.cs | 4,870 | C# |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Microsoft.AspNetCore.Testing;
using Microsoft.Extensions.Logging.Abstractions;
using Microsoft.Extensions.Logging.Testing;
namespac... | 34.548387 | 111 | 0.705882 | [
"Apache-2.0"
] | 1175169074/aspnetcore | src/SignalR/common/testassets/Tests.Utils/VerifiableLoggedTest.cs | 1,071 | C# |
using Autobot.Models.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Autobot.Data.Configurations
{
public class PromoCodeBatchConfiguration : IEntityTypeConfiguration<PromoCodeBatch>
{
public void Configure(EntityTypeBuilder<PromoCodeBatc... | 40.129032 | 87 | 0.631833 | [
"MIT"
] | JaspreetSinghChahal/dotnetcore-entityframework-webapi | Autobot.Data/Configurations/PromoCodeBatchConfiguration.cs | 1,246 | C# |
namespace RotatingWalkInMatrix
{
using System;
public class MatrixDemo
{
public static void Main()
{
//Console.WriteLine("Enter a positive number ");
//string input = Console.ReadLine();
//int n;
//while (!int.TryParse(input, out n) || n < 0 ... | 24.84 | 85 | 0.484702 | [
"MIT"
] | NikitoG/TelerikAcademyHomeworks | Hight-Quality-Code/Refactoring/RotatingWalkInMatrix/MatrixDemo.cs | 623 | C# |
namespace HouseRules.Configuration.UI
{
using System;
using System.Collections.Generic;
using System.Linq;
using Common.UI;
using HouseRules.Types;
using TMPro;
using UnityEngine;
internal class RulesetSelectionPanel
{
private const int MaxRulesetsPerPage = 7;
priv... | 39.901408 | 130 | 0.634663 | [
"MIT"
] | orendain/DemeoMods | HouseRules_Configuration/UI/RulesetSelectionPanel.cs | 5,668 | C# |
// <copyright file="ClockLibrary.cs" company="MIT License">
// Licensed under the MIT License. See LICENSE file in the project root for license information.
// </copyright>
namespace SmallBasic.Editor.Libraries
{
using System;
using System.Globalization;
using SmallBasic.Compiler.Runtime;
internal se... | 37.361111 | 163 | 0.72342 | [
"MIT"
] | AndrewCook/smallbasic-editor | Source/SmallBasic.Editor/Libraries/ClockLibrary.cs | 1,347 | C# |
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace UnitTests.EF6.Model
{
public class CompositeKeyEntity
{
[Column(Order = 0), Key]
public int FirstKeyEntityId { get; set; }
[Column(Order = 1), Key]
public int SecondKeyEnti... | 29.166667 | 68 | 0.670476 | [
"MIT"
] | NathanNZ/BulkExtensions | UnitTests.EF6/Model/CompositeKeyEntity.cs | 525 | C# |
namespace Fonet.DataTypes
{
internal class ToBeImplemented
{
public ToBeImplemented(string value)
{
}
}
} | 15.666667 | 44 | 0.588652 | [
"Apache-2.0"
] | DaveDezinski/Fo.Net | src/DataTypes/ToBeImplemented.cs | 141 | C# |
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace AlibabaCloud.SDK.Ecs20140526.Models
{
public class ModifySecurityGroupRuleResponse : TeaModel {
[NameInMap("RequestId")]
[Validation(Required=true)]
... | 19.421053 | 61 | 0.699187 | [
"Apache-2.0"
] | alibabacloud-sdk-swift/alibabacloud-sdk | ecs-20140526/csharp/core/Models/ModifySecurityGroupRuleResponse.cs | 369 | C# |
namespace _000_DataAccess
{
public static class Connection
{
public const string Default = @"Data Source=(localdb)\MSSQLLocalDB;Initial Catalog=TitanCamp_Expressions_BloggingDB;Integrated Security=True;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnet... | 51 | 279 | 0.806723 | [
"Apache-2.0"
] | arttonoyan/dotnet-courses | Lesson_Expressions/Part2/000_DataAccess/Connection.cs | 359 | C# |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
using System.Collections.Generic;
namespace Analyzer.Utilities.Extensions
{
internal static class KeyValuePairExtensions
{
public static void Deconstruct<TK... | 31.363636 | 145 | 0.647826 | [
"MIT"
] | AndreasVolkmann/roslyn-analyzers | src/Utilities/Compiler/Extensions/KeyValuePairExtensions.cs | 692 | C# |
// -----------------------------------------------------------------------------
// 让 .NET 开发更简单,更通用,更流行。
// Copyright © 2020-2021 Furion, 百小僧, Baiqian Co.,Ltd.
//
// 框架名称:Furion
// 框架作者:百小僧
// 框架版本:2.8.6
// 源码地址:Gitee: https://gitee.com/dotnetchina/Furion
// Github:https://github.com/monksoul/Furion
// 开源协议:... | 31.037037 | 81 | 0.523866 | [
"Apache-2.0"
] | staoran/Furion | framework/Furion.Pure/FriendlyException/Options/ErrorCodeMessageSettingsOptions.cs | 1,035 | C# |
using System;
using System.IO;
using System.Linq;
using BizHawk.Client.Common;
using BizHawk.Common;
using BizHawk.Emulation.Common;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace BizHawk.Tests.Client.Common.Movie
{
[TestClass]
public class ZwinderStateManagerTests
{
private ZwinderSta... | 24.672788 | 115 | 0.621828 | [
"MIT"
] | Ortheore/BizHawk | src/BizHawk.Tests/Client.Common/Movie/ZwinderStateManagerTests.cs | 14,779 | C# |
#pragma checksum "C:\Revature\042020-dotnet-uta-RevRepo\kingsleyOnonachi_repo1\Proj1\Views\Customer\Create.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "ea5bc8a4d87fa1b91583df3ae771e0095b6cc714"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItem... | 74.034989 | 351 | 0.733806 | [
"MIT"
] | 042020-dotnet-uta/kingsleyOnonachi_repo1 | Proj1/obj/Debug/netcoreapp3.1/Razor/Views/Customer/Create.cshtml.g.cs | 65,595 | C# |
using System;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: Asse... | 65.433962 | 377 | 0.784602 | [
"Apache-2.0"
] | orinem/aws-sdk-net | sdk/src/Services/CloudFront/Properties/AssemblyInfo.cs | 3,468 | C# |
/**
* This code is part of the Fungus library (http://fungusgames.com) maintained by Chris Gregan (http://twitter.com/gofungus).
* It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
*/
using UnityEngine;
using UnityEngine.Serialization;
using System.Col... | 34.103448 | 125 | 0.624874 | [
"MIT"
] | worthingtonjg/laugh-kingdom | Assets/Fungus/iTween/Scripts/Commands/PunchRotation.cs | 1,978 | C# |
using System.Collections.Generic;
namespace ceenq.com.AssetImport.ViewModels
{
public class ImportViewModel {
public string Subdirectory { get; set; }
public bool OverwriteExisting { get; set; }
public string ImportUrl { get; set; }
}
}
| 21 | 51 | 0.67033 | [
"BSD-3-Clause"
] | bill-cooper/catc-cms | src/Orchard.Web/Modules/ceenq.com.AssetImport/ViewModels/ImportViewModel.cs | 275 | C# |
/*
*************************************************************************
** Included in SQLite3 port to C#-SQLite; 2008 Noah B Hart
** C#-SQLite is an independent reimplementation of the SQLite software library
**
** SQLITE_SOURCE_ID: 2010-08-23 18:52:01 42537b60566f288167f1b5864a5435986838e3a3
**
******... | 27.385965 | 83 | 0.372624 | [
"MIT"
] | ArsenShnurkov/csharp-sqlite | Community.CsharpSqlite/src/engine_vdbe/opcodes_c.cs | 4,683 | C# |
namespace SharedTrip.Data
{
public class UserTrip
{
public string UserId { get; set; }
public virtual User User { get; set; }
public string TripId { get; set; }
public virtual Trip Trip { get; set; }
}
}
| 18 | 46 | 0.571429 | [
"MIT"
] | Avanguarde/csharp-web | 2020-Sept-Season/SUS/Apps/SharedTrip/Data/UserTrip.cs | 254 | C# |
using Github_Recent_Explorer_Test.Components;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;
using System.Windows.Media;
namespace Github_Recent_Explorer_Test.Models
{
class Repositorie... | 29.112 | 103 | 0.535312 | [
"MIT"
] | Embarcadero/ComparisonResearch | github-recent-explorer/wpf/Refrence/Github Recent Explorer Test/Models/RepositoriesViewModel.cs | 3,641 | C# |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GoalHolderBlue : MonoBehaviour
{
public AudioSource crowd_audio;
public static int mavitakimgol;
private void OnTriggerEnter(Collider other)
{
if (other.tag == "Ball")
{
BallPosition.... | 19.454545 | 47 | 0.609813 | [
"Apache-2.0"
] | MarsalekDesmotes/-FpsSoccerGame | ChampionsSoccer/Assets/MainMenu/GoalHolderBlue.cs | 428 | C# |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using Craft.Net;
namespace SMProxy
{
public class Log
{
public StreamWriter Stream { get; set; }
private MemoryStream MemoryStream { get; set; } // Used for getting raw packet data
pr... | 36.688742 | 109 | 0.47509 | [
"MIT"
] | libraryaddict/SMProxy | SMProxy/Log.cs | 5,542 | C# |
using SpiceSharpParser.ModelReaders.Netlist.Spice.Context;
using SpiceSharpParser.ModelReaders.Netlist.Spice.Exceptions;
using SpiceSharpParser.ModelReaders.Netlist.Spice.Mappings;
using SpiceSharpParser.ModelReaders.Netlist.Spice.Readers;
using SpiceSharpParser.ModelReaders.Netlist.Spice.Readers.Controls;
using Spice... | 39.861538 | 135 | 0.648398 | [
"MIT"
] | fossabot/SpiceSharpParser | src/SpiceSharpParser/ModelReaders/Netlist/Spice/SpiceStatementsReader.cs | 2,593 | C# |
using Chalmers.ILL.Models;
using Newtonsoft.Json;
using System;
using System.Data.Entity;
using Umbraco.Core.Logging;
using System.Linq;
using Chalmers.ILL.OrderItems;
using System.Collections.Generic;
using System.Data.Entity.Validation;
namespace Chalmers.ILL.Database
{
public class OrderItemsDbContext : DbCont... | 32.57732 | 113 | 0.514557 | [
"MIT"
] | ChalmersLibrary/Chillin | Chalmers.ILL/Database/OrderItemsDbContext.cs | 3,162 | C# |
// --------------------------------------------------------------------------------------------
// Version: MPL 1.1/GPL 2.0/LGPL 2.1
//
// The contents of this file are subject to the Mozilla Public License Version
// 1.1 (the "License"); you may not use this file except in compliance with
// the License. You may obta... | 44.814894 | 201 | 0.66472 | [
"MIT"
] | haga-rak/Freezer | Freezer/GeckoFX/__Core/Generated/mozIStorageConnection.cs | 21,063 | C# |
namespace ns0
{
using BoomBang.Communication;
using BoomBang.Communication.Incoming;
using BoomBang.Config;
using BoomBang.Game.Sessions;
using System;
using System.Security.Cryptography;
internal class Class1
{
public static void smethod_0()
{
DataRouter.Re... | 32.892857 | 136 | 0.679696 | [
"MIT"
] | DaLoE99/Servidores-DaLoE | BB Server/BoomBang/ns0/Class1.cs | 923 | C# |
namespace SFA.Apprenticeships.Infrastructure.Communication.Email
{
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Net;
using System.Net.Mail;
using Application.Interfaces.Communications;
using Configuration;
using Domain.E... | 38.691892 | 146 | 0.615395 | [
"MIT"
] | BugsUK/FindApprenticeship | src/SFA.Apprenticeships.Infrastructure.Communication/Email/SendGridEmailDispatcher.cs | 7,160 | C# |
using System;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using FluentValidation;
using LineNotifySample.Models;
using LineNotifySDK;
using LineNotifySDK.Model;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace LineNotifySample.Controllers
{
public class Home... | 33.81982 | 112 | 0.592701 | [
"MIT"
] | a26007565/LineNotifySDK | LineNotifySample/Controllers/HomeController.cs | 3,754 | C# |
// ReSharper disable MemberCanBePrivate.Global
namespace Modulos.Testing
{
using System;
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
public sealed class ScriptFileAttribute : ScriptAttribute
{
public ScriptFileAttribute()
: this("")
{
}
... | 21.789474 | 72 | 0.637681 | [
"MIT"
] | adobrzyc/modulos.testing.db | src/Modulos.Testing.Db/Attributes/ScriptFileAttribute.cs | 416 | C# |
using System.Text;
using CoreHelper;
using CoreHelper.Ioc;
using Loogn.OrmLite;
using project.dao;
using project.dao.Models;
namespace project.backsite.Services
{
[AppService]
public class AnnouncementService
{
[Autowired] private AnnouncementDao announcementDao;
public AnnouncementService... | 26.4 | 100 | 0.522727 | [
"MIT"
] | loogn/NetApiStarter | src/project.backsite/Services/AnnouncementService.cs | 1,848 | C# |
namespace DCET.Model
{
public static class EventIdType
{
public const string RecvHotfixMessage = "RecvHotfixMessage";
public const string BehaviorTreeRunTreeEvent = "BehaviorTreeRunTreeEvent";
public const string BehaviorTreeOpenEditor = "BehaviorTreeOpenEditor";
public const string BehaviorTreeClickNode = "... | 57.230769 | 112 | 0.826613 | [
"MIT"
] | zxsean/DCET | Unity/Packages/DCET/Core/Runtime/Base/Event/EventIdType.cs | 1,490 | C# |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Iot.Device.Ws28xx.Esp32
{
/// <summary>
/// Represents the SK6812 Driver.
/// </summary>
/// <seealso cref="Iot.Device.Ws28xx.Ws28xx" />
public class S... | 35.892857 | 97 | 0.585075 | [
"MIT"
] | josesimoes/nanoFramework.IoT.Device | devices/Ws28xx.Esp32/Sk6812.cs | 1,007 | C# |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.IO;
namespace BizHawk.Emulation.DiscSystem
{
public class FFMpeg
{
public static string FFMpegPath;
public class AudioQueryResult
{... | 26.633721 | 142 | 0.64069 | [
"MIT"
] | Gikkman/BizHawk | BizHawk.Emulation.DiscSystem/DiscDecoding.cs | 4,583 | C# |
public class Enemy: Entity{
public EnemyType type;
public float movespeed;
public int damage;
public int moneyDrop;
public int expDrop;
public int health;
public bool isDead;
public float spawntime;
public static int ids = 0;
public Enemy(EnemyData enemyData) {
type = en... | 23.970588 | 44 | 0.584049 | [
"MIT"
] | bende24/TowerDefense | TowerDefense/Assets/Scripts/Entity/Enemy/Enemy.cs | 815 | C# |
// 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.Collections.Specialized;
using Xunit;
namespace System.ComponentModel.Design.Tests
{
public class ... | 40.645161 | 122 | 0.675397 | [
"MIT"
] | Amy-Li03/winforms | src/System.Windows.Forms.Design/tests/UnitTests/System/ComponentModel/Design/DesignerActionTextItemTests.cs | 1,260 | C# |
namespace Nest
{
[MapsApi("xpack.rollup.stop_job.json")]
public partial interface IStopRollupJobRequest { }
public partial class StopRollupJobRequest { }
public partial class StopRollupJobDescriptor { }
}
| 21.2 | 51 | 0.778302 | [
"Apache-2.0"
] | Henr1k80/elasticsearch-net | src/Nest/XPack/RollUp/StopRollupJob/StopRollupJobRequest.cs | 214 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.