hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 588
values | lang stringclasses 305
values | max_stars_repo_path stringlengths 3 363 | max_stars_repo_name stringlengths 5 118 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 10 | max_stars_count float64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringdate 2015-01-01 00:00:35 2022-03-31 23:43:49 ⌀ | max_stars_repo_stars_event_max_datetime stringdate 2015-01-01 12:37:38 2022-03-31 23:59:52 ⌀ | max_issues_repo_path stringlengths 3 363 | max_issues_repo_name stringlengths 5 118 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 10 | max_issues_count float64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 363 | max_forks_repo_name stringlengths 5 135 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 10 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringdate 2015-01-01 00:01:02 2022-03-31 23:27:27 ⌀ | max_forks_repo_forks_event_max_datetime stringdate 2015-01-03 08:55:07 2022-03-31 23:59:24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1.13 1.04M | max_line_length int64 1 1.05M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ac9d24c19d4a9e687d39839bea6394794309836f | 4,501 | cs | C# | src/CSharpExtensions.Analyzers/InitializeMissingFieldsWithDefaultsCodeFix.cs | cezarypiatek/CSharpExtensions | f6bc234d27c076a21da9579be58ec999339d7bd4 | [
"MIT"
] | 88 | 2020-03-15T15:10:09.000Z | 2022-02-07T13:27:26.000Z | src/CSharpExtensions.Analyzers/InitializeMissingFieldsWithDefaultsCodeFix.cs | cezarypiatek/CSharpExtensions | f6bc234d27c076a21da9579be58ec999339d7bd4 | [
"MIT"
] | 31 | 2020-03-16T13:44:19.000Z | 2022-03-03T07:32:25.000Z | src/CSharpExtensions.Analyzers/InitializeMissingFieldsWithDefaultsCodeFix.cs | cezarypiatek/CSharpExtensions | f6bc234d27c076a21da9579be58ec999339d7bd4 | [
"MIT"
] | 10 | 2020-04-27T00:30:54.000Z | 2021-09-06T22:46:35.000Z | using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using System.Collections.Immutable;
using System.Composition;
using System.Linq;
using System.Threading;
using System... | 65.231884 | 242 | 0.722506 |
ac450a1bc5ecd6dc046f4371f5a0b3b6534bb37b | 1,088 | cs | C# | src/Extensions/Xpand.Extensions/TypeExtensions/InheritsFrom.cs | mbogaerts/DevExpress.XAF | 9a05de261c4f79da273559074f64117c7cdf1faa | [
"Apache-2.0"
] | null | null | null | src/Extensions/Xpand.Extensions/TypeExtensions/InheritsFrom.cs | mbogaerts/DevExpress.XAF | 9a05de261c4f79da273559074f64117c7cdf1faa | [
"Apache-2.0"
] | null | null | null | src/Extensions/Xpand.Extensions/TypeExtensions/InheritsFrom.cs | mbogaerts/DevExpress.XAF | 9a05de261c4f79da273559074f64117c7cdf1faa | [
"Apache-2.0"
] | null | null | null | using System;
using System.Linq;
namespace Xpand.Extensions.TypeExtensions{
public static partial class TypeExtensions{
public static bool InheritsFrom(this Type type, string typeName) => type
.FullName==typeName|| type.ParentTypes().Select(_ => _.FullName).Any(s => typeName.Equals(s,StringCompar... | 32.969697 | 131 | 0.528493 |
484e3233d173b5ed1ab5e348690dbc3458b6c009 | 11,142 | cs | C# | src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.cs | francedot/maui | 54fddea6fe9f7a0d2eb07540edc44f3f0f41bcf3 | [
"MIT"
] | 5 | 2021-08-05T16:26:26.000Z | 2022-01-08T08:35:50.000Z | src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.cs | francedot/maui | 54fddea6fe9f7a0d2eb07540edc44f3f0f41bcf3 | [
"MIT"
] | 2 | 2021-06-21T21:04:12.000Z | 2021-09-13T21:04:24.000Z | src/Core/tests/DeviceTests/Handlers/Editor/EditorHandlerTests.cs | francedot/maui | 54fddea6fe9f7a0d2eb07540edc44f3f0f41bcf3 | [
"MIT"
] | 2 | 2021-03-18T09:54:03.000Z | 2021-11-01T15:43:07.000Z | using System.Threading.Tasks;
using Microsoft.Maui.DeviceTests.Stubs;
using Microsoft.Maui.Graphics;
using Microsoft.Maui.Handlers;
using Xunit;
namespace Microsoft.Maui.DeviceTests
{
[Category(TestCategory.Editor)]
public partial class EditorHandlerTests : HandlerTestBase<EditorHandler, EditorStub>
{
[Fact(Disp... | 30.442623 | 126 | 0.722043 |
3e61c35b98d66ca0f68f8df19928b1c40cb4f6b5 | 245 | cs | C# | GraphLinqQL.Resolvers/Resolution/IFinalizer.cs | mdekrey/GraphLinQL | 8c1dc363df529433a76161273857b203a9e984dd | [
"MIT"
] | 2 | 2020-05-27T03:28:46.000Z | 2021-07-08T23:08:57.000Z | GraphLinqQL.Resolvers/Resolution/IFinalizer.cs | mdekrey/GraphLinQL | 8c1dc363df529433a76161273857b203a9e984dd | [
"MIT"
] | 17 | 2019-09-23T12:01:52.000Z | 2019-10-21T12:13:18.000Z | GraphLinqQL.Resolvers/Resolution/IFinalizer.cs | mdekrey/GraphLinqQL | 8c1dc363df529433a76161273857b203a9e984dd | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace GraphLinqQL.Resolution
{
public interface IFinalizer
{
public Task<object?> GetValue(FinalizerContext context);
}
}
| 18.846154 | 64 | 0.742857 |
1a2dcaca9311bd710e59ee440dce49687f66de5d | 1,022 | cs | C# | XboxConsole.Infrastructure/Configuration/UserPairingType.cs | Bhaskers-Blu-Org2/XboxConsole | d004d2ad5df3419c40b675c7ce4b9cfff65ce411 | [
"Apache-2.0"
] | 46 | 2019-08-23T00:32:44.000Z | 2022-03-09T17:29:56.000Z | XboxConsole.Infrastructure/Configuration/UserPairingType.cs | mnjstwins/XboxConsole | 6431f0c4440f6639d32b77d0879774c3c3d6c3f0 | [
"Apache-2.0"
] | 1 | 2021-11-06T22:16:42.000Z | 2021-11-06T22:16:42.000Z | XboxConsole.Infrastructure/Configuration/UserPairingType.cs | LaudateCorpus1/XboxConsole | 6dc3f6365cc19ad1a0df01e13697c5bf34dcb591 | [
"Apache-2.0"
] | 11 | 2019-05-07T11:38:54.000Z | 2021-11-06T22:16:20.000Z | //------------------------------------------------------------------------------
// <copyright file="UserPairingType.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespa... | 29.2 | 82 | 0.455969 |
1ab54f08716f034096ef48aad1dc18a74b678114 | 13,687 | cs | C# | SilveR/Services/RProcessorService.cs | robalexclark/SilveR | 959781746509e99d8c0db7c65d06e72b45546506 | [
"MIT"
] | 7 | 2019-04-27T10:26:46.000Z | 2022-02-04T09:57:34.000Z | SilveR/Services/RProcessorService.cs | robalexclark/SilveR | 959781746509e99d8c0db7c65d06e72b45546506 | [
"MIT"
] | 14 | 2019-12-28T07:09:11.000Z | 2022-03-28T19:33:50.000Z | SilveR/Services/RProcessorService.cs | robalexclark/SilveR | 959781746509e99d8c0db7c65d06e72b45546506 | [
"MIT"
] | 4 | 2019-03-05T05:52:24.000Z | 2020-11-18T07:52:04.000Z | using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using SilveR.Helpers;
using SilveR.Models;
using SilveR.StatsModels;
using System;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;... | 48.535461 | 330 | 0.541901 |
208c71e00b799516919e7ec5339b03f2b714d473 | 980 | cs | C# | Datas/GenericRepository.cs | chevap9414/Quiz | 34804a33fca76685f68185985c8b77598fa0e47b | [
"MIT"
] | null | null | null | Datas/GenericRepository.cs | chevap9414/Quiz | 34804a33fca76685f68185985c8b77598fa0e47b | [
"MIT"
] | null | null | null | Datas/GenericRepository.cs | chevap9414/Quiz | 34804a33fca76685f68185985c8b77598fa0e47b | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace QuizDemo.Datas
{
public class GenericRepository<T> : IGenericRepository<T> where T : class
{
protected readonly ApplicationSqlContext context;
public GenericRepository(ApplicationSqlConte... | 23.902439 | 77 | 0.573469 |
209bc2fa60c93d380de60e9c72023104590c337e | 2,236 | cs | C# | sdk/storage/Azure.ResourceManager.Storage/src/Generated/Models/ManagementPolicyBaseBlob.cs | gjy5885/azure-sdk-for-net | 5491b723c94176509a91c340485f10009189ac72 | [
"MIT"
] | 3,268 | 2015-01-08T04:21:52.000Z | 2022-03-31T11:10:48.000Z | sdk/storage/Azure.ResourceManager.Storage/src/Generated/Models/ManagementPolicyBaseBlob.cs | gjy5885/azure-sdk-for-net | 5491b723c94176509a91c340485f10009189ac72 | [
"MIT"
] | 18,748 | 2015-01-06T00:12:22.000Z | 2022-03-31T23:55:50.000Z | sdk/storage/Azure.ResourceManager.Storage/src/Generated/Models/ManagementPolicyBaseBlob.cs | gjy5885/azure-sdk-for-net | 5491b723c94176509a91c340485f10009189ac72 | [
"MIT"
] | 4,179 | 2015-01-07T20:13:22.000Z | 2022-03-31T09:09:02.000Z | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
namespace Azure.ResourceManager.Storage.Models
{
/// <summary> Management policy action for base blob. </summary>
public partial class ManagementPolicyBaseBlob
{
... | 54.536585 | 213 | 0.705725 |
1f1437c658f8b8ba64d3a1893a2e0cffbd547fff | 1,473 | cs | C# | DataAnnotatedModelValidations/ValidatorTypeInterceptor.cs | fiakkasa/DataAnnotatedModelValidations | cbb21224b04d9a5e4b2af5ce1bfff06d0521a5e1 | [
"MIT"
] | 18 | 2021-03-10T20:15:41.000Z | 2021-12-23T22:23:00.000Z | DataAnnotatedModelValidations/ValidatorTypeInterceptor.cs | fiakkasa/DataAnnotatedModelValidations | cbb21224b04d9a5e4b2af5ce1bfff06d0521a5e1 | [
"MIT"
] | 4 | 2021-09-20T17:47:49.000Z | 2022-01-12T17:00:22.000Z | DataAnnotatedModelValidations/ValidatorTypeInterceptor.cs | fiakkasa/DataAnnotatedModelValidations | cbb21224b04d9a5e4b2af5ce1bfff06d0521a5e1 | [
"MIT"
] | null | null | null | using HotChocolate.Configuration;
using HotChocolate.Types.Descriptors.Definitions;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
namespace DataAnnotatedModelValidations
{
public class ValidatorTypeInterceptor : TypeInterceptor
{
public override void... | 40.916667 | 161 | 0.61575 |
96e5730d3f8986b94928358ea4158d84b406980e | 6,864 | cs | C# | SlicerTests/Slicer/Clipper/ClipTests.cs | guuskuiper/Slicer | 0d07ea36382c32d0e76f9699181a653afde1e150 | [
"MIT"
] | null | null | null | SlicerTests/Slicer/Clipper/ClipTests.cs | guuskuiper/Slicer | 0d07ea36382c32d0e76f9699181a653afde1e150 | [
"MIT"
] | null | null | null | SlicerTests/Slicer/Clipper/ClipTests.cs | guuskuiper/Slicer | 0d07ea36382c32d0e76f9699181a653afde1e150 | [
"MIT"
] | null | null | null | using ClipperLib;
using FluentAssertions;
using Slicer.Models;
using Slicer.Slicer.Clipper;
using Slicer.Slicer.PolygonOperations;
using System.Collections.Generic;
using Xunit;
namespace SlicerTests.Slicer.Clipper
{
public class ClipTests
{
[Fact()]
public void DifferenceTest()
{
... | 33.647059 | 97 | 0.528846 |
0e9bb9f5596c5af136dcbbdf9a15b4da13adf864 | 578 | cs | C# | src/FubuMVC.OwinHost/OwinServiceArguments.cs | ketiko/fubumvc | 5074cb71255bca52b65217c8b74558ed0180946b | [
"Apache-2.0"
] | null | null | null | src/FubuMVC.OwinHost/OwinServiceArguments.cs | ketiko/fubumvc | 5074cb71255bca52b65217c8b74558ed0180946b | [
"Apache-2.0"
] | null | null | null | src/FubuMVC.OwinHost/OwinServiceArguments.cs | ketiko/fubumvc | 5074cb71255bca52b65217c8b74558ed0180946b | [
"Apache-2.0"
] | null | null | null | using System.Web.Routing;
using FubuCore.Binding;
using FubuMVC.Core.Http;
namespace FubuMVC.OwinHost
{
public class OwinServiceArguments : ServiceArguments
{
public OwinServiceArguments(RouteData routeData, OwinRequestBody body, Response response)
{
With<IRequestData>(new... | 32.111111 | 98 | 0.678201 |
9cd45c4b78e030baff2c67580dc11f34cfc4a54b | 2,133 | cs | C# | TesterCall/Services/Generation/Extensions/CatchAllTypeModelExtensions.cs | FinnReilly/TesterCall | 2b07798f9704c9a37978aafd89be3301d726cf31 | [
"MIT"
] | null | null | null | TesterCall/Services/Generation/Extensions/CatchAllTypeModelExtensions.cs | FinnReilly/TesterCall | 2b07798f9704c9a37978aafd89be3301d726cf31 | [
"MIT"
] | null | null | null | TesterCall/Services/Generation/Extensions/CatchAllTypeModelExtensions.cs | FinnReilly/TesterCall | 2b07798f9704c9a37978aafd89be3301d726cf31 | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using TesterCall.Services.Generation.Interface;
namespace TesterCall.Services.Generation.JsonExtraction.Models.Extensions
{
public static class CatchAllTypeModelExtensions
{
private static List<string> _primitiveType... | 27 | 75 | 0.526489 |
4ec5712f919865508c047f3ad5dbcd7b8f3307f5 | 919 | cs | C# | test/ReflectionAccessor.Tests/Models/MailingAddress.cs | loresoft/ReflectionAccessor | 7602daecc0b3a7d98005a1037b2b5ad31bf5e474 | [
"Apache-2.0"
] | 3 | 2016-09-19T07:44:01.000Z | 2019-06-03T16:20:07.000Z | test/ReflectionAccessor.Tests/Models/MailingAddress.cs | loresoft/ReflectionAccessor | 7602daecc0b3a7d98005a1037b2b5ad31bf5e474 | [
"Apache-2.0"
] | null | null | null | test/ReflectionAccessor.Tests/Models/MailingAddress.cs | loresoft/ReflectionAccessor | 7602daecc0b3a7d98005a1037b2b5ad31bf5e474 | [
"Apache-2.0"
] | 3 | 2017-08-14T03:14:03.000Z | 2021-07-20T07:47:46.000Z | using System;
using System.Text;
namespace ReflectionAccessor.Tests.Models
{
public class MailingAddress
{
public ContactType Type { get; set; }
public string Address1 { get; set; }
public string Address2 { get; set; }
public string Address3 { get; set; }
public string ... | 23.564103 | 45 | 0.471164 |
dd8bd5e925900f0408231376194f284a390e98ed | 2,396 | cs | C# | Insight/App.xaml.cs | ATrefzer/Insight | ceb4f46bcaece1851ebf6a65f99a7c360cccdf61 | [
"MIT"
] | 8 | 2018-02-14T17:38:37.000Z | 2021-02-09T11:41:10.000Z | Insight/App.xaml.cs | ATrefzer/Insight | ceb4f46bcaece1851ebf6a65f99a7c360cccdf61 | [
"MIT"
] | 11 | 2018-03-26T15:14:19.000Z | 2019-05-31T11:35:56.000Z | Insight/App.xaml.cs | ATrefzer/Insight | ceb4f46bcaece1851ebf6a65f99a7c360cccdf61 | [
"MIT"
] | 3 | 2018-02-20T12:55:14.000Z | 2021-02-09T09:03:36.000Z | using System.IO;
using System.Windows;
using Insight.Metrics;
using Insight.Properties;
using Insight.Shared;
namespace Insight
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App
{
private void App_OnExit(object sender, ExitEventArgs e)
{
... | 36.861538 | 116 | 0.665275 |
fb6610eeb0362b0cc5d484ef20589176c3407977 | 1,369 | cs | C# | sources/Interop/Windows/Windows/um/MsHTML/styleGridRowAlign.cs | JeremyKuhne/terrafx.interop.windows | 337dab04103688027ccfbee0180568de552283de | [
"MIT"
] | null | null | null | sources/Interop/Windows/Windows/um/MsHTML/styleGridRowAlign.cs | JeremyKuhne/terrafx.interop.windows | 337dab04103688027ccfbee0180568de552283de | [
"MIT"
] | null | null | null | sources/Interop/Windows/Windows/um/MsHTML/styleGridRowAlign.cs | JeremyKuhne/terrafx.interop.windows | 337dab04103688027ccfbee0180568de552283de | [
"MIT"
] | null | null | null | // Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
// Ported from um/MsHTML.h in the Windows SDK for Windows 10.0.20348.0
// Original source is Copyright © Microsoft. All rights reserved.
namespace TerraFX.Interop.Windows;
... | 47.206897 | 145 | 0.739226 |
fbf99c78339a78c06a06b12279fb76c7988d040f | 1,960 | cs | C# | src/core/Import/Category.cs | dimenics/ds-sdk | fe08a911d13c2ce29b611641224ab2fb4d60037f | [
"MIT"
] | null | null | null | src/core/Import/Category.cs | dimenics/ds-sdk | fe08a911d13c2ce29b611641224ab2fb4d60037f | [
"MIT"
] | 10 | 2021-01-15T13:02:57.000Z | 2021-05-24T08:02:56.000Z | src/core/Import/Category.cs | dimenics/ds-sdk | fe08a911d13c2ce29b611641224ab2fb4d60037f | [
"MIT"
] | 2 | 2021-02-13T18:32:37.000Z | 2021-03-04T10:36:11.000Z | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Dime.Scheduler.Sdk.Import
{
public class Category : IImportRequestable, IValidatableImportRequest<Category>
{
public Category()
{
}
public Category(string name, string color)... | 38.431373 | 138 | 0.670408 |
147a1d46635d54ecddca3145ef57cf57577d2986 | 4,294 | cshtml | C# | Online Exam Portal/OEP.Web/Views/Shared/_ExternalLayout.cshtml | abdulrahim-dev/Online-Exam-Portal | df0ef794197e286148944cdc5065b96dd240ff78 | [
"MIT"
] | null | null | null | Online Exam Portal/OEP.Web/Views/Shared/_ExternalLayout.cshtml | abdulrahim-dev/Online-Exam-Portal | df0ef794197e286148944cdc5065b96dd240ff78 | [
"MIT"
] | 1 | 2019-08-03T12:20:19.000Z | 2019-08-03T12:20:19.000Z | Online Exam Portal/OEP.Web/Views/Shared/_ExternalLayout.cshtml | abdulrahim-dev/Online-Exam-Portal | df0ef794197e286148944cdc5065b96dd240ff78 | [
"MIT"
] | 2 | 2020-08-08T01:54:53.000Z | 2021-12-27T05:35:32.000Z |
@{
Layout = null;
if (Request.IsAuthenticated)
{
Response.Redirect(Url.RouteUrl(new { controller = "Home", action = "Index" }));
}
}
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content... | 49.930233 | 190 | 0.608291 |
14adcd5cf0a77292e2df924a581fcb87d56b4821 | 1,265 | cs | C# | src/SocialNetwork.Web/Controllers/NewsFeedController.cs | andrew-kulikov/otus-architect | 22a5f3d10e7e85b705ab1d7406018bd51b06c01c | [
"MIT"
] | null | null | null | src/SocialNetwork.Web/Controllers/NewsFeedController.cs | andrew-kulikov/otus-architect | 22a5f3d10e7e85b705ab1d7406018bd51b06c01c | [
"MIT"
] | null | null | null | src/SocialNetwork.Web/Controllers/NewsFeedController.cs | andrew-kulikov/otus-architect | 22a5f3d10e7e85b705ab1d7406018bd51b06c01c | [
"MIT"
] | null | null | null | using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using SocialNetwork.Core.Services;
using SocialNetwork.Core.Utils;
using SocialNetwork.Web.Utils;
using SocialNetwork.Web.ViewModels;
namespace SocialNetwork.Web.Controllers
{
[Route("feed")]
[Authorize]
... | 28.75 | 113 | 0.664032 |
d03797e6761f490ad37582410065e8a197e60612 | 125 | cs | C# | Examples/08_Storage_Lic/WeatherWidget/Events/WeatherRequest.cs | valkush/DomainWorkflows | 38c7da0c02bb630ce023cc97ea50eb80ec0967a4 | [
"MIT"
] | 1 | 2020-09-28T04:14:44.000Z | 2020-09-28T04:14:44.000Z | Examples/08_Storage_Lic/WeatherWidget/Events/WeatherRequest.cs | valkush/DomainWorkflows | 38c7da0c02bb630ce023cc97ea50eb80ec0967a4 | [
"MIT"
] | null | null | null | Examples/08_Storage_Lic/WeatherWidget/Events/WeatherRequest.cs | valkush/DomainWorkflows | 38c7da0c02bb630ce023cc97ea50eb80ec0967a4 | [
"MIT"
] | null | null | null | namespace WeatherWidget.Events
{
public class WeatherRequest
{
public string RegionId { get; set; }
}
}
| 15.625 | 44 | 0.632 |
2164fe51cb60adb0a6b5e88024c596fc98a80c76 | 3,831 | cs | C# | src/HallOfBeorn/Services/LotR/Octgn/Sets/Haradrim/TheCrossingsOfPorosSet.cs | danpoage/hall-of-beorn | 8fbe342da510e93cce5a35e7f06d5bc92cbccd26 | [
"MIT"
] | 5 | 2015-12-28T11:15:39.000Z | 2018-09-19T14:32:26.000Z | src/HallOfBeorn/Services/LotR/Octgn/Sets/Haradrim/TheCrossingsOfPorosSet.cs | danpoage/hall-of-beorn | 8fbe342da510e93cce5a35e7f06d5bc92cbccd26 | [
"MIT"
] | 1 | 2017-10-05T14:51:37.000Z | 2017-10-05T14:51:37.000Z | src/HallOfBeorn/Services/LotR/Octgn/Sets/Haradrim/TheCrossingsOfPorosSet.cs | danpoage/hall-of-beorn | 8fbe342da510e93cce5a35e7f06d5bc92cbccd26 | [
"MIT"
] | 3 | 2016-03-11T01:23:13.000Z | 2017-10-05T12:05:31.000Z | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace HallOfBeorn.Services.LotR.Octgn.Sets.Haradrim
{
public class TheCrossingsOfPorosSet
: OctgnSet
{
public TheCrossingsOfPorosSet()
: base("4ef9e6f4-7e76-490a-b5ee-7460e0453f92", ... | 83.282609 | 126 | 0.702428 |
2168812486ac7af0fe730c45bf7a54a561b2fee7 | 131 | cshtml | C# | Views/Home/Decompile.cshtml | z1c0/ilspyaas | 2119c241c56371a8b488009f1bdb3cefbcc91248 | [
"MIT"
] | 4 | 2018-04-19T18:03:59.000Z | 2020-05-05T05:35:57.000Z | Views/Home/Decompile.cshtml | z1c0/ilspyaas | 2119c241c56371a8b488009f1bdb3cefbcc91248 | [
"MIT"
] | null | null | null | Views/Home/Decompile.cshtml | z1c0/ilspyaas | 2119c241c56371a8b488009f1bdb3cefbcc91248 | [
"MIT"
] | null | null | null | @model ResultViewModel
@{
ViewData["Title"] = "Decompile";
}
<pre><code class="language-csharp">@Model.Code</code></pre> | 21.833333 | 59 | 0.641221 |
7b2552015623c8bcdca249248a88ef459451789e | 7,813 | cs | C# | DS4Windows/DS4Forms/ViewModels/SpecialActionsListViewModel.cs | FakeMichau/DS4Windows | 2663d6d12e0ce6f09a3c7ffc5f4112cd52218967 | [
"MIT"
] | 5,003 | 2017-03-21T09:02:57.000Z | 2022-03-31T12:56:00.000Z | DS4Windows/DS4Forms/ViewModels/SpecialActionsListViewModel.cs | FakeMichau/DS4Windows | 2663d6d12e0ce6f09a3c7ffc5f4112cd52218967 | [
"MIT"
] | 2,294 | 2017-03-14T22:11:49.000Z | 2021-08-14T22:42:18.000Z | DS4Windows/DS4Forms/ViewModels/SpecialActionsListViewModel.cs | FakeMichau/DS4Windows | 2663d6d12e0ce6f09a3c7ffc5f4112cd52218967 | [
"MIT"
] | 855 | 2017-03-28T21:36:27.000Z | 2022-03-30T08:29:01.000Z | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Input;
using DS4Windows;
namespace DS4WinWPF.DS4Forms.ViewModels
{
public class SpecialActionsListViewModel
{
... | 34.117904 | 159 | 0.566492 |
b431bc467f9b984f851a3bebe0e8bb1743038a89 | 7,858 | cs | C# | src/EditorFeatures/CSharpTest2/Recommendations/CaseKeywordRecommenderTests.cs | belav/roslyn | 01124c8bbeacb560271261e97c10317114836299 | [
"MIT"
] | null | null | null | src/EditorFeatures/CSharpTest2/Recommendations/CaseKeywordRecommenderTests.cs | belav/roslyn | 01124c8bbeacb560271261e97c10317114836299 | [
"MIT"
] | null | null | null | src/EditorFeatures/CSharpTest2/Recommendations/CaseKeywordRecommenderTests.cs | belav/roslyn | 01124c8bbeacb560271261e97c10317114836299 | [
"MIT"
] | null | null | null | // 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.
#nullable disable
using System.Threading.Tasks;
using Microsoft.CodeAnalysis.Test.Utilities;
using Xunit;
namespa... | 27.284722 | 81 | 0.521634 |
e01bab48c4b7601bd5cad1c804161d9e031a66eb | 1,151 | cs | C# | HealthCare020.Services/Interfaces/IKorisnikService.cs | fahirmdz/HealthCare020 | 6202f3914d448fba1d6290e0893152042bd99a81 | [
"MIT"
] | null | null | null | HealthCare020.Services/Interfaces/IKorisnikService.cs | fahirmdz/HealthCare020 | 6202f3914d448fba1d6290e0893152042bd99a81 | [
"MIT"
] | null | null | null | HealthCare020.Services/Interfaces/IKorisnikService.cs | fahirmdz/HealthCare020 | 6202f3914d448fba1d6290e0893152042bd99a81 | [
"MIT"
] | 2 | 2020-11-05T19:37:37.000Z | 2021-10-02T00:06:28.000Z | using HealthCare020.Core.Entities;
using HealthCare020.Core.Models;
using HealthCare020.Core.Request;
using HealthCare020.Core.ResourceParameters;
using HealthCare020.Core.ServiceModels;
using System;
using System.Threading.Tasks;
namespace HealthCare020.Services.Interfaces
{
public interface IKorisnikService : I... | 39.689655 | 200 | 0.793223 |
a783a80acc8f48b5751aae7cbad232ec42e5fe2c | 1,687 | cs | C# | pokemon/pokemon/Program.cs | danieltenev97/Programming-Fundamentals-Homeworks | 60d6d7a5b3e2729312397d93d2b5ee0bb150e983 | [
"MIT"
] | null | null | null | pokemon/pokemon/Program.cs | danieltenev97/Programming-Fundamentals-Homeworks | 60d6d7a5b3e2729312397d93d2b5ee0bb150e983 | [
"MIT"
] | null | null | null | pokemon/pokemon/Program.cs | danieltenev97/Programming-Fundamentals-Homeworks | 60d6d7a5b3e2729312397d93d2b5ee0bb150e983 | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq;
namespace pokemon
{
class Program
{
static void Main(string[] args)
{
List<int> numbers = Console.ReadLine().Split(' ').Select(int.Parse).ToList();
int sum = 0;
while(true)
{
... | 26.359375 | 89 | 0.375222 |
898b937c24ddb338c221958c841e7a9e0e28703e | 4,522 | cs | C# | Test/DurableTask.AzureStorage.Tests/TestOrchestrationHost.cs | gfrancomsft/durabletask | 520f8f16e5b65d1f565527cc8fc7da6fda9c823f | [
"Apache-2.0"
] | null | null | null | Test/DurableTask.AzureStorage.Tests/TestOrchestrationHost.cs | gfrancomsft/durabletask | 520f8f16e5b65d1f565527cc8fc7da6fda9c823f | [
"Apache-2.0"
] | null | null | null | Test/DurableTask.AzureStorage.Tests/TestOrchestrationHost.cs | gfrancomsft/durabletask | 520f8f16e5b65d1f565527cc8fc7da6fda9c823f | [
"Apache-2.0"
] | null | null | null | // ----------------------------------------------------------------------------------
// Copyright Microsoft Corporation
// 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.... | 42.660377 | 115 | 0.628704 |
d8965dc25a1a0517763961fc8683f54580a11d73 | 3,912 | cs | C# | GF.Unity.Client/Assets/Plugins/GF.Unity.Common/Math/EbAngleCursor.cs | cyecp/GF.Unity | a216de15e073b7da68e00026aafb4b9b31c3ad26 | [
"MIT"
] | 3 | 2020-10-27T15:32:51.000Z | 2021-06-23T11:04:07.000Z | GF.Unity.Client/Assets/Plugins/GF.Unity.Common/Math/EbAngleCursor.cs | cyecp/GF.Unity | a216de15e073b7da68e00026aafb4b9b31c3ad26 | [
"MIT"
] | null | null | null | GF.Unity.Client/Assets/Plugins/GF.Unity.Common/Math/EbAngleCursor.cs | cyecp/GF.Unity | a216de15e073b7da68e00026aafb4b9b31c3ad26 | [
"MIT"
] | 1 | 2017-03-18T14:50:59.000Z | 2017-03-18T14:50:59.000Z | using System;
namespace GF.Unity.Common
{
public class EbAngleCursor1
{
//---------------------------------------------------------------------
float _curDiretion;
float _rotSpd = 10.0f;
public float Direction { get { return _curDiretion; } set { _curDiretion = value; EbAngle.N... | 35.563636 | 130 | 0.449898 |
915286875b8f6c88bdbd995b7043e4c4ef732a73 | 339 | cs | C# | PrimitiveDataTypesAndVariables/05.BooleanVariable/BooleanVariable.cs | danisio/CSharp1-Homeworks | e09d1b71e537c7347addef5eccca803cdab2aa92 | [
"MIT"
] | null | null | null | PrimitiveDataTypesAndVariables/05.BooleanVariable/BooleanVariable.cs | danisio/CSharp1-Homeworks | e09d1b71e537c7347addef5eccca803cdab2aa92 | [
"MIT"
] | null | null | null | PrimitiveDataTypesAndVariables/05.BooleanVariable/BooleanVariable.cs | danisio/CSharp1-Homeworks | e09d1b71e537c7347addef5eccca803cdab2aa92 | [
"MIT"
] | null | null | null | /*Problem 5. Boolean Variable
Declare a Boolean variable called `isFemale` and assign an appropriate value corresponding to your gender.
Print it on the console.
*/
using System;
class BooleanVariable
{
static void Main()
{
bool isFemale = true;
Console.WriteLine("My gender is female: {0}", ... | 21.1875 | 106 | 0.687316 |
db29774e13146c75a2613a8c9f227ba8c0430aa9 | 1,983 | cs | C# | src/Framework.Projection.Environment/Lamda/ProjectionSource/AttributeSource/ProjectionCustomPropertyAttributeSource.cs | Luxoft/BSSFramework | e060a42db5b1a96cc915b30c09e4e5751543e8af | [
"MIT"
] | 18 | 2021-12-22T09:28:06.000Z | 2022-01-20T19:48:41.000Z | src/Framework.Projection.Environment/Lamda/ProjectionSource/AttributeSource/ProjectionCustomPropertyAttributeSource.cs | Luxoft/BSSFramework | e060a42db5b1a96cc915b30c09e4e5751543e8af | [
"MIT"
] | 44 | 2021-12-28T08:36:17.000Z | 2022-03-22T09:17:28.000Z | src/Framework.Projection.Environment/Lamda/ProjectionSource/AttributeSource/ProjectionCustomPropertyAttributeSource.cs | Luxoft/BSSFramework | e060a42db5b1a96cc915b30c09e4e5751543e8af | [
"MIT"
] | 2 | 2021-12-23T15:30:01.000Z | 2021-12-28T01:26:36.000Z | using System;
using System.Collections.Generic;
using System.Linq;
using Framework.DomainDriven;
using JetBrains.Annotations;
namespace Framework.Projection.Lambda
{
/// <summary>
/// Источник атрибутов для кастомного свойства проекции
/// </summary>
public class ProjectionCustomPropert... | 31.983871 | 168 | 0.609178 |
db8a11570c8cb54fb019e6cf008b94f505de5acf | 18 | cshtml | C# | samples/AspNetSimple/Pages/NoDirectChildPages/AnotherEmptyLayer/NestedPages/Index.cshtml | MABrunner/R4MVC | 7abf7a494a675c43649a2ae8a8aaa877e559354c | [
"Apache-2.0"
] | null | null | null | samples/AspNetSimple/Pages/NoDirectChildPages/AnotherEmptyLayer/NestedPages/Index.cshtml | MABrunner/R4MVC | 7abf7a494a675c43649a2ae8a8aaa877e559354c | [
"Apache-2.0"
] | null | null | null | samples/AspNetSimple/Pages/NoDirectChildPages/AnotherEmptyLayer/NestedPages/Index.cshtml | MABrunner/R4MVC | 7abf7a494a675c43649a2ae8a8aaa877e559354c | [
"Apache-2.0"
] | null | null | null | @page
Hello world | 9 | 11 | 0.777778 |
5822f814fc5b8c9d5c462a9c6a5987b133f992fb | 1,517 | cs | C# | DiagnosticsExtension/Controllers/SessionErrorsController.cs | isabella232/DaaS | 18a75d7a2dc4094cfb0dbbea2ffffc1ea61b5046 | [
"MIT"
] | null | null | null | DiagnosticsExtension/Controllers/SessionErrorsController.cs | isabella232/DaaS | 18a75d7a2dc4094cfb0dbbea2ffffc1ea61b5046 | [
"MIT"
] | 1 | 2021-02-24T00:01:53.000Z | 2021-02-24T00:01:53.000Z | DiagnosticsExtension/Controllers/SessionErrorsController.cs | isabella232/DaaS | 18a75d7a2dc4094cfb0dbbea2ffffc1ea61b5046 | [
"MIT"
] | null | null | null | //-----------------------------------------------------------------------
// <copyright file="SessionErrorsController.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
// </copyrig... | 39.921053 | 124 | 0.636124 |
6224d703999d72cf66a18e0129d2fb8d411e63f5 | 1,956 | cs | C# | Services/Source/BloomSales.Services.Proxies/LocationClient.cs | rahmanarshizadeh/BloomSales | eaec5326ca9e4ac1e4ac46b0f7f507ed12664a57 | [
"MIT"
] | null | null | null | Services/Source/BloomSales.Services.Proxies/LocationClient.cs | rahmanarshizadeh/BloomSales | eaec5326ca9e4ac1e4ac46b0f7f507ed12664a57 | [
"MIT"
] | 5 | 2016-06-09T21:07:01.000Z | 2016-09-16T03:36:43.000Z | Services/Source/BloomSales.Services.Proxies/LocationClient.cs | rahmanarshizadeh/BloomSales | eaec5326ca9e4ac1e4ac46b0f7f507ed12664a57 | [
"MIT"
] | 1 | 2020-07-30T13:18:21.000Z | 2020-07-30T13:18:21.000Z | using BloomSales.Data.Entities;
using BloomSales.Services.Contracts;
using System;
using System.Collections.Generic;
using System.ServiceModel;
namespace BloomSales.Services.Proxies
{
public class LocationClient : ClientBase<ILocationService>, ILocationService
{
public IEnumerable<Province> GetAllProv... | 27.549296 | 106 | 0.637014 |
023c5b430815350655f9b07b1441cf4e110cc013 | 120 | cs | C# | linq/labs/LINQ_TPL/before/Workplace/Workplace/Tree.cs | BradKnowles/classes | 142d33064be54e9b590540fd725eb914ea6a224d | [
"CC-BY-4.0"
] | 138 | 2018-11-09T11:15:18.000Z | 2021-08-18T10:29:14.000Z | linq/labs/LINQ_TPL/before/Workplace/Workplace/Tree.cs | BradKnowles/classes | 142d33064be54e9b590540fd725eb914ea6a224d | [
"CC-BY-4.0"
] | null | null | null | linq/labs/LINQ_TPL/before/Workplace/Workplace/Tree.cs | BradKnowles/classes | 142d33064be54e9b590540fd725eb914ea6a224d | [
"CC-BY-4.0"
] | 25 | 2019-02-12T15:24:02.000Z | 2020-09-25T21:06:36.000Z | namespace Workplace
{
public class Tree<T>
{
public T Data;
public Tree<T> Left, Right;
}
} | 15 | 35 | 0.541667 |
bb762a35b41825ff38209f3fdb683ed16bea2041 | 9,108 | cs | C# | FoxTunes.UI.Windows/Utilities/ImageLoader.cs | Raimusoft/FoxTunes | 86802c72c43539b0ea9048be94a59c65d6810f91 | [
"MIT"
] | 22 | 2021-04-25T21:29:08.000Z | 2022-03-13T04:43:20.000Z | FoxTunes.UI.Windows/Utilities/ImageLoader.cs | Raimusoft/FoxTunes | 86802c72c43539b0ea9048be94a59c65d6810f91 | [
"MIT"
] | 10 | 2021-04-08T09:09:51.000Z | 2022-01-07T18:55:09.000Z | FoxTunes.UI.Windows/Utilities/ImageLoader.cs | Raimusoft/FoxTunes | 86802c72c43539b0ea9048be94a59c65d6810f91 | [
"MIT"
] | 1 | 2021-04-25T21:29:11.000Z | 2021-04-25T21:29:11.000Z | using FoxTunes.Interfaces;
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using System.Windows.Media;
using System.Windows.Media.Imaging;
namespace FoxTunes
{
[ComponentDependency(Slot = ComponentSlots.UserInterface)]
public class ImageLoader : Standa... | 35.439689 | 160 | 0.446531 |
cdd7a8fe352fb48f136dded0c74957b9bc73b722 | 6,291 | cs | C# | src/Lykke.Job.History/Workflow/ExecutionProcessing/BaseBatchQueueReader.cs | LykkeCity/Lykke.Service.History | b60e267b804622e728e39e6e0e5e9e00244d1ee1 | [
"MIT"
] | null | null | null | src/Lykke.Job.History/Workflow/ExecutionProcessing/BaseBatchQueueReader.cs | LykkeCity/Lykke.Service.History | b60e267b804622e728e39e6e0e5e9e00244d1ee1 | [
"MIT"
] | null | null | null | src/Lykke.Job.History/Workflow/ExecutionProcessing/BaseBatchQueueReader.cs | LykkeCity/Lykke.Service.History | b60e267b804622e728e39e6e0e5e9e00244d1ee1 | [
"MIT"
] | 3 | 2021-01-11T12:20:58.000Z | 2021-03-09T05:56:06.000Z | using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Common.Log;
using Lykke.Common.Log;
using RabbitMQ.Client;
using RabbitMQ.Client.Events;
namespace Lykke.Job.History.Workflow.ExecutionProcessing
{
public abstract class... | 33.110526 | 141 | 0.515816 |
cdf5e620b4ae8f29a34f3f6778c89058780a541b | 1,419 | cs | C# | Persistence/Realm/Repositories/BudgetCategoryRepository.cs | Yeah69/BFF | 543cb639269a5ae16a3257a73224d2c048fadc4d | [
"MIT"
] | 5 | 2018-12-21T09:55:54.000Z | 2021-01-30T09:35:18.000Z | Persistence/Realm/Repositories/BudgetCategoryRepository.cs | Yeah69/BFF | 543cb639269a5ae16a3257a73224d2c048fadc4d | [
"MIT"
] | null | null | null | Persistence/Realm/Repositories/BudgetCategoryRepository.cs | Yeah69/BFF | 543cb639269a5ae16a3257a73224d2c048fadc4d | [
"MIT"
] | 1 | 2021-11-05T13:59:16.000Z | 2021-11-05T13:59:16.000Z | using System;
using System.Threading.Tasks;
using BFF.Model;
using BFF.Model.Models;
using BFF.Model.Repositories;
using BFF.Persistence.Realm.ORM.Interfaces;
using BFF.Persistence.Realm.Repositories.ModelRepositories;
using MrMeeseeks.Extensions;
namespace BFF.Persistence.Realm.Repositories
{
internal class Real... | 33 | 83 | 0.694151 |
e3197864745d42a13851a314fafe3f5d23bee055 | 720 | cs | C# | week04/Assets/scripts/TenPrint.cs | radiatoryang/nyupoly_gamedev1_spring2014 | aa69ec28ebd2deaf402ff8ca0d02a765e91d32a4 | [
"MIT"
] | 2 | 2015-01-19T02:57:08.000Z | 2021-07-14T00:30:42.000Z | week04/Assets/scripts/TenPrint.cs | radiatoryang/nyupoly_gamedev1_spring2014 | aa69ec28ebd2deaf402ff8ca0d02a765e91d32a4 | [
"MIT"
] | null | null | null | week04/Assets/scripts/TenPrint.cs | radiatoryang/nyupoly_gamedev1_spring2014 | aa69ec28ebd2deaf402ff8ca0d02a765e91d32a4 | [
"MIT"
] | null | null | null | using UnityEngine;
using System.Collections;
public class TenPrint : MonoBehaviour {
int counter = 0;
// Update is called once per frame
void Update () {
// CORE OF TENPRINT:
// 1) generate a random number ( Random.Range() )
int randomNumber = Random.Range (0, 10);
// 2) if that random number is ___,... | 20 | 72 | 0.604167 |
5c4b71ac6bfd35db83b1168c2b5bb8758f47a075 | 120 | cs | C# | android/naked-stubs/org/apache/http/conn/ClientConnectionManager.cs | gordonjohnpatrick/XobotOS | 888ed3b8cc8d8e0a54b1858bfa5a3572545f4d2f | [
"Apache-2.0"
] | 263 | 2015-01-04T16:39:18.000Z | 2022-01-05T17:52:38.000Z | android/naked-stubs/org/apache/http/conn/ClientConnectionManager.cs | DooMLoRD/XobotOS | f20db6295e878a2f298c5e3896528e240785805b | [
"Apache-2.0"
] | 3 | 2015-09-06T09:06:39.000Z | 2019-10-15T00:52:49.000Z | android/naked-stubs/org/apache/http/conn/ClientConnectionManager.cs | DooMLoRD/XobotOS | f20db6295e878a2f298c5e3896528e240785805b | [
"Apache-2.0"
] | 105 | 2015-01-11T11:45:12.000Z | 2022-02-22T07:26:36.000Z | using Sharpen;
namespace org.apache.http.conn
{
[Sharpen.NakedStub]
public interface ClientConnectionManager
{
}
}
| 12 | 41 | 0.766667 |
c84fb51f97f230e75b6989728e8722785b0f6292 | 47,116 | cs | C# | TransitApi.Portable.Sdk/Components/TransportApiComponent.cs | chrisk1ng/TransportApiSdk.NET | 337c70326d351b580795a10449fd6594c6bb6b83 | [
"MIT"
] | 3 | 2017-04-11T09:55:46.000Z | 2020-01-07T12:56:05.000Z | TransitApi.Portable.Sdk/Components/TransportApiComponent.cs | chrisk1ng/TransportApiSdk.NET | 337c70326d351b580795a10449fd6594c6bb6b83 | [
"MIT"
] | 2 | 2017-03-02T15:16:19.000Z | 2020-06-18T08:41:16.000Z | TransitApi.Portable.Sdk/Components/TransportApiComponent.cs | chrisk1ng/TransportApiSdk.NET | 337c70326d351b580795a10449fd6594c6bb6b83 | [
"MIT"
] | 2 | 2017-03-02T14:47:14.000Z | 2018-09-26T09:07:10.000Z | using RestSharp.Portable;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using TransportApi.Sdk.Interfaces;
using TransportApi.Sdk.Models.Enums;
using TransportApi.Sdk.Models.InputModels;
using TransportApi.Sdk.Models... | 36.021407 | 560 | 0.482193 |
82d28d845e726e8342649d88227ce178d49f9751 | 9,748 | cs | C# | Report/dep_result.ascx.cs | ashikplk9/feedback2 | db62a4a2c987f309d063bff81b56798787f886cb | [
"CC-BY-3.0"
] | null | null | null | Report/dep_result.ascx.cs | ashikplk9/feedback2 | db62a4a2c987f309d063bff81b56798787f886cb | [
"CC-BY-3.0"
] | 1 | 2019-03-04T19:06:34.000Z | 2019-03-04T19:06:34.000Z | Report/dep_result.ascx.cs | ashikplk9/feedback2 | db62a4a2c987f309d063bff81b56798787f886cb | [
"CC-BY-3.0"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Data.SqlClient;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;
public partial class Report_dep_result : System.Web.UI.UserContr... | 36.373134 | 148 | 0.532827 |
76f44bf368aedf7a03e2e34fe37a3d7bc1971b74 | 41 | cshtml | C# | education.system/education.system.App/Views/Manage/_ViewImports.cshtml | education-system-teamwork-project/education-system | 30bea730ea2ae75d09e45c20f853c54ea667fc29 | [
"MIT"
] | null | null | null | education.system/education.system.App/Views/Manage/_ViewImports.cshtml | education-system-teamwork-project/education-system | 30bea730ea2ae75d09e45c20f853c54ea667fc29 | [
"MIT"
] | null | null | null | education.system/education.system.App/Views/Manage/_ViewImports.cshtml | education-system-teamwork-project/education-system | 30bea730ea2ae75d09e45c20f853c54ea667fc29 | [
"MIT"
] | null | null | null | @using education.system.App.Views.Manage | 41 | 41 | 0.829268 |
f6422f04b657eb635b30629a06c695813e3e4b8d | 514 | cs | C# | src/ScyllaNet/DataStax/Insights/Schema/StartupMessage/AuthProviderInfo.cs | ScyllaNet/ScyllaNet | b5df85f0c93820690beefbbb8882714579d9ff30 | [
"Apache-2.0"
] | 14 | 2020-05-07T01:33:52.000Z | 2022-02-06T08:11:57.000Z | src/ScyllaNet/DataStax/Insights/Schema/StartupMessage/AuthProviderInfo.cs | ScyllaNet/ScyllaNet | b5df85f0c93820690beefbbb8882714579d9ff30 | [
"Apache-2.0"
] | null | null | null | src/ScyllaNet/DataStax/Insights/Schema/StartupMessage/AuthProviderInfo.cs | ScyllaNet/ScyllaNet | b5df85f0c93820690beefbbb8882714579d9ff30 | [
"Apache-2.0"
] | 3 | 2021-04-23T22:52:21.000Z | 2022-03-27T14:45:18.000Z | // Copyright (c) 2014-2020 DataStax Inc.
// Copyright (c) 2020, Rafael Almeida (ralmsdevelper)
// Licensed under the Apache License, Version 2.0. See LICENCE in the project root for license information.
using Newtonsoft.Json;
namespace Scylla.Net.DataStax.Insights.Schema.StartupMessage
{
[JsonObject]
interna... | 27.052632 | 107 | 0.684825 |
36f686f5bd46602457f0761a688d04c1db5e94fe | 769 | cs | C# | ValueMaps/ValueMap.cs | jamesoddy/L5RCardGenerator | 4428500dcfd98d43467c80e731cea81249a2cebb | [
"MIT"
] | null | null | null | ValueMaps/ValueMap.cs | jamesoddy/L5RCardGenerator | 4428500dcfd98d43467c80e731cea81249a2cebb | [
"MIT"
] | null | null | null | ValueMaps/ValueMap.cs | jamesoddy/L5RCardGenerator | 4428500dcfd98d43467c80e731cea81249a2cebb | [
"MIT"
] | null | null | null | using Newtonsoft.Json;
using L5RCardGenerator.TraitMapper;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Text;
namespace L5RCardGenerator.ValueMaps
{
public static class ValueMap
{
public static void UpdateCardFromJson(Card card, string json)
{
... | 28.481481 | 96 | 0.644993 |
4c55a74c67a660d62b514310a20c050dd414977a | 1,882 | cs | C# | src/dotnet/Wexflow.Tasks.SevenZip/SevenZip.cs | alexhiggins732/Wexflow | c4d50ce5b3b747df924811786c241aa8fde0b020 | [
"MIT"
] | 6 | 2021-02-22T18:19:10.000Z | 2021-08-19T07:12:11.000Z | src/dotnet/Wexflow.Tasks.SevenZip/SevenZip.cs | alexhiggins732/Wexflow | c4d50ce5b3b747df924811786c241aa8fde0b020 | [
"MIT"
] | 1 | 2021-05-06T16:05:06.000Z | 2021-05-06T16:05:06.000Z | src/dotnet/Wexflow.Tasks.SevenZip/SevenZip.cs | alexhiggins732/Wexflow | c4d50ce5b3b747df924811786c241aa8fde0b020 | [
"MIT"
] | 18 | 2020-04-08T10:47:49.000Z | 2022-02-15T17:27:00.000Z | using SevenZip;
using System;
using System.IO;
using System.Linq;
using System.Threading;
using System.Xml.Linq;
using Wexflow.Core;
namespace Wexflow.Tasks.SevenZip
{
public class SevenZip : Task
{
public string ZipFileName { get; private set; }
public SevenZip(XElement xe, Workflow wf)
... | 28.953846 | 95 | 0.510627 |
3a5308d572fe6756058c1f8d2263c1d1c10f123b | 4,652 | cs | C# | VisualSquirrel/VSSQNext/Taggers/SQIndentation.cs | qnsoftware/visualsquirrel | d9e3e03b7d0951cf5f43bf1e2a0607a6c04eb5e5 | [
"MIT"
] | 5 | 2018-11-12T10:59:55.000Z | 2020-11-16T08:29:03.000Z | VisualSquirrel/VSSQNext/Taggers/SQIndentation.cs | albertodemichelis/visualsquirrel | 357a2a826ee45325615cc2da72bc8e795a4b2653 | [
"MIT"
] | null | null | null | VisualSquirrel/VSSQNext/Taggers/SQIndentation.cs | albertodemichelis/visualsquirrel | 357a2a826ee45325615cc2da72bc8e795a4b2653 | [
"MIT"
] | 3 | 2018-11-12T11:01:58.000Z | 2022-02-27T07:22:16.000Z | /* see LICENSE notice in solution root */
using Squirrel.SquirrelLanguageService;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
using Microsoft.VisualStudio.Utilities;
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Linq;
using Syste... | 33.467626 | 127 | 0.538478 |
4b9d9b15819a0f763ec25a040b383d7cd8ae2954 | 13,008 | cs | C# | WCFServer.Data/ADO.NET/SQLServerDB.cs | LeeLeopold/WCFServer | 16dc1634ce95236b5113162b57fc728d8804d7c3 | [
"Apache-2.0"
] | 1 | 2018-07-15T03:43:44.000Z | 2018-07-15T03:43:44.000Z | WCFServer.Data/ADO.NET/SQLServerDB.cs | LeeLeopold/WCFServer | 16dc1634ce95236b5113162b57fc728d8804d7c3 | [
"Apache-2.0"
] | null | null | null | WCFServer.Data/ADO.NET/SQLServerDB.cs | LeeLeopold/WCFServer | 16dc1634ce95236b5113162b57fc728d8804d7c3 | [
"Apache-2.0"
] | null | null | null | using System;
using System.Data;
using System.Data.SqlClient;
namespace WCFServer.Data.ADO.NET
{
public class SQLServerDB : IDisposable
{
public static string ConnStr = "";
public SqlConnection Conn = null;
public SqlCommand Cmd = null;
#region 构造方法
/// <summary>
... | 26.546939 | 102 | 0.423739 |
e1a613ea39a381558de81811583ea2dc263ab45a | 2,402 | cs | C# | CoreCms.Net.Model/ViewModels/View/TagPintuan.cs | lonelyxmas/CoreShop | dc675413af4d4ce001ba816a202e56583312f661 | [
"Apache-2.0"
] | 1 | 2021-06-30T01:19:31.000Z | 2021-06-30T01:19:31.000Z | CoreCms.Net.Model/ViewModels/View/TagPintuan.cs | XRJ1230663/CoreShop | dc675413af4d4ce001ba816a202e56583312f661 | [
"Apache-2.0"
] | null | null | null | CoreCms.Net.Model/ViewModels/View/TagPintuan.cs | XRJ1230663/CoreShop | dc675413af4d4ce001ba816a202e56583312f661 | [
"Apache-2.0"
] | 1 | 2021-08-03T11:50:23.000Z | 2021-08-03T11:50:23.000Z | /***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* ... | 24.762887 | 73 | 0.387177 |
77172f5f159970139a15c124a0d640cf730be082 | 5,318 | cs | C# | Endahl.CSharpedSql/Condition.cs | Endahl/CSharpedSql | 0046c306ed8bb7db87c3851433b0bee3540d8416 | [
"MIT"
] | 2 | 2019-06-08T15:02:31.000Z | 2019-06-09T09:41:35.000Z | Endahl.CSharpedSql/Condition.cs | Endahl/CSharpedSql | 0046c306ed8bb7db87c3851433b0bee3540d8416 | [
"MIT"
] | null | null | null | Endahl.CSharpedSql/Condition.cs | Endahl/CSharpedSql | 0046c306ed8bb7db87c3851433b0bee3540d8416 | [
"MIT"
] | null | null | null | namespace Endahl.CSharpedSql
{
using Endahl.CSharpedSql.Base;
public class Condition
{
public virtual ConditionType ConditionType { get; }
public virtual ColumnItem Column { get; }
public virtual object Item { get; }
public virtual object Item2 { get; }
protected C... | 31.282353 | 98 | 0.605303 |
ce4df2b9563c48312961040d1f6355e66a639d16 | 9,125 | cs | C# | src/HearThisTests/LinkLabelHelperTests.cs | sillsdev/HearThis | 34584bceff3215d6b87539eb9d2ae8de7d13b9ab | [
"MIT"
] | 5 | 2017-06-21T18:51:06.000Z | 2021-09-04T03:10:38.000Z | src/HearThisTests/LinkLabelHelperTests.cs | sillsdev/HearThis | 34584bceff3215d6b87539eb9d2ae8de7d13b9ab | [
"MIT"
] | 109 | 2016-05-25T08:57:34.000Z | 2022-03-21T21:08:22.000Z | src/HearThisTests/LinkLabelHelperTests.cs | sillsdev/HearThis | 34584bceff3215d6b87539eb9d2ae8de7d13b9ab | [
"MIT"
] | 6 | 2016-05-25T17:54:50.000Z | 2019-05-24T23:14:58.000Z | // --------------------------------------------------------------------------------------------
#region // Copyright (c) 2020, SIL International. All Rights Reserved.
// <copyright from='2020' to='2020' company='SIL International'>
// Copyright (c) 2020, SIL International. All Rights Reserved.
//
// Distributable un... | 44.950739 | 127 | 0.712767 |
02fa7549aeed1922770dbd8c3281e574a743dc05 | 1,639 | cs | C# | Studio/ThreatsManager.Extensions.WinForms/Panels/ThreatSources/Capec/Target_Attack_Surface_DescriptionTypeTarget_Functional_ServiceProtocolCommand_Structure.cs | simonec73/threatsmanager | 2bb8385fef3ca094a34914b6f3e0ca8613010421 | [
"MIT"
] | 39 | 2020-06-22T12:31:52.000Z | 2022-03-25T21:32:41.000Z | Studio/ThreatsManager.Extensions.WinForms/Panels/ThreatSources/Capec/Target_Attack_Surface_DescriptionTypeTarget_Functional_ServiceProtocolCommand_Structure.cs | simonec73/threatsmanager | 2bb8385fef3ca094a34914b6f3e0ca8613010421 | [
"MIT"
] | 11 | 2021-03-24T22:05:51.000Z | 2022-03-11T15:59:30.000Z | Studio/ThreatsManager.Extensions.WinForms/Panels/ThreatSources/Capec/Target_Attack_Surface_DescriptionTypeTarget_Functional_ServiceProtocolCommand_Structure.cs | simonec73/threatsmanager | 2bb8385fef3ca094a34914b6f3e0ca8613010421 | [
"MIT"
] | 8 | 2020-06-22T07:40:52.000Z | 2022-01-24T22:10:37.000Z | // ------------------------------------------------------------------------------
// <auto-generated>
// Generated by Xsd2Code++. Version 4.2.0.44
// </auto-generated>
// ------------------------------------------------------------------------------
using System;
using System.ComponentModel;
using System.Diagnost... | 25.609375 | 108 | 0.607688 |
f3527b3d3ce3105e032c101ba7a6cc62acea43b0 | 4,397 | cs | C# | src/Java2Cs/Java/CodeGenerator.cs | ViceIce/java2cs | 3a3860215659a7b6b0d3c14bcdd117a77c291be2 | [
"MIT"
] | null | null | null | src/Java2Cs/Java/CodeGenerator.cs | ViceIce/java2cs | 3a3860215659a7b6b0d3c14bcdd117a77c291be2 | [
"MIT"
] | null | null | null | src/Java2Cs/Java/CodeGenerator.cs | ViceIce/java2cs | 3a3860215659a7b6b0d3c14bcdd117a77c291be2 | [
"MIT"
] | null | null | null | using Antlr4.Runtime.Misc;
using Antlr4.Runtime.Tree;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Java2Cs.Java
{
class CodeGenerator : JavaParserBaseListener
{
private readonly StringBuilder _code;
internal CodeGenerator(StringBuilder code)... | 29.313333 | 107 | 0.489197 |
6aae93cb4b5a47e6987e695f0c7f462fdef07c58 | 1,014 | cs | C# | src/services/OmegaService.Core/Data/OmegaUserRepository.cs | mikey-t/project-omega | bae255270acebade6b30b13b3183a12ebd11504e | [
"MIT"
] | 4 | 2021-03-12T17:52:37.000Z | 2022-03-18T05:04:59.000Z | src/services/OmegaService.Core/Data/OmegaUserRepository.cs | mikey-t/project-omega | bae255270acebade6b30b13b3183a12ebd11504e | [
"MIT"
] | null | null | null | src/services/OmegaService.Core/Data/OmegaUserRepository.cs | mikey-t/project-omega | bae255270acebade6b30b13b3183a12ebd11504e | [
"MIT"
] | 1 | 2022-03-18T05:05:05.000Z | 2022-03-18T05:05:05.000Z | using System.Collections.Generic;
using System.Data.SqlClient;
using Dapper;
using Omega.Plumbing.Data;
using OmegaInterop.Core;
using OmegaService.Core.Interface;
namespace OmegaService.Core.Data
{
public class OmegaUserRepository : BaseRepository<CoreService>, IOmegaUserRepository
{
public OmegaUserR... | 33.8 | 144 | 0.690335 |
2962281bdf83daae4e378cb8378c032cc7e5be82 | 379 | cs | C# | Foro_-_Tarea2_ClasePersona/Foro_-_Tarea2_ClasePersona/Trabajador.cs | Hikhuj/ULACIT_DisenioAppSoftware | e289d71fc3c301ab5fdaa2a5141386fe301e0fc7 | [
"MIT"
] | null | null | null | Foro_-_Tarea2_ClasePersona/Foro_-_Tarea2_ClasePersona/Trabajador.cs | Hikhuj/ULACIT_DisenioAppSoftware | e289d71fc3c301ab5fdaa2a5141386fe301e0fc7 | [
"MIT"
] | null | null | null | Foro_-_Tarea2_ClasePersona/Foro_-_Tarea2_ClasePersona/Trabajador.cs | Hikhuj/ULACIT_DisenioAppSoftware | e289d71fc3c301ab5fdaa2a5141386fe301e0fc7 | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Trabajador: Persona
{
public int sueldo;
public Trabajador(string identidad, string nombre, int edad, int sueldo): base(identidad,nombre,edad)
... | 18.95 | 109 | 0.659631 |
77cdc336fff54305d7b915e27dbb683c73d5f352 | 531 | cs | C# | test/EntityFramework.SqlServer.Design.FunctionalTests/ReverseEngineering/E2EFixture.cs | suryasnath/csharp | 7456392bcc5707569a5d4e9c7dbec806d740c6c5 | [
"Apache-2.0"
] | null | null | null | test/EntityFramework.SqlServer.Design.FunctionalTests/ReverseEngineering/E2EFixture.cs | suryasnath/csharp | 7456392bcc5707569a5d4e9c7dbec806d740c6c5 | [
"Apache-2.0"
] | null | null | null | test/EntityFramework.SqlServer.Design.FunctionalTests/ReverseEngineering/E2EFixture.cs | suryasnath/csharp | 7456392bcc5707569a5d4e9c7dbec806d740c6c5 | [
"Apache-2.0"
] | null | null | null | // 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 Microsoft.Data.Entity.SqlServer.FunctionalTests;
namespace EntityFramework.SqlServer.Design.ReverseEngineering.FunctionalTests
{
public clas... | 31.235294 | 111 | 0.708098 |
9ac886d0211701dfe745161f9e005d2250b28a75 | 805 | cs | C# | cards/OG/OG/Sim_OG_006.cs | chi-rei-den/Silverfish | 0420f58169db32e46df50362034699651cc62f2a | [
"MIT"
] | 1 | 2020-09-04T08:44:54.000Z | 2020-09-04T08:44:54.000Z | cards/OG/OG/Sim_OG_006.cs | chi-rei-den/Silverfish | 0420f58169db32e46df50362034699651cc62f2a | [
"MIT"
] | 2 | 2020-04-21T21:55:17.000Z | 2020-04-21T22:02:36.000Z | cards/OG/OG/Sim_OG_006.cs | chi-rei-den/Silverfish | 0420f58169db32e46df50362034699651cc62f2a | [
"MIT"
] | null | null | null | using HearthDb;
/* _BEGIN_TEMPLATE_
{
"id": "OG_006",
"name": [
"邪鳍审判者",
"Vilefin Inquisitor"
],
"text": [
"<b>战吼:</b>\n你的英雄技能变为“召唤一个1/1的鱼人”。",
"<b>Battlecry:</b> Your Hero Power becomes 'Summon a 1/1 Murloc.'"
],
"cardClass": "PALADIN",
"type": "MINION",
"cost": 1,
"rarity": "EPIC"... | 23 | 120 | 0.616149 |
b13660416505083d60a441b295a5d25344dd0c69 | 632 | cs | C# | JsControlParamBase.cs | student-accommodation-one/Kara.Framework.Common.Mvc | 548a2b13f1db684728fb05447d5bb87e60f08e9d | [
"MIT"
] | null | null | null | JsControlParamBase.cs | student-accommodation-one/Kara.Framework.Common.Mvc | 548a2b13f1db684728fb05447d5bb87e60f08e9d | [
"MIT"
] | null | null | null | JsControlParamBase.cs | student-accommodation-one/Kara.Framework.Common.Mvc | 548a2b13f1db684728fb05447d5bb87e60f08e9d | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kara.Framework.Common.Mvc
{
public class JsControlParamBase
{
private List<JsEventFunction> _eventFunctions = new List<JsEventFunction>();
public string JsNamespace { ... | 21.793103 | 84 | 0.575949 |
da99c2a61adca1dbeb219a26b73f93c85ad8fe1f | 2,148 | cs | C# | src/Buildron/Assets/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderBase.cs | skahal/Buildron | 4add7ed44f84d99a87b731a5049ba93bae3a52f2 | [
"MIT"
] | 24 | 2016-05-31T02:15:22.000Z | 2018-05-20T21:33:52.000Z | src/Buildron/Assets/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderBase.cs | skahal/Buildron | 4add7ed44f84d99a87b731a5049ba93bae3a52f2 | [
"MIT"
] | 38 | 2016-06-02T02:46:39.000Z | 2017-05-31T23:40:59.000Z | src/Solution/Zenject/Source/Binding/Binders/Factory/FactoryFromBinder/SubContainerBinder/FactorySubContainerBinderBase.cs | skahal/Buildron-Classic-Mods | b1688293796c850bff901b208b97e6b1743c9b1e | [
"MIT"
] | 3 | 2016-08-10T14:06:45.000Z | 2018-02-24T20:30:03.000Z | using System;
using ModestTree;
using System.Linq;
namespace Zenject
{
public class FactorySubContainerBinderBase<TContract>
{
readonly BindFinalizerWrapper _finalizerWrapper;
public FactorySubContainerBinderBase(
BindInfo bindInfo, Type factoryType,
BindFinalizerWrappe... | 24.976744 | 94 | 0.559125 |
95e858fa9e7fe894b9181004c21916afcf0513f2 | 1,696 | cs | C# | Assets/Scripts/BellRinging.cs | Owmacohe/LastBreathOfANewEmpire | b67f26fff4ab2fe1ca18ecdb440a0987c3056a09 | [
"MIT"
] | null | null | null | Assets/Scripts/BellRinging.cs | Owmacohe/LastBreathOfANewEmpire | b67f26fff4ab2fe1ca18ecdb440a0987c3056a09 | [
"MIT"
] | 10 | 2022-02-09T02:23:23.000Z | 2022-03-31T21:10:35.000Z | Assets/Scripts/BellRinging.cs | Owmacohe/LastBreathOfANewEmpire | b67f26fff4ab2fe1ca18ecdb440a0987c3056a09 | [
"MIT"
] | null | null | null | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BellRinging : MonoBehaviour
{
[SerializeField] AudioClip[] bigBells;
[SerializeField] AudioClip[] midBells;
[SerializeField] float ringChance = 1000;
public enum BellSize { None, Mid, Big }
public BellSize ... | 24.228571 | 117 | 0.501179 |
d9bbb04e915331f0378e2c1c9374320c5fb9e5c1 | 4,767 | cshtml | C# | src/App/Views/Docenti/Detail.cshtml | AngeloDotNet/AspNetCore-CentroFormazione | 3f8db26f649421a65897fcdc74f5c0206c802129 | [
"MIT"
] | null | null | null | src/App/Views/Docenti/Detail.cshtml | AngeloDotNet/AspNetCore-CentroFormazione | 3f8db26f649421a65897fcdc74f5c0206c802129 | [
"MIT"
] | null | null | null | src/App/Views/Docenti/Detail.cshtml | AngeloDotNet/AspNetCore-CentroFormazione | 3f8db26f649421a65897fcdc74f5c0206c802129 | [
"MIT"
] | null | null | null | @model DocenteDetailViewModel
<div class="card">
<div class="card-header">Dettaglio docente</div>
<div class="card-body">
<div class="row">
<div class="col-sm">
<div class="card-text">
<div class="row">
<div class="col-md-6">
... | 52.384615 | 179 | 0.423956 |
c931d2e7084f95be3ce2079e0f6ef9baeaea1623 | 3,090 | cs | C# | src/Sharpliner/AzureDevOps/Validation/DependsOnValidation.cs | jshield/sharpliner | 5e5ed9ecbb85f29e3a37a6f93c99bafa531282a4 | [
"MIT"
] | null | null | null | src/Sharpliner/AzureDevOps/Validation/DependsOnValidation.cs | jshield/sharpliner | 5e5ed9ecbb85f29e3a37a6f93c99bafa531282a4 | [
"MIT"
] | null | null | null | src/Sharpliner/AzureDevOps/Validation/DependsOnValidation.cs | jshield/sharpliner | 5e5ed9ecbb85f29e3a37a6f93c99bafa531282a4 | [
"MIT"
] | null | null | null | using System.Collections.Generic;
using System.Linq;
using Sharpliner.AzureDevOps.ConditionedExpressions;
using Sharpliner.Common;
namespace Sharpliner.AzureDevOps.Validation;
internal abstract class DependsOnValidation : IDefinitionValidation
{
private readonly ValidationSeverity _severity;
protected Depen... | 31.212121 | 183 | 0.642071 |
3f1bc033115f440b8f30fcb94ea76409d2f3f6a9 | 9,923 | cs | C# | QLTV(DOaN)/DQuanLyThuVien/FrmDoiMatKhau.Designer.cs | IMD246/LibraryManagement | 510c9b9fdcadc9e4abee80d77dd2511d0b6dade3 | [
"Apache-2.0"
] | null | null | null | QLTV(DOaN)/DQuanLyThuVien/FrmDoiMatKhau.Designer.cs | IMD246/LibraryManagement | 510c9b9fdcadc9e4abee80d77dd2511d0b6dade3 | [
"Apache-2.0"
] | null | null | null | QLTV(DOaN)/DQuanLyThuVien/FrmDoiMatKhau.Designer.cs | IMD246/LibraryManagement | 510c9b9fdcadc9e4abee80d77dd2511d0b6dade3 | [
"Apache-2.0"
] | null | null | null |
namespace DQuanLyThuVien
{
partial class FrmDoiMatKhau
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
... | 53.349462 | 170 | 0.631865 |
1b7704aef92ce047bf7994cdd4f37e380ee1dfea | 1,248 | cs | C# | FrameWork/Pool/ObjectPool.cs | Nick0108/Exhibition | 22760026a0fb5b5eca78f50432843aee645fa197 | [
"MIT"
] | null | null | null | FrameWork/Pool/ObjectPool.cs | Nick0108/Exhibition | 22760026a0fb5b5eca78f50432843aee645fa197 | [
"MIT"
] | null | null | null | FrameWork/Pool/ObjectPool.cs | Nick0108/Exhibition | 22760026a0fb5b5eca78f50432843aee645fa197 | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using UnityEngine;
using System.Text;
public class ObjectPool:Singleton<ObjectPool>
{
public string ResourceDir = "";
Dictionary<string, SubPool> m_pools = new Dictionary<string, SubPool>();
//取对象
public GameObject Spawn(string name)
{
if (... | 21.894737 | 76 | 0.544071 |
1bb8b50acf2f1f24bef050b812ed6d0266ae0143 | 550 | cs | C# | src/PaySharp.Wechatpay/Request/FundFlowDownloadRequest.cs | Pody2015/PaySharp | 7838edaaf10b72b3ec90558c51895faf336593bd | [
"MIT"
] | 635 | 2018-05-01T08:10:24.000Z | 2022-03-31T01:38:31.000Z | src/PaySharp.Wechatpay/Request/FundFlowDownloadRequest.cs | Pody2015/PaySharp | 7838edaaf10b72b3ec90558c51895faf336593bd | [
"MIT"
] | 27 | 2018-05-03T08:52:58.000Z | 2021-09-23T06:00:36.000Z | src/PaySharp.Wechatpay/Request/FundFlowDownloadRequest.cs | Pody2015/PaySharp | 7838edaaf10b72b3ec90558c51895faf336593bd | [
"MIT"
] | 192 | 2018-05-01T03:07:24.000Z | 2022-03-16T19:22:37.000Z | using PaySharp.Wechatpay.Domain;
using PaySharp.Wechatpay.Response;
namespace PaySharp.Wechatpay.Request
{
public class FundFlowDownloadRequest : BaseRequest<FundFlowDownloadModel, FundFlowDownloadResponse>
{
public FundFlowDownloadRequest()
{
RequestUrl = "/pay/downloadfundflow";
... | 26.190476 | 103 | 0.645455 |
e4b4aa008f2ccde8882acaf15de291a2d65329bd | 1,313 | cs | C# | SharedServices/Configuration/Models/WebPageConfiguration.cs | JSystemsTech/FederatedAuth | 8961464a2d3b97dbd4b7f54466341837097c2445 | [
"MIT"
] | null | null | null | SharedServices/Configuration/Models/WebPageConfiguration.cs | JSystemsTech/FederatedAuth | 8961464a2d3b97dbd4b7f54466341837097c2445 | [
"MIT"
] | null | null | null | SharedServices/Configuration/Models/WebPageConfiguration.cs | JSystemsTech/FederatedAuth | 8961464a2d3b97dbd4b7f54466341837097c2445 | [
"MIT"
] | null | null | null | using SharedServices.Extensions;
using System.Collections.Specialized;
namespace SharedServices.Configuration.Models
{
public class WebPageConfiguration
{
public string Title { get; private set; }
public bool EnableSideMenu { get; private set; }
public bool EnableWarningModal { get; pr... | 34.552632 | 92 | 0.648134 |
2578cb973109cc91cce588599146443d44ead1f6 | 7,875 | cs | C# | mReporter/mReporterLib/MatrixPrinters/PageBuilder.cs | softak098/mReporterLib | a7aa2499def891f826da06bbdcc21207cfd461c3 | [
"MIT"
] | 1 | 2016-03-10T08:27:49.000Z | 2016-03-10T08:27:49.000Z | mReporter/mReporterLib/MatrixPrinters/PageBuilder.cs | softak098/mReporterLib | a7aa2499def891f826da06bbdcc21207cfd461c3 | [
"MIT"
] | null | null | null | mReporter/mReporterLib/MatrixPrinters/PageBuilder.cs | softak098/mReporterLib | a7aa2499def891f826da06bbdcc21207cfd461c3 | [
"MIT"
] | null | null | null | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace mReporterLib
{
public class PageBuilder
{
const string PAGE_NUMBER_PLACEHOLDER = "$P";
const string TOTAL_PAGE_NUMBER_PLACEHOLDER = "$T";
Report _report;
MemoryStr... | 31.5 | 91 | 0.525206 |
f431219b7e0fca543e8dd55245b0084acc5deceb | 491 | cs | C# | src/GoogleMeasurementProtocol_NetStandard/Parameters/User/UserId.cs | hoejgaard-12/google-measurement-protocol-dotnet | e5c6bcb30f4f33337858c1dae9afcdbbff12e7c5 | [
"MIT"
] | 24 | 2015-09-06T22:51:46.000Z | 2020-09-03T10:49:04.000Z | src/GoogleMeasurementProtocol_NetStandard/Parameters/User/UserId.cs | hoejgaard-12/google-measurement-protocol-dotnet | e5c6bcb30f4f33337858c1dae9afcdbbff12e7c5 | [
"MIT"
] | 25 | 2016-03-18T07:32:20.000Z | 2021-09-19T09:31:09.000Z | src/GoogleMeasurementProtocol_NetStandard/Parameters/User/UserId.cs | hoejgaard-12/google-measurement-protocol-dotnet | e5c6bcb30f4f33337858c1dae9afcdbbff12e7c5 | [
"MIT"
] | 17 | 2015-06-17T17:20:54.000Z | 2021-02-25T10:11:29.000Z | namespace GoogleMeasurementProtocol.Parameters.User
{
/// <summary>
/// This is intended to be a known identifier for a user provided by the site owner/tracking library user.
/// It may not itself be PII. The value should never be persisted in GA cookies or other Analytics provided storage.
/// </summa... | 30.6875 | 120 | 0.653768 |
b1dcde9b8e84d43889e1b059084e09b08e320c3b | 2,012 | cs | C# | test/ExplicitlyImpl.FluentActions.Test.UnitTests/BuilderTestsWithProperty.cs | ExplicitlyImplicit/AspNetCore.Mvc.FluentActions | 11fce2bd18e940668269bd9f1db12f503c91a5fc | [
"MIT"
] | 21 | 2016-09-06T20:14:51.000Z | 2020-01-28T22:59:35.000Z | test/ExplicitlyImpl.FluentActions.Test.UnitTests/BuilderTestsWithProperty.cs | ExplicitlyImplicit/AspNetCore.Mvc.FluentActions | 11fce2bd18e940668269bd9f1db12f503c91a5fc | [
"MIT"
] | 3 | 2017-07-06T09:11:08.000Z | 2019-05-11T18:13:27.000Z | test/ExplicitlyImpl.FluentActions.Test.UnitTests/BuilderTestsWithProperty.cs | ExplicitlyImplicit/AspNetCore.Mvc.FluentActions | 11fce2bd18e940668269bd9f1db12f503c91a5fc | [
"MIT"
] | 3 | 2016-09-30T20:24:45.000Z | 2019-12-16T01:20:59.000Z | using ExplicitlyImpl.AspNetCore.Mvc.FluentActions;
using ExplicitlyImpl.FluentActions.Test.UnitTests.Controllers;
using Microsoft.AspNetCore.Http;
using System;
using System.Threading.Tasks;
using Xunit;
namespace ExplicitlyImpl.FluentActions.Test.UnitTests
{
public class BuilderTestsWithProperty
{
[F... | 37.962264 | 99 | 0.540258 |
dc4cd3e2cbcb948f29241ee759b7b3ff0e7c0090 | 930 | cs | C# | Sdl.Web.Common/Mapping/SemanticProperty.cs | ronnqvistandreas/dxa-web-application-dotnet | fff05d3635fd7d5ab3aacb8818364bcb4d90ab0b | [
"Apache-2.0"
] | 24 | 2015-08-11T20:13:04.000Z | 2019-01-22T03:32:18.000Z | Sdl.Web.Common/Mapping/SemanticProperty.cs | ronnqvistandreas/dxa-web-application-dotnet | fff05d3635fd7d5ab3aacb8818364bcb4d90ab0b | [
"Apache-2.0"
] | 74 | 2015-08-18T08:32:50.000Z | 2021-05-04T10:58:36.000Z | Sdl.Web.Common/Mapping/SemanticProperty.cs | ronnqvistandreas/dxa-web-application-dotnet | fff05d3635fd7d5ab3aacb8818364bcb4d90ab0b | [
"Apache-2.0"
] | 33 | 2015-10-22T13:41:41.000Z | 2021-05-04T10:56:21.000Z | namespace Sdl.Web.Common.Mapping
{
/// <summary>
/// Represents a Semantic Property.
/// </summary>
public class SemanticProperty
{
public const string AllFields = "_all";
public const string Self = "_self";
public string Prefix { get; }
public string PropertyName {... | 29.0625 | 101 | 0.567742 |
dc8a748c1b75f581b44b32d7ade53b05fa2b39bb | 774 | cs | C# | PholioVisualisationWS/DataConstructionTest/MonthlyReleaseHelperTest.cs | publichealthengland/fingertips-open | 678089724a516138232d273c4c7f511ed3c5a338 | [
"MIT"
] | 2 | 2016-01-22T10:32:57.000Z | 2020-02-05T15:47:19.000Z | PholioVisualisationWS/DataConstructionTest/MonthlyReleaseHelperTest.cs | PublicHealthEngland/fingertips-open | 678089724a516138232d273c4c7f511ed3c5a338 | [
"MIT"
] | 2 | 2021-05-06T15:49:22.000Z | 2022-03-02T01:00:49.000Z | PholioVisualisationWS/DataConstructionTest/MonthlyReleaseHelperTest.cs | publichealthengland/fingertips-open | 678089724a516138232d273c4c7f511ed3c5a338 | [
"MIT"
] | 1 | 2016-05-09T15:43:57.000Z | 2016-05-09T15:43:57.000Z | using Microsoft.VisualStudio.TestTools.UnitTesting;
using PholioVisualisation.DataConstruction;
using System;
namespace PholioVisualisation.DataConstructionTest
{
[TestClass]
public class MonthlyReleaseHelperTest
{
private IMonthlyReleaseHelper _helper;
[TestInitialize]
public voi... | 23.454545 | 81 | 0.643411 |
42e4a830967e7d7695219d27df8dbacdcef238d4 | 3,117 | cs | C# | xCPU/CodeProvider/Extensions/BinaryStringExtensions.cs | fpereiracalvo/fjv-xcpu | c43f3a2e71f34b1e1051f776877d0fe20b892d64 | [
"MIT"
] | null | null | null | xCPU/CodeProvider/Extensions/BinaryStringExtensions.cs | fpereiracalvo/fjv-xcpu | c43f3a2e71f34b1e1051f776877d0fe20b892d64 | [
"MIT"
] | null | null | null | xCPU/CodeProvider/Extensions/BinaryStringExtensions.cs | fpereiracalvo/fjv-xcpu | c43f3a2e71f34b1e1051f776877d0fe20b892d64 | [
"MIT"
] | null | null | null | using System;
using System.Linq;
using System.Text.RegularExpressions;
namespace Fjv.xCPU.CodeProvider.Extensions
{
public static partial class StringExtensions
{
public static bool IsBinaryByte(this string value)
{
return value.BinaryEvaluator<bool>(new Func<string, bool>((s) =>
... | 30.262136 | 126 | 0.481553 |
11c2418f8f5b74339c8fc673ca97af124c8520a7 | 289 | cs | C# | MinaGlosor.Web/Models/AdminCommands/MigrateWordUserIdAdminCommand.cs | dlidstrom/MinaGlosor | 658294abef22e2b0724083cefdabf6bf4d04789b | [
"MIT"
] | null | null | null | MinaGlosor.Web/Models/AdminCommands/MigrateWordUserIdAdminCommand.cs | dlidstrom/MinaGlosor | 658294abef22e2b0724083cefdabf6bf4d04789b | [
"MIT"
] | 224 | 2015-01-04T07:18:25.000Z | 2022-02-23T09:33:43.000Z | MinaGlosor.Web/Models/AdminCommands/MigrateWordUserIdAdminCommand.cs | dlidstrom/MinaGlosor | 658294abef22e2b0724083cefdabf6bf4d04789b | [
"MIT"
] | null | null | null | namespace MinaGlosor.Web.Models.AdminCommands
{
public class MigrateWordUserIdAdminCommand : AdminCommand
{
public MigrateWordUserIdAdminCommand(string requestUsername, string requestPassword)
: base(requestUsername, requestPassword)
{
}
}
} | 28.9 | 92 | 0.705882 |
44508479dcb97f1ae1cd07cb6e3937bf712348aa | 2,281 | cs | C# | Assets/AIMLBot/AIMLbot/AIMLTagHandlers/bot.cs | slin35/npcGenerator | 4261932859743467004c3da2a6ad2f27b26c0f51 | [
"MIT"
] | 3 | 2021-04-18T12:55:06.000Z | 2021-09-28T23:01:14.000Z | Assets/AIMLBot/AIMLbot/AIMLTagHandlers/bot.cs | slin35/npcGenerator | 4261932859743467004c3da2a6ad2f27b26c0f51 | [
"MIT"
] | 1 | 2021-01-10T04:38:32.000Z | 2021-02-01T08:52:48.000Z | AIMLbot/AIMLTagHandlers/bot.cs | synthiam/Behavior_Control_AimlBot | f0f7f74b9cd671c36e454bf489623358585ce9c0 | [
"Apache-2.0"
] | 3 | 2020-09-06T16:39:23.000Z | 2020-12-23T18:07:14.000Z | using System;
using System.Xml;
using System.Text;
namespace AIMLbot.AIMLTagHandlers
{
/// <summary>
/// An element called bot, which may be considered a restricted version of get, is used to
/// tell the AIML interpreter that it should substitute the contents of a "bot predicate". The
/// value of a... | 40.732143 | 99 | 0.566857 |
9f3855ec56aff0a72e130e3b556cb0d315e9dfc5 | 1,540 | cs | C# | GrapeFruitStore/Helpers/ControllerHelpers.cs | otsaregorodtsev/GrapeFruitStore | b2bf65988c30ed26a66b1001bda9be3f5255456b | [
"BSD-3-Clause"
] | null | null | null | GrapeFruitStore/Helpers/ControllerHelpers.cs | otsaregorodtsev/GrapeFruitStore | b2bf65988c30ed26a66b1001bda9be3f5255456b | [
"BSD-3-Clause"
] | null | null | null | GrapeFruitStore/Helpers/ControllerHelpers.cs | otsaregorodtsev/GrapeFruitStore | b2bf65988c30ed26a66b1001bda9be3f5255456b | [
"BSD-3-Clause"
] | null | null | null | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using GrapeFruitStore.Models;
namespace GrapeFruitStore.Helpers
{
/*
* We can make this code a little cleaner by adding a “ControllerHelpers” class to the project,
* and implement an “AddRuleViola... | 35 | 114 | 0.668831 |
dc10eb2ae6c50ca1e399fbd8360aa374678f4328 | 824 | cs | C# | 1-C#/EMS/UI/Employee.cs | 220328-uta-sh-net-ext/James-Aluoch | 81ce72635af2a050f91a232e4a5d5831e5fe72ba | [
"MIT"
] | null | null | null | 1-C#/EMS/UI/Employee.cs | 220328-uta-sh-net-ext/James-Aluoch | 81ce72635af2a050f91a232e4a5d5831e5fe72ba | [
"MIT"
] | null | null | null | 1-C#/EMS/UI/Employee.cs | 220328-uta-sh-net-ext/James-Aluoch | 81ce72635af2a050f91a232e4a5d5831e5fe72ba | [
"MIT"
] | 2 | 2022-03-29T20:27:16.000Z | 2022-03-29T21:47:16.000Z | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UI
{
enum Authority
{
Hire,Fire, Delegate
}
public class Employee
{
//members -> variables,constants,methods,events,constructors etc.....
//variable... | 25.75 | 110 | 0.599515 |
67cc00c1cde73cfc880bd5e3013447d8a26c2288 | 553 | cs | C# | Array/ByteArrayUtil.cs | iluvredwall/ItzWarty.Commons | 861d70902c58a2dcaa34d271ed123152623f5d16 | [
"BSD-2-Clause"
] | null | null | null | Array/ByteArrayUtil.cs | iluvredwall/ItzWarty.Commons | 861d70902c58a2dcaa34d271ed123152623f5d16 | [
"BSD-2-Clause"
] | null | null | null | Array/ByteArrayUtil.cs | iluvredwall/ItzWarty.Commons | 861d70902c58a2dcaa34d271ed123152623f5d16 | [
"BSD-2-Clause"
] | null | null | null | namespace Dargon.Commons.Array {
public static class ByteArrayUtil {
public static byte FindMaximum(byte[] bytes) {
byte max = bytes[0];
for (int i = 1; i < bytes.Length; i++) {
if (max < bytes[i])
max = bytes[i];
}
return max;
}
publ... | 25.136364 | 52 | 0.461121 |
ec4012df24ef05be9d3f662e685fe10ab9127802 | 655 | cs | C# | src/FreeGym.Data/Seeding/IdentitySeed.cs | bonfanteandre/free-gym-api | 155b4cce9b3ec8b8e7ddd3ab1a22e6c171e4cb47 | [
"MIT"
] | null | null | null | src/FreeGym.Data/Seeding/IdentitySeed.cs | bonfanteandre/free-gym-api | 155b4cce9b3ec8b8e7ddd3ab1a22e6c171e4cb47 | [
"MIT"
] | null | null | null | src/FreeGym.Data/Seeding/IdentitySeed.cs | bonfanteandre/free-gym-api | 155b4cce9b3ec8b8e7ddd3ab1a22e6c171e4cb47 | [
"MIT"
] | null | null | null | using Microsoft.AspNetCore.Identity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FreeGym.Data.Seeding
{
public class IdentitySeed
{
public static async Task SeedUserAsync(UserManager<IdentityUser> userManager)
{
... | 24.259259 | 85 | 0.561832 |
eccf2f19845402a1f22678bde7bbea9660f089b4 | 1,313 | cs | C# | Dexiom.Ef.Translation/TranslationCollection.cs | Dexiom/Dexiom.Ef.Translation | 103c732ca408d0545ff593cb261de3f077de103d | [
"MIT"
] | null | null | null | Dexiom.Ef.Translation/TranslationCollection.cs | Dexiom/Dexiom.Ef.Translation | 103c732ca408d0545ff593cb261de3f077de103d | [
"MIT"
] | null | null | null | Dexiom.Ef.Translation/TranslationCollection.cs | Dexiom/Dexiom.Ef.Translation | 103c732ca408d0545ff593cb261de3f077de103d | [
"MIT"
] | null | null | null | using System.Collections.ObjectModel;
using System.Globalization;
using System.Linq;
namespace Dexiom.Ef.Translation
{
public class TranslationCollection<T> : Collection<T> where T : Translation<T>, new()
{
public T this[CultureInfo culture]
{
get => this[culture.Name];
... | 26.26 | 89 | 0.487433 |
94443e6f6ce76cf42d5a4b6b71a528354d040188 | 984 | cs | C# | uTinyRipperCore/Parser/Classes/MeshRenderer.cs | JosephTico/UtinyRipper | a93ff73f9cf1f46106e99e751ac1b16efefd174d | [
"MIT"
] | 2,066 | 2018-04-03T19:04:42.000Z | 2022-03-31T08:16:46.000Z | uTinyRipperCore/Parser/Classes/MeshRenderer.cs | JosephTico/UtinyRipper | a93ff73f9cf1f46106e99e751ac1b16efefd174d | [
"MIT"
] | 1,211 | 2018-03-31T07:53:04.000Z | 2022-03-25T15:42:41.000Z | uTinyRipperCore/Parser/Classes/MeshRenderer.cs | JosephTico/UtinyRipper | a93ff73f9cf1f46106e99e751ac1b16efefd174d | [
"MIT"
] | 434 | 2018-04-14T09:43:47.000Z | 2022-03-28T21:54:11.000Z | using System.Collections.Generic;
namespace uTinyRipper.Classes
{
public sealed class MeshRenderer : Renderer
{
public MeshRenderer(AssetInfo assetInfo) :
base(assetInfo)
{
}
/// <summary>
/// 5.0.0 and greater
/// </summary>
public static bool HasVertex(Version version, TransferInstructionFlags fl... | 23.428571 | 130 | 0.738821 |
ebab3d8dfb502255d006c3fc9c8933c1312ef633 | 3,613 | cs | C# | src/FSKview/ProgramSettings.cs | swharden/FSKview | a328f0891e4ddd68fdbc07c1030094baa477aacd | [
"MIT"
] | 2 | 2020-08-17T02:21:59.000Z | 2021-05-25T12:08:59.000Z | src/FSKview/ProgramSettings.cs | swharden/FSKview | a328f0891e4ddd68fdbc07c1030094baa477aacd | [
"MIT"
] | 45 | 2020-06-28T20:06:51.000Z | 2021-09-01T03:51:04.000Z | src/FSKview/ProgramSettings.cs | swharden/FSKview | a328f0891e4ddd68fdbc07c1030094baa477aacd | [
"MIT"
] | 3 | 2021-05-25T12:09:00.000Z | 2022-02-05T21:54:31.000Z | using System;
using System.IO;
using System.Text;
using System.Windows.Forms;
using System.Xml.Serialization;
namespace FSKview
{
public class ProgramSettings
{
public string version;
public int audioDeviceIndex = 0;
public string window = "Cosine";
public string colormap = "V... | 36.494949 | 130 | 0.613341 |
68b73154d18f29f7d837cec4dccd5549f2ed6480 | 12,095 | cs | C# | stolich/Stolich.cs | online-9/Win32.Stolich | 9ecf676fe7ed85598996e7b9988a5b31c011cdd2 | [
"MIT"
] | 4 | 2017-11-13T17:14:52.000Z | 2020-04-10T06:07:21.000Z | stolich/Stolich.cs | online-9/Win32.Stolich | 9ecf676fe7ed85598996e7b9988a5b31c011cdd2 | [
"MIT"
] | null | null | null | stolich/Stolich.cs | online-9/Win32.Stolich | 9ecf676fe7ed85598996e7b9988a5b31c011cdd2 | [
"MIT"
] | 4 | 2017-10-16T07:35:37.000Z | 2020-04-01T11:06:36.000Z | using System;
using System.Text;
using System.IO;
using System.Diagnostics;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Collections.Specialized;
using System.Net;
using System.Data;
using System.Linq;
using System.Windows.Forms;
using System.Security.Cryptography;
using st... | 35.262391 | 146 | 0.60215 |
13a2282d617d5b4f286edf6fc018bad332b967ea | 390 | cs | C# | Assets/Hamster/Scripts/States/Exceptions/StatisticallyAsLikelyException.cs | patm1987/mechahamster | 8cb9004ed4c3f8c0bdc0c27f7fb984aa4e431aa1 | [
"Apache-2.0"
] | 450 | 2017-03-01T18:08:23.000Z | 2022-03-31T14:56:22.000Z | Assets/Hamster/Scripts/States/Exceptions/StatisticallyAsLikelyException.cs | patm1987/mechahamster | 8cb9004ed4c3f8c0bdc0c27f7fb984aa4e431aa1 | [
"Apache-2.0"
] | 31 | 2018-03-24T02:16:20.000Z | 2022-03-11T04:40:40.000Z | Assets/Hamster/Scripts/States/Exceptions/StatisticallyAsLikelyException.cs | patm1987/mechahamster | 8cb9004ed4c3f8c0bdc0c27f7fb984aa4e431aa1 | [
"Apache-2.0"
] | 205 | 2017-04-04T04:18:14.000Z | 2022-03-25T13:55:34.000Z | using System;
namespace Hamster.States {
public class StatisticallyAsLikelyException : CrashlyticsCaughtException {
public StatisticallyAsLikelyException()
{
}
public StatisticallyAsLikelyException(string message)
: base(message)
{
}
public StatisticallyAsLikelyException(string me... | 20.526316 | 76 | 0.705128 |
b0bdd1277a8c28b5a9baea7dd1bf420f7c7cd0a0 | 271 | cs | C# | SURA/SURA/Models/ModeloDescargaPoliza.cs | fabiangothman/xamarinApp | 5c974580f416d3f906179b2dbe0f60866255ae33 | [
"MIT"
] | null | null | null | SURA/SURA/Models/ModeloDescargaPoliza.cs | fabiangothman/xamarinApp | 5c974580f416d3f906179b2dbe0f60866255ae33 | [
"MIT"
] | null | null | null | SURA/SURA/Models/ModeloDescargaPoliza.cs | fabiangothman/xamarinApp | 5c974580f416d3f906179b2dbe0f60866255ae33 | [
"MIT"
] | null | null | null | using System;
using Newtonsoft.Json;
namespace SURA.Models
{
public class ModeloDescargaPoliza
{
[JsonProperty("generatedAt")]
public object GeneratedAt { get; set; }
[JsonProperty("pdf")]
public string PDF { get; set; }
}
}
| 19.357143 | 47 | 0.619926 |
26115e3e4ab03ff2d9cb64424c6dbebc2276345d | 2,187 | cs | C# | Project 0/Assets/Game Objects/Moveables/Script/LightCubeGravityController.cs | TheWickedKraken/ESS_Project-0 | 022e4c87f6f433c18866966b45a1f4fdb57b0268 | [
"Apache-2.0"
] | 1 | 2022-02-22T03:32:56.000Z | 2022-02-22T03:32:56.000Z | Project 0/Assets/Game Objects/Moveables/Script/LightCubeGravityController.cs | TheWickedKraken/ESS_Project-0 | 022e4c87f6f433c18866966b45a1f4fdb57b0268 | [
"Apache-2.0"
] | null | null | null | Project 0/Assets/Game Objects/Moveables/Script/LightCubeGravityController.cs | TheWickedKraken/ESS_Project-0 | 022e4c87f6f433c18866966b45a1f4fdb57b0268 | [
"Apache-2.0"
] | null | null | null | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LightCubeGravityController : MonoBehaviour {
public GameSettings.GameState gameState;
GameObject go;
GameSettings gameSettings;
Vector3 y_Holder = new Vector3(0.0f, 0.0f, 0.0f);
Rigidbody thisRigidbody;
... | 28.402597 | 105 | 0.542295 |
261b6e3c1df96dff7031c0bbb2cc5cbba7d1505a | 1,508 | cs | C# | Server/OpenStory.Services.Contracts/Extensions.cs | shoftee/OpenStory | c0900232e1a7be03411067a19a61cc7623de6a37 | [
"Apache-2.0"
] | 21 | 2015-02-06T18:37:35.000Z | 2021-12-05T12:17:07.000Z | Server/OpenStory.Services.Contracts/Extensions.cs | shoftee/OpenStory | c0900232e1a7be03411067a19a61cc7623de6a37 | [
"Apache-2.0"
] | null | null | null | Server/OpenStory.Services.Contracts/Extensions.cs | shoftee/OpenStory | c0900232e1a7be03411067a19a61cc7623de6a37 | [
"Apache-2.0"
] | 10 | 2017-01-25T14:52:17.000Z | 2021-07-06T06:46:08.000Z | using System;
namespace OpenStory.Services.Contracts
{
/// <summary>
/// Provides extension methods. Which are useful. For stuff.
/// </summary>
public static class Extensions
{
/// <summary>
/// Returns the provided object as an instance of <see cref="IDisposable"/>.
/// <... | 32.782609 | 131 | 0.577586 |
04fbe8811432c32dbdc0851e48eb0f3642413c19 | 4,556 | cs | C# | src/Infrastructure.Data.DataSetup.Development/Migrations/20220128222009_dev.1.0.0.cs | animatlabs/ef_core | f1a4b8d85fa2a0ba5d65601b906a9651f50eb3f2 | [
"MIT"
] | null | null | null | src/Infrastructure.Data.DataSetup.Development/Migrations/20220128222009_dev.1.0.0.cs | animatlabs/ef_core | f1a4b8d85fa2a0ba5d65601b906a9651f50eb3f2 | [
"MIT"
] | null | null | null | src/Infrastructure.Data.DataSetup.Development/Migrations/20220128222009_dev.1.0.0.cs | animatlabs/ef_core | f1a4b8d85fa2a0ba5d65601b906a9651f50eb3f2 | [
"MIT"
] | null | null | null | using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Data.DataSetup.Development.Migrations
{
public partial class dev100 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
... | 42.981132 | 125 | 0.507024 |
3fd352f42b2c999c617fe92fa69b507fb41f6afb | 200 | cs | C# | aspnet/web-forms/overview/older-versions-security/admin/building-an-interface-to-select-one-user-account-from-many-cs/samples/sample8.cs | SeanKilleen/Docs | 2da23b1bf840bb412f4dee6ac2133e6ad3047c60 | [
"CC-BY-4.0",
"MIT"
] | 159 | 2020-02-20T05:22:34.000Z | 2022-03-29T12:07:40.000Z | aspnet/web-forms/overview/older-versions-security/admin/building-an-interface-to-select-one-user-account-from-many-cs/samples/sample8.cs | SeanKilleen/Docs | 2da23b1bf840bb412f4dee6ac2133e6ad3047c60 | [
"CC-BY-4.0",
"MIT"
] | 130 | 2020-02-20T15:57:30.000Z | 2022-03-25T03:49:08.000Z | aspnet/web-forms/overview/older-versions-security/admin/building-an-interface-to-select-one-user-account-from-many-cs/samples/sample8.cs | SeanKilleen/Docs | 2da23b1bf840bb412f4dee6ac2133e6ad3047c60 | [
"CC-BY-4.0",
"MIT"
] | 672 | 2020-02-20T07:49:28.000Z | 2022-03-31T13:37:20.000Z | private string UsernameToMatch
{
get
{
object o = ViewState["UsernameToMatch"];
if (o == null)
return string.Empty;
else
return (string)o;
}
set
{
ViewState["UsernameToMatch"] = value;
}
} | 13.333333 | 41 | 0.675 |
83737c6c7fc108c7f9baf8653fd014cc2c19cfe7 | 1,070 | cs | C# | src/Compilers/Core/Portable/SourceGeneration/IIncrementalGenerator.cs | frandesc/roslyn | 72a99a8279c9ccbb2ef3a99d5a8bf116a14ebf3b | [
"MIT"
] | 17,923 | 2015-01-14T23:40:37.000Z | 2022-03-31T18:10:52.000Z | src/Compilers/Core/Portable/SourceGeneration/IIncrementalGenerator.cs | open-dotnet/roslyn | 2e26701b0d1cb1a902a24f4ad8b8c5fe70514581 | [
"MIT"
] | 48,991 | 2015-01-15T00:29:35.000Z | 2022-03-31T23:48:56.000Z | src/Compilers/Core/Portable/SourceGeneration/IIncrementalGenerator.cs | open-dotnet/roslyn | 2e26701b0d1cb1a902a24f4ad8b8c5fe70514581 | [
"MIT"
] | 5,209 | 2015-01-14T23:40:24.000Z | 2022-03-30T20:15:03.000Z | // 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.
namespace Microsoft.CodeAnalysis
{
/// <summary>
/// The base interface required to implement an incrementa... | 41.153846 | 126 | 0.68785 |
ef0128130ab5e89501f0ec7ac23dd1eef674e79c | 86 | cs | C# | EOLib/Net/Translators/ITranslatedData.cs | Septharoth/EndlessClient | c7facbb24b14f9008ebe85502e4953e84e2ac041 | [
"MIT"
] | 31 | 2015-04-26T02:34:27.000Z | 2022-03-26T23:16:16.000Z | EOLib/Net/Translators/ITranslatedData.cs | Septharoth/EndlessClient | c7facbb24b14f9008ebe85502e4953e84e2ac041 | [
"MIT"
] | 102 | 2015-01-26T20:38:11.000Z | 2022-03-31T07:06:20.000Z | EOLib/Net/Translators/ITranslatedData.cs | Septharoth/EndlessClient | c7facbb24b14f9008ebe85502e4953e84e2ac041 | [
"MIT"
] | 33 | 2015-04-29T07:37:25.000Z | 2022-03-24T14:23:57.000Z | namespace EOLib.Net.Translators
{
public interface ITranslatedData
{
}
}
| 12.285714 | 36 | 0.674419 |
39590c4712c6f66288a19882493fc3181cb03174 | 677 | cs | C# | HQC/HQC_Teamwork (updated OOP)/AutoService/AutoService.Core/Contracts/IStockManager.cs | alexparvanov/TelerikAcademyAlpha | 1acd17befafe91459823c2a177e336ea9bdbdd83 | [
"MIT"
] | null | null | null | HQC/HQC_Teamwork (updated OOP)/AutoService/AutoService.Core/Contracts/IStockManager.cs | alexparvanov/TelerikAcademyAlpha | 1acd17befafe91459823c2a177e336ea9bdbdd83 | [
"MIT"
] | null | null | null | HQC/HQC_Teamwork (updated OOP)/AutoService/AutoService.Core/Contracts/IStockManager.cs | alexparvanov/TelerikAcademyAlpha | 1acd17befafe91459823c2a177e336ea9bdbdd83 | [
"MIT"
] | null | null | null | using AutoService.Models.Assets.Contracts;
using AutoService.Models.Common.Contracts;
using AutoService.Models.Vehicles.Contracts;
namespace AutoService.Core.Contracts
{
public interface IStockManager
{
void AddStockToWarehouse(IStock stock/*, ICounterparty supplier*/);
void AddStockToWarehous... | 42.3125 | 122 | 0.762186 |
75a2a2570901c816271a4b4012ce843087bd8bb8 | 585 | cs | C# | IoT_Automated_Doorlock/Rfid/Api/RfidApi.Core/Services/ILogService.cs | MrMoosti/IoT-Automated-Doorlock | 6fd10ae85cf0d164a1a52ed95ac7093eefbb3b14 | [
"MIT"
] | 1 | 2019-10-04T07:11:23.000Z | 2019-10-04T07:11:23.000Z | IoT_Automated_Doorlock/Rfid/Api/RfidApi.Core/Services/ILogService.cs | MrMoosti/IoT-Automated-Doorlock | 6fd10ae85cf0d164a1a52ed95ac7093eefbb3b14 | [
"MIT"
] | 9 | 2019-10-02T11:44:21.000Z | 2022-03-02T05:56:22.000Z | IoT_Automated_Doorlock/Rfid/Api/RfidApi.Core/Services/ILogService.cs | MrMoosti/IoT-Automated-Doorlock | 6fd10ae85cf0d164a1a52ed95ac7093eefbb3b14 | [
"MIT"
] | 2 | 2019-10-02T10:40:11.000Z | 2019-10-02T18:36:31.000Z | using System.Collections.Generic;
using System.Threading.Tasks;
using Rfid.Persistence.Domain.Collections;
namespace RfidApi.Core.Services
{
public interface ILogService
{
Task<IEnumerable<Log>> GetAllLogs();
Task<IEnumerable<Log>> GetAllFailedLogs();
Task<IEnumerable<Log>> GetAllSuc... | 22.5 | 57 | 0.687179 |
75f9aef5b66263e20ee7e4f3a61e580da5b22800 | 2,333 | cs | C# | libGtkSharpExtensions/GtkWidgetExtensions/MenuExtensions.cs | TDubClark/GtkSharpExtensions | f02eb735e903089841382d09f2987904f8adef83 | [
"MIT"
] | null | null | null | libGtkSharpExtensions/GtkWidgetExtensions/MenuExtensions.cs | TDubClark/GtkSharpExtensions | f02eb735e903089841382d09f2987904f8adef83 | [
"MIT"
] | null | null | null | libGtkSharpExtensions/GtkWidgetExtensions/MenuExtensions.cs | TDubClark/GtkSharpExtensions | f02eb735e903089841382d09f2987904f8adef83 | [
"MIT"
] | null | null | null | using System;
namespace GtkSharp.Extensions
{
public static class MenuExtensions
{
/// <summary>
/// Appends a new Gtk.SeparatorMenuItem to the menu.
/// </summary>
/// <param name="menu">Menu.</param>
public static void AppendSeparator (this Gtk.Menu menu)
{
menu.Append (new Gtk.SeparatorMenuItem ()... | 28.802469 | 113 | 0.680669 |
988277e44573f62b6e580c10cfcc2188d3ead0ff | 3,840 | cs | C# | Assets/Scripts/ColorGradingFeatures.cs | lwwhb/URPExampleofDarkfieldConversion | efb5605204cbbcb866fd72d7927bf303e6b25b11 | [
"MIT"
] | null | null | null | Assets/Scripts/ColorGradingFeatures.cs | lwwhb/URPExampleofDarkfieldConversion | efb5605204cbbcb866fd72d7927bf303e6b25b11 | [
"MIT"
] | null | null | null | Assets/Scripts/ColorGradingFeatures.cs | lwwhb/URPExampleofDarkfieldConversion | efb5605204cbbcb866fd72d7927bf303e6b25b11 | [
"MIT"
] | null | null | null | using UnityEngine;
using UnityEngine.Rendering;
using UnityEngine.Rendering.Universal;
public class ColorGradingFeatures : ScriptableRendererFeature
{
[System.Serializable]
public class ColorGradingSettings
{
public RenderPassEvent renderPassEvent = RenderPassEvent.AfterRenderingTransparents;
... | 39.587629 | 154 | 0.699219 |
c095c2c47b31060e7436423f5cc50ba683c375ce | 1,571 | cs | C# | test/FunctionalTests/Microsoft.OData.Core.Tests/UriParser/ODataValueAssertions.cs | Sreejithpin/odata.net | b54d376a382440df9074e78ca2e76b080965a2eb | [
"CC-BY-3.0"
] | 629 | 2015-01-02T08:40:43.000Z | 2022-03-28T15:28:06.000Z | test/FunctionalTests/Microsoft.OData.Core.Tests/UriParser/ODataValueAssertions.cs | Sreejithpin/odata.net | b54d376a382440df9074e78ca2e76b080965a2eb | [
"CC-BY-3.0"
] | 2,078 | 2015-01-06T05:44:13.000Z | 2022-03-31T08:37:22.000Z | test/FunctionalTests/Microsoft.OData.Core.Tests/UriParser/ODataValueAssertions.cs | Sreejithpin/odata.net | b54d376a382440df9074e78ca2e76b080965a2eb | [
"CC-BY-3.0"
] | 412 | 2015-01-06T06:57:15.000Z | 2022-03-11T13:40:39.000Z | //---------------------------------------------------------------------
// <copyright file="ODataValueAssertions.cs" company="Microsoft">
// Copyright (C) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
// </copyright>
//--------------------------------... | 35.704545 | 127 | 0.565245 |
1501d0cf786a980a09e17d34ef223c90f82c0f6a | 841 | cs | C# | TemsTransport/Hosting/HostedTemsTransportConfiguration.cs | TIBCOSoftware/msg-tems-wcf | 802ddffd6e5c7d43f8363877a4a0883ebb8fc8fe | [
"BSD-3-Clause"
] | null | null | null | TemsTransport/Hosting/HostedTemsTransportConfiguration.cs | TIBCOSoftware/msg-tems-wcf | 802ddffd6e5c7d43f8363877a4a0883ebb8fc8fe | [
"BSD-3-Clause"
] | null | null | null | TemsTransport/Hosting/HostedTemsTransportConfiguration.cs | TIBCOSoftware/msg-tems-wcf | 802ddffd6e5c7d43f8363877a4a0883ebb8fc8fe | [
"BSD-3-Clause"
] | null | null | null | /*
* Copyright © 2021. TIBCO Software Inc.
* This file is subject to the license terms contained
* in the license file that is distributed with this file.
*
*/
using System;
using System.ServiceModel.Activation;
using com.tibco.wcf.tems.ActivatorService.Activation;
namespace com.tibco.wcf.tems.Activa... | 30.035714 | 125 | 0.694411 |
123dcf87907726c092db41630ee3bf5aa6bf9b01 | 266 | cs | C# | src/Hosting/samples/GenericWebHost/WebHostServiceOptions.cs | natemcmaster/Home | cfbacd7456be8d04ec5b34ac219fc2adb435fb7c | [
"Apache-2.0"
] | 2 | 2019-04-08T16:46:59.000Z | 2019-09-13T16:59:47.000Z | src/Hosting/samples/GenericWebHost/WebHostServiceOptions.cs | nnvbmmm/AspNetCore | 87629bbad906e9507026692904b6bcb5021cdd33 | [
"Apache-2.0"
] | null | null | null | src/Hosting/samples/GenericWebHost/WebHostServiceOptions.cs | nnvbmmm/AspNetCore | 87629bbad906e9507026692904b6bcb5021cdd33 | [
"Apache-2.0"
] | 2 | 2018-12-01T15:46:43.000Z | 2020-01-04T09:57:46.000Z | using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.Hosting;
namespace GenericWebHost
{
public class WebHostServiceOptions
{
public Action<HostBuilderContext, IApplicationBuilder> ConfigureApp { get; internal set; }
}
} | 24.181818 | 98 | 0.763158 |
0605729654f01a401ab9460787334dc887ea3724 | 1,105 | cs | C# | Sources/Showzup/Options/OptionsDecoratorPresenter.cs | silphid/silphid.unity | 47bd52fd4e72326ce04cc438af204aa24fa042f7 | [
"MIT",
"BSD-3-Clause"
] | 32 | 2017-12-08T10:46:38.000Z | 2021-12-06T04:27:14.000Z | Sources/Showzup/Options/OptionsDecoratorPresenter.cs | Silphid/Silphid.Unity | 47bd52fd4e72326ce04cc438af204aa24fa042f7 | [
"MIT",
"BSD-3-Clause"
] | 3 | 2017-07-21T06:46:53.000Z | 2017-12-03T23:34:55.000Z | Sources/Showzup/Options/OptionsDecoratorPresenter.cs | silphid/silphid.unity | 47bd52fd4e72326ce04cc438af204aa24fa042f7 | [
"MIT",
"BSD-3-Clause"
] | 6 | 2017-12-08T17:10:38.000Z | 2021-08-24T00:55:17.000Z | using System;
using UniRx;
namespace Silphid.Showzup
{
public class OptionsDecoratorPresenter : IPresenter
{
private readonly IPresenter _inner;
private readonly Func<IOptions, IOptions> _optionsSelector;
private readonly Func<object, IOptions, IOptions> _inputOptionsSelector;
... | 33.484848 | 113 | 0.647059 |
03b22a31b1028c65eb054961e183fcd799a6147f | 1,814 | cs | C# | src/OpenMacroBoard.SDK/Internals/DeviceContextInternal.cs | OpenMacroBoard/OpenMacroBoard-Core | 119f553f6cef4dbbc5622a2debd1343a6c7fabdf | [
"MIT"
] | 2 | 2018-12-12T19:40:16.000Z | 2018-12-12T19:40:24.000Z | src/OpenMacroBoard.SDK/Internals/DeviceContextInternal.cs | OpenMacroBoard/OpenMacroBoard-Core | 119f553f6cef4dbbc5622a2debd1343a6c7fabdf | [
"MIT"
] | 2 | 2018-12-15T14:45:48.000Z | 2018-12-15T14:46:27.000Z | src/OpenMacroBoard.SDK/Internals/DeviceContextInternal.cs | OpenMacroBoard/OpenMacroBoard-Core | 119f553f6cef4dbbc5622a2debd1343a6c7fabdf | [
"MIT"
] | 1 | 2018-09-23T05:47:17.000Z | 2018-09-23T05:47:17.000Z | using System;
using System.Collections.Generic;
namespace OpenMacroBoard.SDK.Internals
{
internal sealed class DeviceContextInternal : IDeviceContext
{
private readonly MergedDeviceListener mergedDeviceListener = new();
private readonly List<IDisposable> disposeWithContext = new();
priv... | 31.824561 | 113 | 0.640573 |
0f701f07b506e921c1abd7dcdb58b692ad90b887 | 641 | cs | C# | MadalinaBalaita/Imobile/Imobile.Core/Calculators/InitialPriceCalc/InitialPrice.cs | madalinabalaita/tap2020-t01 | ba76633d7767c22866bdaa632588fadd78dca8e1 | [
"MIT"
] | null | null | null | MadalinaBalaita/Imobile/Imobile.Core/Calculators/InitialPriceCalc/InitialPrice.cs | madalinabalaita/tap2020-t01 | ba76633d7767c22866bdaa632588fadd78dca8e1 | [
"MIT"
] | null | null | null | MadalinaBalaita/Imobile/Imobile.Core/Calculators/InitialPriceCalc/InitialPrice.cs | madalinabalaita/tap2020-t01 | ba76633d7767c22866bdaa632588fadd78dca8e1 | [
"MIT"
] | null | null | null | using System;
using Imobile.Core.Estates;
using Imobile.Core.Calculators.Comissioncalc;
namespace Imobile.Core.Calculators.InitialPriceCalc
{
public abstract class InitialPrice : IInitialPrice
{
public abstract decimal GetInitPrice(Estate estate);
public decimal Get_price_fromLandlord(Estate e... | 23.740741 | 60 | 0.655226 |
353e1b8e54525f5dde89f4772cf6afc8eddf2096 | 562 | cs | C# | Assets/Script/controller/controllerM/InputFieldcommand.cs | Myhcreateor/horrible-mvc-Project | 7f007aec8b68867d9e3aa638f9c87f84375d07cd | [
"MIT"
] | 2 | 2020-12-21T07:52:15.000Z | 2021-05-16T07:55:08.000Z | Assets/Script/controller/controllerM/InputFieldcommand.cs | Myhcreateor/horrible-mvc-Project | 7f007aec8b68867d9e3aa638f9c87f84375d07cd | [
"MIT"
] | 1 | 2021-05-13T16:37:38.000Z | 2021-05-13T16:37:38.000Z | Assets/Script/controller/controllerM/InputFieldcommand.cs | Myhcreateor/horrible-mvc-Project | 7f007aec8b68867d9e3aa638f9c87f84375d07cd | [
"MIT"
] | 1 | 2021-04-21T16:04:55.000Z | 2021-04-21T16:04:55.000Z | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InputFieldcommand : IC
{
public void Todo(Observer t)
{
if (t.msg == Cmd.ShowImageAndText)
{
//InputFieldComponent.instance.ShowImageAndText();
//AppFactory.instances.Todo(new Ob... | 24.434783 | 84 | 0.629893 |
a1dccb31347664f5ac36847f237932c5f2f124e3 | 815 | cs | C# | Sources/SqlDatabase.Test/TestApi/PgSqlQuery.cs | max-ieremenko/SqlDatabase | ad898429e529443f73e904a2800db1023ff2d717 | [
"MIT"
] | 8 | 2018-07-13T13:55:26.000Z | 2022-01-03T07:29:27.000Z | Sources/SqlDatabase.Test/TestApi/PgSqlQuery.cs | max-ieremenko/SqlDatabase | ad898429e529443f73e904a2800db1023ff2d717 | [
"MIT"
] | 10 | 2019-02-27T21:02:42.000Z | 2021-12-25T12:44:06.000Z | Sources/SqlDatabase.Test/TestApi/PgSqlQuery.cs | max-ieremenko/SqlDatabase | ad898429e529443f73e904a2800db1023ff2d717 | [
"MIT"
] | 2 | 2018-12-19T19:38:11.000Z | 2021-11-09T13:00:55.000Z | using System.Configuration;
using Npgsql;
namespace SqlDatabase.TestApi
{
internal static class PgSqlQuery
{
public static string ConnectionString => ConfigurationManager.ConnectionStrings["pgsql"].ConnectionString;
public static string DatabaseName => new NpgsqlConnectionStringBuilder(Connec... | 27.166667 | 114 | 0.604908 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.