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 |
|---|---|---|---|---|---|---|---|---|
using System;
namespace MetaFoo.Core.Delegates
{
public static class FuncValueTuplePackingExtensions
{
public static Func<ValueTuple<T1, T2>, TResult> Pack<T1, T2, TResult>(this Func<T1, T2, TResult> func)
{
return tuple => func(tuple.Item1, tuple.Item2);
}
public s... | 51.28125 | 170 | 0.602072 | [
"MIT"
] | philiplaureano/MetaFoo | MetaFoo/MetaFoo.Core/Delegates/FuncValueTuplePackingExtensions.cs | 1,643 | C# |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using A... | 59.378378 | 480 | 0.667375 | [
"MIT"
] | alexbuckgit/azure-sdk-for-net | sdk/dashboard/Azure.ResourceManager.Dashboard/src/Generated/GrafanaResourceCollection.cs | 19,773 | C# |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
/... | 36.967213 | 153 | 0.584035 | [
"MIT"
] | GeertVL/msgraph-beta-sdk-dotnet | src/Microsoft.Graph/Generated/model/Bundle.cs | 2,255 | 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... | 30.788136 | 107 | 0.60033 | [
"Apache-2.0"
] | PureKrome/aws-sdk-net | sdk/src/Services/SageMaker/Generated/Model/ProcessingInput.cs | 3,633 | C# |
/*
Copyright (c) 2016, Kevin Pope, Lars Brubaker, John Lewin
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 copyright notice, this
list of co... | 28.339912 | 154 | 0.655459 | [
"BSD-2-Clause"
] | fortsnek9348/MatterControl | Tests/MatterControl.Tests/MatterControl/GCodeStreamTests.cs | 25,848 | C# |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EnemySpawner : MonoBehaviour {
public bool isGameOver;
public int gameLevel;
public GameObject squareEnemy;
private void Awake()
{
isGameOver = false;
}
// Use this for initi... | 28.723404 | 179 | 0.632593 | [
"MIT"
] | umutefiloglu/Space-Shooter-2D | EnemySpawner.cs | 1,352 | C# |
using System;
using System.Collections.Generic;
using Aop.Api.Response;
namespace Aop.Api.Request
{
/// <summary>
/// AOP API: alipay.micropay.order.get
/// </summary>
public class AlipayMicropayOrderGetRequest : IAopRequest<AlipayMicropayOrderGetResponse>
{
/// <summary>
/// 支付宝订单号... | 23.42 | 92 | 0.606319 | [
"MIT"
] | erikzhouxin/CSharpSolution | OSS/Alipay/F2FPayDll/Projects/alipay-sdk-NET20161213174056/Request/AlipayMicropayOrderGetRequest.cs | 2,382 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
using System.Reflection;
using WolvenKit.RED4.CR2W;
using WolvenKit.Common.Model.Cr2w;
using WolvenKit.RED4.CR2W.Reflection;
using CP77Types = WolvenKit.RED4.CR2W.Types;
namespace... | 48.044872 | 232 | 0.6503 | [
"MIT"
] | 0xSombra/GraphEditor | GraphEditor/CP77/Quest/NodeFactory.cs | 7,497 | C# |
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Chinook.DataEF;
using Chinook.Domain.Repositories;
using Chinook.Domain.Entities;
using Microsoft.EntityFrameworkCore;
namespace Chinook.DataEFCore.Repositories
{
public class CustomerRepository : ICustomerRepository
{
... | 31.15 | 84 | 0.623863 | [
"MIT"
] | ANgajasinghe/ChinookASPNETWebAPI | ChinookASPNETWebAPI/Chinook.DataEF/Repositories/CustomerRepository.cs | 1,871 | C# |
using System.Collections.Generic;
namespace JsonInterfaceSerialize.DataModels.DataInterfaces
{
public interface IJisCountry
{
long Area { get; set; }
string Capital { get; set; }
string Name { get; set; }
string OfficialName { get; set; }
long Population { get; set; }
... | 24.866667 | 58 | 0.613941 | [
"Apache-2.0"
] | sajidak/JsonInterfaceSerialize | JsonInterfaceSerialize/DataModels/DataInterfaces/IJisCountry.cs | 375 | C# |
#pragma warning disable IDE1006, S101 // Naming Styles
namespace SJP.Schematic.Sqlite.Pragma.Query
{
/// <summary>
/// Stores information on key columns within an index.
/// </summary>
public sealed record pragma_index_info
{
/// <summary>
/// The rank of the column within ... | 32.8 | 122 | 0.570732 | [
"MIT"
] | sjp/Schematic | src/SJP.Schematic.Sqlite/Pragma/Query/pragma_index_info.cs | 822 | C# |
using Microsoft.EntityFrameworkCore;
using OpenBudgeteer.Core.Common.Database;
using OpenBudgeteer.Core.Models;
namespace OpenBudgeteer.Core.ViewModels.ItemViewModels;
public class MappingRuleViewModelItem : ViewModelBase
{
private MappingRule _mappingRule;
/// <summary>
/// Reference to model object in ... | 30.725806 | 123 | 0.660892 | [
"Apache-2.0",
"MIT"
] | Hazy87/OpenBudgeteer | OpenBudgeteer.Core/ViewModels/ItemViewModels/MappingRuleViewModelItem.cs | 1,907 | C# |
/*********************************************************************
*
* Copyright (C) 2002 Andrew Khan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of th... | 24.163701 | 79 | 0.629897 | [
"Apache-2.0"
] | Tatetaylor/kbplumbapp | CSharpJExcel/CSharpJExcel/CSharpJExcel/Jxl/Read/Biff/StringFormulaRecord.cs | 6,790 | C# |
using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
using PicoService.Builder;
using PicoService.Bus;
using PicoService.Configuration;
namespace PicoService.Extensions.Bus
{
public static class BusPicoServiceExtensions
{
public static IPicoServiceBuilder Us... | 37.875 | 168 | 0.683993 | [
"MIT"
] | PicoService/PicoService | PicoService/Extensions/Bus/BusPicoServiceExtensions.cs | 1,212 | C# |
using System;
using HotChocolate.Language;
using static HotChocolate.Execution.ThrowHelper;
namespace HotChocolate.Execution.Processing;
public sealed class SelectionIncludeCondition
{
public SelectionIncludeCondition(
IValueNode? skip = null,
IValueNode? include = null,
SelectionIncludeCo... | 24.900826 | 86 | 0.555592 | [
"MIT"
] | AccountTechnologies/hotchocolate | src/HotChocolate/Core/src/Execution/Processing/SelectionIncludeCondition.cs | 3,013 | C# |
using System;
using System.Linq;
using System.Threading.Tasks;
namespace custom_popup_form.Data
{
public class WeatherForecastService
{
private static readonly string[] Summaries = new[]
{
"Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorch... | 29.807692 | 110 | 0.574194 | [
"MIT"
] | SeppPenner/blazor-ui | grid/custom-popup-form/Data/WeatherForecastService.cs | 775 | C# |
using System;
class BankAccauntData
{
static void Main()
{
string Name;
string MiddleName;
string LastName;
int Balance;
object BankName;
long IBAN;
ulong CredintCard1;
ulong CreditCard2;
ulong CreditCard3;
Name = "Dancho";
... | 24.322581 | 157 | 0.574271 | [
"MIT"
] | MartinQnkovDobrev/ZadachiCSharp | BankAccauntData/BankAccauntData.cs | 756 | C# |
// Copyright 2016 Google Inc. 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 required by a... | 38.156863 | 81 | 0.727133 | [
"MIT"
] | E-restrepo14/Noisy-googlevr | Assets/Zdownloads/GoogleVR/Scripts/Controller/GvrControllerVisualManager.cs | 1,948 | C# |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
namespace ConnectFour
{
public class GameResultsView : MonoBehaviour
{
public Text RedTeamWinCount, BlackTeamWinCount, RedTeamWintypeDisplay, BlackTeamWinTypeDisplay;
public Text RedTeamPlayedBy... | 37.431373 | 196 | 0.622315 | [
"MIT"
] | eamonn-keogh/CoderDojo2019-ConnectFour | Connect-Four-master/Connect-Four-master/Assets/Scripts/UI/GameResultsView.cs | 1,911 | C# |
namespace Nacos.AspNetCore
{
using Microsoft.AspNetCore.Hosting.Server;
using Microsoft.AspNetCore.Http.Features;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using System;
using System.Collections.Gen... | 34.949686 | 189 | 0.495411 | [
"Apache-2.0"
] | lengyjc/nacos-sdk-csharp | src/Nacos.AspNetCore/StatusReportBgTask.cs | 5,559 | C# |
using System.Text.Json.Serialization;
namespace KaiHeiLa.API;
internal class VideoModule : ModuleBase
{
[JsonPropertyName("src")] public string Source { get; set; }
[JsonPropertyName("title")] public string Title { get; set; }
} | 26.444444 | 65 | 0.726891 | [
"MIT"
] | gehongyan/KaiHeiLa.Net | src/KaiHeiLa.Net.Rest/API/Common/Cards/Modules/VideoModule.cs | 238 | C# |
#region Copyright (c) 2020 Filip Fodemski
//
// Copyright (c) 2020 Filip Fodemski
//
// 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 ri... | 33.446154 | 138 | 0.694112 | [
"MIT"
] | filipek/SmartGraph | SmartGraph.TestApp/Helpers.cs | 2,174 | C# |
using Com.Game.Data;
using Com.Game.Module;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using UnityEngine;
public class HeadItem : MonoBehaviour
{
private UITexture Icon1;
private Transform State1;
private UILabel deathTimeL... | 28.951872 | 221 | 0.711304 | [
"MIT"
] | corefan/mobahero_src | HeadItem.cs | 5,414 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace Monolith
{
public class Program
{
public stati... | 25.555556 | 70 | 0.643478 | [
"MIT"
] | CodeMazeBlog/api-gateway-pattern-dotnet | Monolith/Program.cs | 690 | C# |
using Beer.DaAPI.Core.Helper;
using System;
using System.Collections.Generic;
namespace Beer.DaAPI.Core.Common
{
public class LinkLayerAddressDUID : DUID
{
public enum DUIDLinkLayerTypes : ushort
{
Ethernet = 1,
}
#region Properties
public DUIDLinkLayerTyp... | 30.84127 | 120 | 0.567164 | [
"MIT"
] | just-the-benno/Beer | src/DaAPI/Service/Beer.DaAPI.Service.Core/Common/DUID/LinkLayerAddressDUID.cs | 1,945 | C# |
using CleanArchitecture.Application.TodoLists.Queries.ExportTodos;
namespace CleanArchitecture.Application.Common.Interfaces;
public interface ICsvFileBuilder
{
byte[] BuildTodoItemsFile(IEnumerable<TodoItemRecord> records);
} | 29.125 | 67 | 0.845494 | [
"MIT"
] | wahidrezgui/RealEstate | src/Application/Common/Interfaces/ICsvFileBuilder.cs | 235 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ImputationH31per.Modele.Entite;
namespace ImputationH31per.Vue.RapportMensuel.Modele.Entite
{
public class GroupeItem : InformationBaseItem<IInformationTacheTfs>
{
public GroupeItem(EnumTypeItem typeI... | 27.184211 | 84 | 0.633107 | [
"Unlicense"
] | blueneosky/Bag | ImputationH31per/ImputationH31per/Vue/RapportMensuel/Modele/Entite/GroupeItem.cs | 1,035 | C# |
// *** WARNING: this file was generated by the Pulumi SDK Generator. ***
// *** 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;
namespace Pulumi.Azur... | 34.031746 | 250 | 0.670709 | [
"Apache-2.0"
] | test-wiz-sec/pulumi-azure-nextgen | sdk/dotnet/Logic/V20190501/ListWorkflowRunActionExpressionTraces.cs | 2,144 | C# |
using UnityEngine;
namespace Hoard.MVC.Unity
{
/// <summary>
/// Helper object that helps to do a math related to the vertical carousel
/// </summary>
public class SlidingObjectControl
{
public float ContentElementWidth { get; set; }
public float spacing = 0;
public float ... | 34.189189 | 103 | 0.624506 | [
"MIT"
] | hoardexchange/hoard-overlay-unity | MVCUnity/UIComponents/SlidingObjectControl.cs | 2,530 | C# |
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SteamBotExample.SteamApi.IEconItems_730.GetPlayerItems
{
public class getPlayerItems_Items
{
[JsonProperty("id")]
public string Id { get; set; }
[JsonProperty("... | 22.891304 | 64 | 0.710351 | [
"MIT"
] | BattleRush/SteamTradeExample-Console | SteamBotExample/SteamApi/IEconItems_730/GetPlayerItems/getPlayerItems_Items.cs | 1,055 | C# |
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using CDR.Register.IdentityServer.Configurations;
using CDR.Register.IdentityServer.Interfaces;
using IdentityServer4.Models;
using Microsoft.IdentityModel.Tokens;
namespace CDR.Register.IdentityServer.Extensions
{
public static cl... | 31.285714 | 129 | 0.674658 | [
"MIT"
] | AmilaSamith/mock-register | Source/CDR.Register.IdentityServer/Extensions/ClientExtensions.cs | 878 | C# |
//---------------------------------------------------------------------
// <copyright file="CatalogUrlManager.cs" company="Sitecore Corporation">
// Copyright (c) Sitecore Corporation 1999-2015
// </copyright>
// <summary>The CatalogUrlManager class</summary>
//-----------------------------------------------------... | 43.587426 | 184 | 0.59222 | [
"Apache-2.0"
] | Sitecore/Reference-Storefront-SCpbMD | Storefront/CSF/Util/CatalogUrlManager.cs | 22,188 | C# |
using System;
using System.Collections.Generic;
using System.Text;
namespace LoanManager.Core.Domain
{
public class LoanRate
{
public int LoanRateId { get; set; }
public int LowerCreditScore { get; set; }
public int UpperCreditScore { get; set; }
public double InterestRat... | 17.48 | 49 | 0.627002 | [
"MIT"
] | alex-wolf-ps/visual-studio-code-analysis | LoanManager.Core/Domain/LoanRate.cs | 439 | C# |
// *** WARNING: this file was generated by the Pulumi SDK Generator. ***
// *** 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;
namespace Pulumi.Azur... | 36.375 | 276 | 0.645762 | [
"Apache-2.0"
] | test-wiz-sec/pulumi-azure-nextgen | sdk/dotnet/MachineLearningServices/V20181119/GetMachineLearningCompute.cs | 3,492 | C# |
/********************************************************************************
Copyright (C) Binod Nepal, Mix Open Foundation (http://mixof.org).
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
If a copy of the MPL was not distributed with this file, You can obtain one at
ht... | 41.317073 | 216 | 0.658501 | [
"MPL-2.0",
"MPL-2.0-no-copyleft-exception"
] | gj86/mixerp2 | MixERP.Net.BusinessLayer/Helpers/FormHelper.cs | 3,390 | C# |
using System;
using System.Collections.Generic;
using System.Text;
namespace IteratorsAndComparators
{
public class Book
{
public string Title { get; }
public int Year { get; }
public IReadOnlyList<string> Authors { get; }
public Book(string title, int year, params string[] au... | 20.857143 | 68 | 0.575342 | [
"MIT"
] | d1ma1/CSharp-OOP | Iterators and Comparators - Lab/01. Library/Book.cs | 440 | C# |
using NBitcoin.Tests.Generators;
using Xunit;
using FsCheck;
using FsCheck.Xunit;
using System;
using NBitcoin.Crypto;
namespace NBitcoin.Tests.PropertyTest
{
// Test for non-segwit tx.
public class LegacyTransactionTest
{
public LegacyTransactionTest()
{
Arb.Register<LegacyTransactionGenerators>();
}
... | 20.736842 | 64 | 0.704315 | [
"MIT"
] | 3DA4C300/NBitcoin | NBitcoin.Tests/PropertyTest/LegacyTransactionTest.cs | 788 | C# |
using Deribit.S4KTNET.Core.Mapping;
using FluentValidation;
namespace Deribit.S4KTNET.Core.Trading
{
// https://docs.deribit.com/v2/#private-get_open_orders_by_currency
public class GetOpenOrdersByCurrencyRequest : RequestBase
{
public CurrencyCode currency { get; set; }
public Instrument... | 36.191176 | 124 | 0.489638 | [
"MIT"
] | HA07Z7XE/Deribit.S4KTNET | Deribit.S4KTNET.Core/src/deribit/trading/requests/GetOpenOrdersByCurrencyRequest.cs | 2,461 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace exerc_14
{
class Program
{
static void Main(string[] args)
{
int candidato = 0;
int cvr = 0, jam = 0, cfl = 0, lcp = 0, atv = 0,nulo=0;
... | 39.459459 | 90 | 0.432534 | [
"MIT"
] | Paulo-Faustino/Tarefas | Exercicios/Algoritmo C#/exerc_14/exerc_14/Program.cs | 2,942 | 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("Al... | 39.27027 | 84 | 0.752237 | [
"Apache-2.0"
] | 3686/Alexw.ProxyableClient | source/Alexw.ProxyableClient.ConsoleApplication/Properties/AssemblyInfo.cs | 1,456 | C# |
/**
* Copyright 2013 Canada Health Infoway, 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... | 36.586207 | 83 | 0.711593 | [
"ECL-2.0",
"Apache-2.0"
] | CanadaHealthInfoway/message-builder-dotnet | message-builder-release-ab_r02_04_03_shr/Main/Ca/Infoway/Messagebuilder/Model/Ab_r02_04_03_shr/Domainvalue/RespiratoryTherapistHIPAA.cs | 1,061 | 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.Generic;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.CodeStyle;
using Micro... | 24.798077 | 133 | 0.590604 | [
"Apache-2.0"
] | KGRWhite/roslyn | src/EditorFeatures/CSharpTest/RemoveUnusedParametersAndValues/RemoveUnusedValueExpressionStatementTests.cs | 15,476 | C# |
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 56.548387 | 191 | 0.781517 | [
"Apache-2.0"
] | awei1688/aliyun-openapi-net-sdk | aliyun-net-sdk-dds/Dds/Transform/V20151201/DescribeSlowLogRecordsResponseUnmarshaller.cs | 3,506 | C# |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Diagnostics;
using System.IO;
using System.Linq.Expressions;
using System.Security;
using System.Security.Authentication;
using System.Reflection;
using System.Runtime.I... | 44.966667 | 196 | 0.633226 | [
"MIT"
] | BodyBuildingKang/runtime | src/libraries/Common/tests/TestUtilities/System/PlatformDetection.cs | 24,282 | C# |
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license.
//
// Microsoft Bot Framework: http://botframework.com
//
// Bot Builder SDK Github:
// https://github.com/Microsoft/BotBuilder
//
// Copyright (c) Microsoft Corporation
// All rights reserved.
//
// MIT License:
// Permission ... | 35.326531 | 140 | 0.598498 | [
"MIT"
] | luciany/BotBuilder | CSharp/Library/Scorables/Resolver.cs | 6,926 | C# |
using System;
namespace Gizmo
{
public static class StringExtensions
{
public static bool IsNotQuit(this string s)
{
if(s == null) return true;
s = s.Trim().ToLower();
return !(s == ":q" || s == ":quit");
}
public static bool IsNullOrEmpty(th... | 25.02381 | 117 | 0.486204 | [
"MIT"
] | jasonchester/gizmo.sh | src/Gizmo/StringExtensions.cs | 1,051 | C# |
/*
* Streamr API
*
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 1.0.0
*
* Generated by: https://github.com/swagger-api/swagger-codegen.git
*/
using System;
using System.IO;
using System.Collections.Generic;
using System.Coll... | 31.908297 | 146 | 0.550568 | [
"Apache-2.0"
] | Rjrunner44/streamr-api-dotnet-tutorial | csharp-client/src/IO.Swagger.Test/Api/CanvasesApiTests.cs | 7,307 | C# |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization.Formatters.Binary;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Xml;
namespace MobiFlightInstal... | 36.108844 | 157 | 0.537679 | [
"Unlicense"
] | CaptainBobSim/Connector-Open-Source-Control-Loading-system | MobiFlight-Installer/MobiFlight-Installer/model/MobiFlightHelperMethods.cs | 5,310 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEngine;
using UnityEngine.UI;
namespace UI.Xml.Tags
{
public partial class ToggleTagHandler : InputBaseTagHandler, IHasXmlFormValue
{
}
}
| 17.714286 | 81 | 0.770161 | [
"Apache-2.0"
] | exporl/lars-common | Plugins/UI/XmlLayout/ViewModel/Tags/Toggle.MVVM.cs | 248 | C# |
using System;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media;
using Microsoft.Phone.Shell;
using MVVMSidekick.ViewModels;
namespace WikiaWP.ViewModels
{
public static class ViewModelExtensions
{
public static readonly TimeSpan DefaultShowToastMessageTime ... | 34.37037 | 153 | 0.531789 | [
"MIT"
] | lianzhao/WikiaWP | src/WikiaWP/ViewModels/ViewModelExtensions.cs | 1,858 | C# |
using MediatR;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System.Threading.Tasks;
using Commitments.Core.Extensions;
namespace Commitments.Api.Features.Users
{
[Authorize]
[ApiController]
[Route("api/users")]
public class UsersContro... | 33.6 | 127 | 0.712585 | [
"MIT"
] | QuinntyneBrown/Commitments | src/Commitments.API/Features/Users/UsersController.cs | 1,176 | C# |
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Threading;
namespace SixLabors.Fonts.Unicode
{
/// <summary>
/// Implementation of Unicode Bidirection Algorithm (UAX #9)
/// ... | 38.28821 | 181 | 0.477467 | [
"Apache-2.0"
] | Turnerj/Fonts | src/SixLabors.Fonts/Unicode/BidiAlgorithm.cs | 61,376 | C# |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Net.Quic;
using System.Text;
using System.Threading.Tasks;
using System.Linq;
usi... | 38.15812 | 192 | 0.63333 | [
"MIT"
] | AerisG222/runtime | src/libraries/Common/tests/System/Net/Http/Http3LoopbackConnection.cs | 8,929 | C# |
namespace DotNext.Generic;
/// <summary>
/// Represents <see cref="int"/> constant as type.
/// </summary>
public abstract class Int32Const : Constant<int>
{
/// <summary>
/// Associated <see cref="int"/> value with this type.
/// </summary>
/// <param name="value">A value to be associated with this ty... | 23.013699 | 76 | 0.505952 | [
"MIT"
] | copenhagenatomics/dotNext | src/DotNext/Generic/Int32Const.cs | 1,680 | C# |
using System;
using YARC.Messages.Bus;
namespace YARC.Messages.ExtApi
{
[Serializable]
public class ExtApiDataRequest : IMessage, ICanValidate
{
public string RequestId { get; set; }
public string ProviderName { get; set; }
public string ObjectName { get; set; }
public stri... | 27.464286 | 59 | 0.579974 | [
"MIT"
] | steelden/yet-another-rabbitmq-client | src/YARC.Messages/ExtApi/ExtApiDataRequest.cs | 771 | C# |
#region License
// Jdenticon-net
// https://github.com/dmester/jdenticon-net
// Copyright © Daniel Mester Pirttijärvi 2016
//
// 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 res... | 34.590476 | 108 | 0.615088 | [
"MIT"
] | topikon-de/jdenticon-net | Extensions/Jdenticon.Gdi/Rendering/GdiRenderer.cs | 3,636 | C# |
using CQELight;
using CQELight.Dispatcher;
using CQELight.IoC;
using CQELight.EventStore.EFCore.Common;
using Geneao.Commands;
using Geneao.Data;
using Geneao.Queries;
using Microsoft.EntityFrameworkCore;
using System;
using System.IO;
using System.Threading.Tasks;
using CQELight.Abstractions.DDD;
using Geneao.Domain;... | 40.394231 | 137 | 0.50238 | [
"MIT"
] | Thanouz/CQELight | samples/documentation/2.Geneao/Geneao/Program.cs | 8,430 | C# |
using LanguageExtensions.AspNetCore.Middlewares.CorrelationId;
using LanguageExtensions.Correlation;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.DependencyInjection.Extensions;
using System;
namespace Microsoft.AspNetCore.Builder
{
public static class CorrelationIdServiceExtensions
... | 41.655172 | 189 | 0.744205 | [
"MIT"
] | LanguageExtensions/LanguageExtensions | src/AspNetCore/LanguageExtensions.AspNetCore/Middlewares/CorrelationId/CorrelationIdServiceExtensions.cs | 1,210 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Interpidians.Catalyst.Core.Entity;
namespace Interpidians.Catalyst.Core.DomainService
{
public interface IStateMasterRepository
{
IEnumerable<StateMaster> GetAll();
StateMaster GetById(IdentifiableData id... | 25.666667 | 50 | 0.738095 | [
"MIT"
] | prashantkakde31/Catalyst | app/SRC/Interpidians.Catalyst/Interpidians.Catalyst.Core/DomainService/IStateMasterRepository.cs | 464 | C# |
// CS0432: Alias `Sa' not found
// Line: 6
using S = System;
[assembly: Sa::CLSCompliantAttribute (false)]
| 15.571429 | 45 | 0.678899 | [
"Apache-2.0"
] | 121468615/mono | mcs/errors/cs0432-3.cs | 109 | C# |
namespace MassTransit.Transports
{
using System;
using System.Threading;
using System.Threading.Tasks;
using Context;
using Initializers;
/// <summary>
/// Generalized proxy for ISendEndpoint to intercept pipe/context
/// </summary>
public abstract class SendEndpointProxy :
... | 37.390728 | 139 | 0.62469 | [
"ECL-2.0",
"Apache-2.0"
] | AlexanderMeier/MassTransit | src/MassTransit/Transports/SendEndpointProxy.cs | 5,646 | C# |
using System;
namespace RangHo.DialogueScript
{
public class InvalidCharacterException : Exception
{
public InvalidCharacterException() { }
public InvalidCharacterException(string message) : base(message) { }
public InvalidCharacterException(string message, Exception innerExcep... | 33.948276 | 121 | 0.710005 | [
"MIT"
] | RangHo/DialogueScript | DialogueScriptLibrary/Exception.cs | 1,969 | C# |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace TetrisApiServer
{
public class Progr... | 23.382353 | 62 | 0.581132 | [
"MIT"
] | jacking75/examples_unity_network | Server/PvPTetris_APIServer/Program.cs | 797 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework.Graphics;
using P3D.Legacy.MapEditor.Data.Models;
using P3D.Legacy.MapEditor.Utils;
using P3D.Legacy.MapEditor.World;
namespace P3D.Legacy.MapEditor.Renders
{
public class LevelRenderer : IDisposable
{
p... | 28.410714 | 95 | 0.622879 | [
"MIT"
] | P3D-Legacy/P3D-Legacy-MapEditor | P3D-Legacy-MapEditor/Renders/LevelRenderer.cs | 1,593 | C# |
using CommonLib.Models;
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace NNMR.Models.DBModels
{
[Table("UserProgress")]
public class UserProgressDB : IBaseDBModel
{
public int Id { get; set; }
public int UserId { get; set; }
public int ChapterId { get; se... | 23.666667 | 51 | 0.643192 | [
"MIT"
] | MoreManga/RESTAPI | NNMR.Model/DBModels/UserProgressDB.cs | 428 | C# |
using System;
using System.Linq;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using NetModular.Lib.Module.Abstractions;
using NetModular.Lib.Utils.Core;
namespace NetModular.Lib.Module.AspNetCore
{
public static class ServiceCollectionExtensions
{
/// <summary>
... | 34.732143 | 153 | 0.58072 | [
"MIT"
] | sunlibo111111/NetModular | src/Framework/Module/Module.AspNetCore/ServiceCollectionExtensions.cs | 3,998 | C# |
using JT809.Protocol.Extensions;
using JT809.Protocol.Enums;
using JT809.Protocol.SubMessageBody;
using System;
using System.Buffers;
using System.Collections.Generic;
using System.Text;
namespace JT809.Protocol.Formatters.SubMessageBodyFormatters
{
public class JT809_0x9500_0x9504_Formatter : IJT809Formatter<JT8... | 44.831169 | 117 | 0.62022 | [
"MIT"
] | maodaxiong/JT809 | src/JT809.Protocol/Formatters/SubMessageBodyFormatters/JT809_0x9500_0x9504_Formatter.cs | 4,034 | C# |
using LifeCycleDevEnvironmentConsole.Settings;
using LifeCycleDevEnvironmentConsole.Settings.OperationSettings;
using LifeCycleDevEnvironmentConsole.Utilities;
using Microsoft.Office.Interop.Excel;
using ProcessManagement;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using Syst... | 44.49827 | 167 | 0.641213 | [
"MIT",
"Unlicense"
] | alwaysmiddle/LifeCycleWorkflowTool | LifeCycleDevEnvironmentConsole/BannerOperations/O5Operations.cs | 12,862 | C# |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using ClearHl7.Extensions;
using ClearHl7.Helpers;
namespace ClearHl7.V290.Segments
{
/// <summary>
/// HL7 Version 2 Segment BTS - Batch Trailer.
/// </summary>
public class BtsSegment : ISegment
{
... | 45.5 | 181 | 0.595978 | [
"MIT"
] | davebronson/clear-hl7-net | src/ClearHl7/V290/Segments/BtsSegment.cs | 4,279 | C# |
/*
Copyright 2009-2012 Arno Wacker, University of Kassel
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... | 36.347518 | 238 | 0.538439 | [
"Apache-2.0"
] | CrypToolProject/CrypTool-2 | CrypPlugins/Caesar/CaesarSettings.cs | 10,252 | C# |
namespace ArmyOfCreatures.Extended.Creatures
{
using ArmyOfCreatures.Logic.Creatures;
using ArmyOfCreatures.Logic.Specialties;
public class AncientBehemoth : Creature
{
private const int AttackPoints = 19;
private const int DefensePoints = 19;
private const int HealtPoints ... | 35.5 | 84 | 0.6863 | [
"MIT"
] | EmilMitev/Telerik-Academy | CSarp - OOP/Exam/ArmyOfCreatures/ArmyOfCreatures/Extended/Creatures/AncientBehemoth.cs | 783 | C# |
namespace Umbraco.Core.Persistence.Migrations.Syntax.Delete.Index
{
public interface IDeleteIndexForTableSyntax : IFluentSyntax
{
IDeleteIndexOnColumnSyntax OnTable(string tableName);
}
} | 29.714286 | 66 | 0.769231 | [
"MIT"
] | filipesousa20/Umbraco-CMS-V7 | src/Umbraco.Core/Persistence/Migrations/Syntax/Delete/Index/IDeleteIndexForTableSyntax.cs | 210 | C# |
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
//
// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//-... | 44.389899 | 449 | 0.666181 | [
"BSD-3-Clause"
] | compori/magentoapi | src/MagentoApi.SoapClient.RemoteServices.Core243/ResourceModel/StoreGroupRepositoryV1.cs | 21,977 | C# |
// <auto-generated>
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for
// license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// re... | 37.02439 | 90 | 0.665349 | [
"MIT"
] | dsgouda/aznetsdk | src/SDKs/Media/Management.Media/Generated/Models/ContentKeyPolicyPlayReadyUnknownOutputPassingOption.cs | 1,518 | C# |
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
using D = Duracellko.PlanningPoker.Domain;
namespace Duracellko.PlanningPoker.Service.Test
{
[TestClass]
public class PlanningPo... | 40.305578 | 190 | 0.621264 | [
"MIT"
] | msawczyn/planningpoker4azure | test/Duracellko.PlanningPoker.Test/Service/PlanningPokerServiceTest.cs | 49,860 | C# |
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using Microsoft.Owin.Infrastructure;
namespace Microsoft.Owin
{
/// <summary>
///... | 37.535211 | 145 | 0.545779 | [
"Apache-2.0"
] | 15901213541/-OAuth2.0 | src/Microsoft.Owin/ResponseCookieCollection.cs | 5,332 | C# |
using Exadel.CrazyPrice.Common.Models;
using Exadel.CrazyPrice.Common.Models.Option;
using Exadel.CrazyPrice.WebApi.Extentions;
using FluentValidation;
namespace Exadel.CrazyPrice.WebApi.Validators
{
public class CompanyValidator : AbstractValidator<Company>
{
public CompanyValidator()
{
... | 33.976744 | 65 | 0.443532 | [
"BSD-3-Clause"
] | ssivazhalezau/exadel_discounts_be | src/Exadel.CrazyPrice/Exadel.CrazyPrice.WebApi/Validators/CompanyValidator.cs | 1,463 | C# |
using Neo.Network.P2P.Payloads;
using System;
namespace Neo.Wallets
{
public class BalanceEventArgs : EventArgs
{
public Transaction Transaction;
public UInt160[] RelatedAccounts;
public uint? Height;
public uint Time;
}
}
| 19.214286 | 45 | 0.66171 | [
"MIT"
] | NewEconoLab/neo-cli-node | neo/Wallets/BalanceEventArgs.cs | 271 | C# |
//**********************************************************************************
//* Copyright (C) 2007,2016 Hitachi Solutions,Ltd.
//**********************************************************************************
#region Apache License
//
// Licensed under the Apache License, Version 2.0 (the "License");
// y... | 37.210526 | 110 | 0.538331 | [
"Apache-2.0"
] | OpenTouryoProject/OpenTouryo | root/programs/CS/Frameworks/Infrastructure/Public/Win32/EventLogWin32.cs | 4,255 | 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("Cod... | 41.27027 | 84 | 0.761624 | [
"MIT"
] | CodeFactoryLLC/CodeFactoryDocs | src/CodeFactoryVisualStudio/CodeFactory.VisualStudio.Configuration/Properties/AssemblyInfo.cs | 1,530 | C# |
namespace Rebus.NewRelicApi
{
using Config;
using Pipeline;
using Pipeline.Receive;
public static class NewRelicTraceIncomingStepExtensions
{
public static void AddNewRelicIncomingStep(this OptionsConfigurer optionsConfiguration)
{
optionsConfiguration.Decorate<IPipelin... | 33.409091 | 95 | 0.638095 | [
"MIT"
] | P47Phoenix/Rebus.AwsSnsAndSqs | Rebus.NewRelic/NewRelicTraceIncomingStepExtensions.cs | 737 | C# |
using System.Threading.Tasks;
using Shouldly;
using Xunit;
namespace Homely.Storage.Blobs.Tests
{
public class DeleteAsyncTests : CommonTestSetup
{
[Fact]
public async Task GivenAnExistingBlob_DeleteAsync_DeletesTheBlob()
{
// Arrange.
var azureBlob =... | 27.615385 | 95 | 0.570102 | [
"MIT"
] | PureKrome/Homely.Storage.Blobs | tests/Homely.Storage.Blobs.Tests/DeleteAsyncTests.cs | 1,077 | C# |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using Mono.Cecil;
using System;
using System.Collections.Generic;
using System.Linq;
using Unity.CecilTools;
using Unity.CecilTools.Extensions;
namespace Unity.Ser... | 37.998366 | 213 | 0.61776 | [
"MIT"
] | K0lb3/TypeTreeGenerator | TypeTreeGenerator/Unity.SerializationLogic/UnitySerializationLogic.cs | 23,255 | C# |
using System;
using Newtonsoft.Json.Linq;
namespace CryptoExchange.Net.Sockets
{
/// <summary>
/// Socket subscription
/// </summary>
public class SocketSubscription
{
/// <summary>
/// Exception event
/// </summary>
public event Action<Exception>? Exception;
... | 33.385542 | 148 | 0.580296 | [
"MIT"
] | 1Konto/CryptoExchange.Net | CryptoExchange.Net/Sockets/SocketSubscription.cs | 2,773 | C# |
using System.Reflection;
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: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")... | 41.368421 | 84 | 0.777354 | [
"MIT"
] | TruthLiAng/ng_NetCore | src/ngDemo.Migrator/Properties/AssemblyInfo.cs | 788 | C# |
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Controls.Primitives;
namespace Swiddler.Behaviors
{
public static class TextBox
{
public static bool GetSelectAllText(System.Windows.Controls.TextBox textBox) => (bool)textBox.GetValue(SelectAllTextProperty);
... | 36.706294 | 147 | 0.560678 | [
"Apache-2.0"
] | ihonliu/Swiddler | Source/Swiddler/Behaviors/TextBox.cs | 5,251 | C# |
using CoreDocker.Api.GraphQl;
using CoreDocker.Dal.Models.Auth;
using CoreDocker.Shared.Models.Projects;
using HotChocolate.Types;
namespace CoreDocker.Api.Components.Projects
{
public class ProjectsMutationType : ObjectType<ProjectsMutation>
{
protected override void Configure(IObjectTypeDescriptor<P... | 32.791667 | 113 | 0.632783 | [
"Apache-2.0"
] | rolfwessels/CoreDocker | src/CoreDocker.Api/Components/Projects/ProjectsMutationType.cs | 1,576 | C# |
// Copyright 2016 Google Inc. 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 required by... | 34.888889 | 77 | 0.713376 | [
"Apache-2.0"
] | Nfactor26/access-bridge-explorer | src/AccessBridgeExplorer/Utils/Settings/IUserSettings.cs | 1,256 | C# |
//-----------------------------------------------------------------------------
// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
// See the top-level COPYRIGHT file for details.
// SPDX-License-Identifier: Apache-2.0
//-------------------------------------------------------------------------... | 42.80814 | 139 | 0.546109 | [
"Apache-2.0"
] | AlexlHer/framework | axlstar/Arcane.Axl/Arcane.Axl.Generator.CSharp/CSharpServiceGenerator.cs | 7,377 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using UIKit;
namespace IFSMobileApp.iOS
{
public class Application
{
// This is the main entry point of the application.
static void Main(string[] args)
{
// if you want to use a different... | 23.047619 | 91 | 0.634298 | [
"MIT"
] | miroshkin/ifs-mobile-app | IFSMobileApp/IFSMobileApp/IFSMobileApp.iOS/Main.cs | 486 | C# |
using System.Threading.Tasks;
namespace FoodOnline.Application.Common.Interfaces
{
public interface IIdentityService
{
Task<string> GetUsernameAsync(string userId);
}
} | 21.111111 | 53 | 0.736842 | [
"MIT"
] | panoukos41/FoodOnline | src/Application/Common/Interfaces/IIdentityService.cs | 192 | C# |
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
using Newtonsoft.Json;
using PetHouse.MVC.Models;
namespace PetHouse.MVC.Controllers
{
[CustomAuthorize]
publi... | 41.153846 | 198 | 0.592056 | [
"MIT"
] | dabakura/PetHouse | PetHouse/PetHouse.MVC/Controllers/AdoptanteController.cs | 4,286 | C# |
using UnityEngine;
namespace ShineEngine
{
/** 推送基类 */
[Hotfix(needChildren = false)]
public class BaseRequest:BaseData
{
/** 是否写过type */
private bool _maked=false;
/** 是否写过type */
private bool _writed=false;
/** 是否需要构造复制(默认复制,不必复制的地方自己设置) */
private bool _needMakeCopy=true;
/** 是否需要回收 */
priva... | 14.854626 | 68 | 0.632266 | [
"Apache-2.0"
] | hw233/home3 | core/client/game/src/shine/net/base/BaseRequest.cs | 3,848 | C# |
#if CSHARP_7_OR_LATER || (UNITY_2018_3_OR_NEWER && (NET_STANDARD_2_0 || NET_4_6))
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System.Collections.Generic;
using System.Threading;
using UnityEngine;
using UnityEngine.EventSystems;
namespace UniRx.Async.Trigg... | 25.595238 | 103 | 0.682791 | [
"MIT"
] | 317392507/QFramework | Assets/QFramework/Framework/0.Core/Plugins/UniRx/Async/Triggers/AsyncScrollTrigger.cs | 1,075 | C# |
/******************************************************************************
* Copyright (C) Leap Motion, Inc. 2011-2018. *
* Leap Motion proprietary and confidential. *
* *
... | 35.776119 | 121 | 0.585732 | [
"MIT"
] | LHuss/capstone | Virtual Modeller/Assets/ThirdParty/LeapMotion/Modules/GraphicRenderer/Scripts/Utility/LeapGraphicTagAttribute.cs | 2,397 | C# |
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Game.Online.Chat;
using osu.Game.Users;
using osuTK;
using System;
using System.Linq;
us... | 34.357955 | 138 | 0.531503 | [
"MIT"
] | AaqibAhamed/osu | osu.Game.Tests/Visual/Online/TestSceneStandAloneChatDisplay.cs | 5,872 | C# |
namespace Boilerplate.Common.Keycloak
{
public class KeycloakSettings
{
public string ClientId { get; set; }
public string ClientSecret { get; set; }
public string RealmName { get; set; }
public string KeycloakBaseUrl { get; set; }
public string TokenUrl { get; set; }
... | 31.823529 | 54 | 0.630314 | [
"MIT"
] | bssgroupgenova/Extensions | common/Boilerplate.Common/Keycloak/KeycloakSettings.cs | 543 | 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... | 29.034483 | 109 | 0.658551 | [
"Apache-2.0"
] | ChristopherButtars/aws-sdk-net | sdk/src/Services/SecurityHub/Generated/Model/DeleteInsightResponse.cs | 1,684 | C# |
global using System;
global using System.Collections;
global using System.Collections.Concurrent;
global using System.Collections.Generic;
global using System.Linq;
global using System.Reflection;
global using System.Text;
global using System.Threading;
global using System.Threading.Tasks;
global using Venflow;
| 28.545455 | 43 | 0.834395 | [
"Apache-2.0"
] | T0shik/Venflow | src/Venflow/Properties/GlobalUsings.cs | 316 | 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("02... | 38.72973 | 84 | 0.7418 | [
"MIT"
] | AneliaDoychinova/Programming-Fundamentals | 04. Data Types and Variables/Lab Data Types and Variables/02. Circle Area (Precision 12)/Properties/AssemblyInfo.cs | 1,436 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.