content
stringlengths
5
1.04M
avg_line_length
float64
1.75
12.9k
max_line_length
int64
2
244k
alphanum_fraction
float64
0
0.98
licenses
list
repository_name
stringlengths
7
92
path
stringlengths
3
249
size
int64
5
1.04M
lang
stringclasses
2 values
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using ChartJSCore.Models; using Mate.DataCore.Data.Context; using Mate.DataCore.Nominal; using Microsoft.AspNetCore.Mvc; namespace Mate.ViewComponents { public class StockEvolutionViewComponent : ViewComponent { ...
44.83
139
0.517511
[ "Apache-2.0" ]
JulianWolfgangVonRoete/MATE
Mate/ViewComponents/StockEvolutionViewComponent.cs
4,487
C#
using System.Collections; using System.Collections.Generic; using UnityEngine; /// <summary> /// ゲームプレイ領域 /// </summary> public class PlayArea : MonoBehaviour { /// <summary> /// 範囲を決める矩形 /// </summary> [SerializeField] private Rect _areaRect = new Rect(-5f, -5f, 10f, 10f); /// <summary> ...
30.830357
122
0.618303
[ "MIT" ]
neuneu9/Unity1week_20200810_Scripts
Scripts/Play/PlayArea.cs
3,589
C#
// Note: this script has to be on an always-active UI parent, so that we can // always find it from other code. (GameObject.Find doesn't find inactive ones) using UnityEngine; using UnityEngine.UI; public partial class UIRespawn : MonoBehaviour { public GameObject panel; public Button button; void Update...
29.863636
79
0.659056
[ "MIT" ]
TUmedu/moonwaker
Assets/uMMORPG/Scripts/_UI/UIRespawn.cs
659
C#
namespace CSharpBasics { public class Collection { public static void Arrays_1D(){ int[] scores;//declare an array scores = new int[5];//initializing of an array -> this will assign a 20 bytes memory block // insert elements scores[0] = 50; sco...
31.965217
102
0.428183
[ "MIT" ]
220328-uta-sh-net-ext/Vladimir-Shnyakin
Materials/B/CSharpBasics/CSharpArrays.cs
3,676
C#
// Copyright (c) Microsoft Corporation. // All rights reserved. // Licensed under the MIT license. // See license in the project root for license information. namespace Microsoft.Graph.ODataTemplateWriter.CodeHelpers.Cpp.Entities { using Microsoft.Graph.ODataTemplateWriter.CodeHelpers.Cpp.Helpers; using Syste...
41.374233
170
0.602165
[ "MIT" ]
cpp11nullptr/MSGraph-SDK-Code-Generator
src/GraphODataTemplateWriter/CodeHelpers/Cpp/Entities/RequestEntity.cs
6,746
C#
using System.Text.Json.Serialization; namespace Essensoft.AspNetCore.Payment.Alipay.Response { /// <summary> /// MybankCreditSceneprodLprQueryResponse. /// </summary> public class MybankCreditSceneprodLprQueryResponse : AlipayResponse { /// <summary> /// 贷款利率基于LPR基准利率数据。 贷款利率为年利率为1...
27.433962
72
0.553645
[ "MIT" ]
LuohuaRain/payment
src/Essensoft.AspNetCore.Payment.Alipay/Response/MybankCreditSceneprodLprQueryResponse.cs
1,682
C#
using System.Collections; using System.Collections.Generic; using UnityEngine; public class Goal : MonoBehaviour { public Transform startPos; public int score; public ChangeScene sceneManager; private void Awake() { sceneManager = GameObject.FindObjectOfType<ChangeScene>(); } vo...
19.886364
105
0.585143
[ "MIT" ]
Jhar226/AGGP-231c-Labs
Lab01/AGGP 231c - Lab01/Assets/Scripts/Goal.cs
877
C#
// Copyright 2004-2021 Castle Project - http://www.castleproject.org/ // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless re...
29.815789
81
0.704325
[ "Apache-2.0" ]
belav/Core
src/Castle.Core/Components.DictionaryAdapter/IDictionaryEdit.cs
1,135
C#
using System.IO; namespace AudioMog.Core.Audio.ExtraData { public class OggVorbisExtraData : ACodecExtraData { public byte Version; public uint LoopStart; public uint LoopEnd; public uint NumberOfSamples; public uint HeaderSize; public uint SeekTableSize; public ushort UnknownAt18; public OggVorbis...
30.44186
85
0.710466
[ "MIT" ]
Yoraiz0r/AudioMog
AudioMog/Audio/ExtraData/OggVorbisExtraData.cs
1,311
C#
using System; public static class Test { public static void Main() { RunTest(() => Console.WriteLine ($"Initializing the map took {1}ms")); } static void RunTest (Action callback) { callback(); } }
17.416667
72
0.665072
[ "Apache-2.0" ]
AvolitesMarkDaniel/mono
mcs/tests/test-interpolation-03.cs
209
C#
using Microsoft.Boogie; using System; using ProgTransformation; using System.Diagnostics; using System.Linq; using System.IO; using SymDiffUtils; namespace SymdiffPreprocess { /// <summary> /// Put any transformations that need to be done to prepare a BPL file for SymDiff /// (e.g. specific to some front ...
33.643564
149
0.546792
[ "MIT" ]
aheroine/SIR-use
Sources/SymDiffPreProcess/source/PreProcess.cs
3,398
C#
/************************************************************************************* Toolkit for WPF Copyright (C) 2007-2019 Xceed Software Inc. This program is provided to you under the terms of the Microsoft Public License (Ms-PL) as published at https://github.com/xceedsoftware/wpftoolkit/blob/m...
20.45283
101
0.51476
[ "MIT" ]
O-Debegnach/Supervisor-de-Comercio
wpftoolkit-master/ExtendedWPFToolkitSolution/Src/Xceed.Wpf.Toolkit/DateTimeUpDown/Implementation/DateTimeInfo.cs
1,086
C#
using System; using System.Linq; using System.Reflection; using FluentAssertions; namespace TicTacToeTests.Validators { public class ValidationInfo { private readonly string _name; private readonly Type _type; public ValidationInfo(string name, Type type) { _name =...
30.906977
101
0.574868
[ "MIT" ]
Fyzxs/MicroObjectTicTacToe
TicTacToeTests/Validators/ValidationInfo.cs
1,331
C#
namespace Qa.UseExistDbContext.MultiTenancy { public static class MultiTenancyConsts { /* Enable/disable multi-tenancy easily in a single point. * If you will never need to multi-tenancy, you can remove * related modules and code parts, including this file. */ public ...
29.75
66
0.658263
[ "MIT" ]
liangshiw/AbpDataProectionSamles
samples/Qa.UseExistDbContext/aspnet-core/src/Qa.UseExistDbContext.Domain.Shared/MultiTenancy/MultiTenancyConsts.cs
359
C#
namespace Sitecore.Foundation.Search.Repositories { using Sitecore.Foundation.Search.Models; public interface IMallSearchRepository : ISearchRepository { SearchItems GetAllMalls(); } }
23.333333
62
0.738095
[ "Apache-2.0" ]
jaydipkotadiya1605/Code
src/Foundation/Search/code/Repositories/IMallSearchRepository.cs
212
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics; using osu.Framework.Input.Events; using osu.Game.Graphics.Containers; using osuTK; namespace osu.Game.Graphics.UserInterface { ...
24.255814
80
0.439597
[ "MIT" ]
Altenhh/osu
osu.Game/Graphics/UserInterface/LoadingButton.cs
2,003
C#
namespace Pitstop.Infrastructure.Messaging; public interface IMessageHandlerCallback { Task<bool> HandleMessageAsync(string messageType, string message); }
26.833333
70
0.826087
[ "Apache-2.0" ]
NileshGule/pitstop
src/Infrastructure.Messaging/IMessageHandlerCallback.cs
163
C#
using System.Collections; using System.Collections.Generic; using UnityEngine; using System; // 날짜 : 2021-09-26 PM 9:47:41 // 작성자 : Rito // https://www.youtube.com/watch?v=PGk0rnyTa1U namespace Rito.MillionDust { using SF = UnityEngine.SerializeField; /*=======================================================...
31.308696
100
0.52701
[ "MIT" ]
rito15/Unity-Million-Dust
Million Dust/Scripts/DustManager.cs
7,455
C#
using System; using System.Collections.Generic; namespace csharp { public class Program { public static void Main(string[] args) { //Console.WriteLine("OMGHAI!"); IList<Item> Items = new List<Item>{ new Item {Name = "+5 Dexterity Vest", SellIn = 10, Qua...
33.103448
90
0.427083
[ "MIT" ]
mw509/GildedRose-Refactoring-Kata
csharp/Program.cs
1,922
C#
using System; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Newtonsoft.Json; using VarietyHiggstGushed.Model; using Windows.ApplicationModel.Core; using Windows.Storage; using Windows.UI.Core; namespace VarietyHiggstGushed.ViewModel { public class AccountGoverment { ...
30.739437
104
0.518213
[ "MIT" ]
lindexi/UWP
uwp/src/VarietyHiggstGushed/VarietyHiggstGushed/ViewModel/AccountGoverment.cs
4,397
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fi...
54.539561
181
0.679211
[ "Apache-2.0" ]
KenHundley/aws-sdk-net
sdk/src/Services/IoTDeviceAdvisor/Generated/_bcl35/AmazonIoTDeviceAdvisorClient.cs
57,212
C#
// ******************************************************************************************************** // Product Name: DotSpatial.Projection // Description: The basic module for MapWindow version 6.0 // ******************************************************************************************************** /...
48.742857
111
0.595545
[ "MIT" ]
AlexanderSemenyak/DotSpatial
Source/DotSpatial.Projections/GeographicCategories/Antarctica.cs
3,412
C#
namespace DNTScanner.Core { /// <summary> /// WiaImage Format /// </summary> public sealed class WiaImageFormat { private WiaImageFormat(string value) { Value = value; } /// <summary> /// Gets or sets a WiaImage Format /// </summary> public string Value { ge...
30.25
106
0.571074
[ "Apache-2.0" ]
VahidN/DNTScanner.Core
DNTScanner.Core/WiaImageFormat.cs
1,212
C#
using Trowel.Common.Transport; using System.Collections.Generic; using System.Linq; namespace Trowel.BspEditor.Editing.Components.Compile.Specification { public class CompileTool { public string Name { get; set; } public string Description { get; set; } public int Order { get; set; } ...
31.470588
80
0.564486
[ "BSD-3-Clause" ]
mattiascibien/trowel
Trowel.BspEditor.Editing/Components/Compile/Specification/CompileTool.cs
1,072
C#
using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace New.Models { public class Product1 { public int ProductId { get; set; } public string ProductName { get; set; } public int Price { get; set; } public int OrderId { get; set; } ...
28.789474
71
0.616088
[ "MIT" ]
DikshaGunnewar/AllAssignmentsSDNBackUp
09Aug2017AssigmnetToBeCompleted - Copy/New/New/Models/Product1.cs
549
C#
using Git.Storage.Web.Lib; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using Git.Framework.Controller; using Git.Framework.DataTypes.ExtensionMethods; using Git.Storage.Entity.Store; using Git.Storage.Provider.Client; using Git.Storage.Web.Lib.Filter; usin...
27.903226
102
0.568786
[ "MIT" ]
KittenCN/WMS
Git.Storage.Web/Areas/Client/Controllers/SupplierController.cs
1,784
C#
using Antlr4.Runtime.Misc; using Antlr4.Runtime.Tree; using Sast.AbstractSTree.Interfaces; using Sast.AbstractSTree.Models.Nodes; namespace Sast.AbstractSTree.Cores.Visitors { public class BaseNodeVisitor : AbstractParseTreeVisitor<BaseNode> { #region Override methods public override BaseNode VisitChildren([No...
20.863636
70
0.680828
[ "MIT" ]
wiseants/Sast
Sast.AbstractSTree/Cores/Visitors/BaseNodeVisitor.cs
920
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; using Microsoft.AspNe...
32.413043
111
0.625755
[ "Apache-2.0" ]
icyjiang/Microsoft.AspNet.Routing
src/Microsoft.AspNet.Routing/Constraints/RegexRouteConstraint.cs
1,491
C#
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System.IO; using System.Text; using System.Text.Json; using Azure.Core; namespace Azure.Media.Analytics.Edge.Models { public partial class MediaGraphInstance { /// <summary> /// Deserialize ...
26.444444
71
0.631653
[ "MIT" ]
ChenglongLiu/azure-sdk-for-net
sdk/mediaservices/Azure.Media.Analytics.Edge/src/Customization/MediaGraphInstance.cs
716
C#
using System; using System.ComponentModel; using EfsTools.Attributes; using EfsTools.Utils; using Newtonsoft.Json; namespace EfsTools.Items.Nv { [Serializable] [NvItemId(805)] [Attributes(9)] public class DcsTxFreqComp { [ElementsCount(16)] [ElementType("int8")] ...
19.333333
43
0.593596
[ "MIT" ]
HomerSp/EfsTools
EfsTools/Items/Nv/DcsTxFreqCompI.cs
406
C#
namespace CompanyDirectory.Web.Models { public class Settings { public string Api { get; set; } } }
15.125
39
0.61157
[ "MIT" ]
jacobladams/creating-cloud-infrastructure-with-c-sharp-and-pulumi
CompanyDirectory.Web/Models/Settings.cs
123
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("06...
37.864865
84
0.743041
[ "MIT" ]
Bullsized/Assignments-Basics
02 Exams/12 Programming Basics Exam - 19 March 2017 - Evening/06 Control Num/Properties/AssemblyInfo.cs
1,404
C#
// ========================================================================== // Notifo.io // ========================================================================== // Copyright (c) Sebastian Stehle // All rights reserved. Licensed under the MIT license. // ======================================================...
34.25
140
0.534063
[ "MIT" ]
idist-hn/notifo
backend/src/Notifo.Domain.Integrations/Smtp/SmtpIntegration.cs
4,934
C#
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by Entitas.CodeGeneration.Plugins.ComponentContextApiGenerator. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-ge...
41.905263
135
0.612158
[ "MIT" ]
et9930/ECS-Game
Assets/Script/Generated/Game/Components/GameMapConfigComponent.cs
3,981
C#
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information. // Ported from um/dwrite.h in the Windows SDK for Windows 10.0.19041.0 // Original source is Copyright © Microsoft. All rights reserved. using System; using System.Runtime....
48.47561
245
0.693836
[ "MIT" ]
manju-summoner/terrafx.interop.windows
sources/Interop/Windows/um/dwrite/IDWriteFontFamily.cs
3,977
C#
using ModusTempus.GUI.Activity; namespace ModusTempus.GUI.Group { public class GroupController { private GroupModel _groupModel; private ActivityModel _activityModel; public GroupController(GroupModel groupModel, ActivityModel activityModel) { _groupModel = groupModel; _activityModel = activityModel;...
18.392157
76
0.731343
[ "MIT" ]
vbidin/modus-tempus
ModusTempus.GUI/Group/GroupController.cs
940
C#
//******************************************************************************************************************************************************************************************// // Public Domain ...
35.444828
190
0.38136
[ "MIT" ]
neos-sdi/adfsmfa
Neos.IdentityServer 3.1/Neos.IdentityServer.MultiFactor.WebAuthN.Common/Library/CBor/Numbers/ERationalCharArrayString.cs
10,279
C#
// Copyright (c) 2018 Aurigma Inc. All rights reserved. // Licensed under the MIT License. See LICENSE file in the project root for full license information. // using System; using System.ComponentModel; using System.Drawing; using System.Web.UI; namespace Aurigma.GraphicsMill.AjaxControls { [System.Drawing.Toolbo...
29.258794
131
0.529841
[ "MIT" ]
aurigma/WebControls
AjaxControls/Controllers/RectangleRubberband.cs
11,645
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Sh...
37.432432
84
0.74296
[ "MIT" ]
iluxonchik/distributed-applications-development-course
lab_3/Chat/Shared/Properties/AssemblyInfo.cs
1,388
C#
using System; using System.Threading.Tasks; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using AbpApi.Localization; using Volo.Abp.Account.Localization; using Volo.Abp.Authorization.Permissions; using Volo.Abp.UI.Navigation; using Volo.Abp.Users; using AbpApi.Permissions; ...
32.961039
115
0.598503
[ "MIT" ]
bartvanhoey/AbpApiConsumedByXamarin
XamarinForms/AbpApi/src/AbpApi.Blazor/Menus/AbpApiMenuContributor.cs
2,540
C#
using System; using AppKit; using CoreGraphics; using Foundation; using HotUI.Mac.Controls; using HotUI.Mac.Extensions; namespace HotUI.Mac.Handlers { public class ListViewHandler : AbstractHandler<ListView, HUITableView> { public static readonly PropertyMapper<ListView> Mapper = new PropertyMapper<List...
26.659574
113
0.631285
[ "MIT" ]
codemonkeh-dave/HotUI
src/HotUI.Mac/Handlers/ListViewHandler.cs
1,255
C#
using System; using System.ComponentModel.Design; using System.IO; using System.Text; using System.Web.UI; using System.Web.UI.Design; namespace BBX.Control { public class TabControlDesigner : ControlDesigner { private DesignerVerbCollection _verbs; public override DesignerVerbCollection Verbs { get { ...
25
84
0.700625
[ "MIT" ]
NewLifeX/BBX
BBX.Control/TabControlDesigner.cs
1,654
C#
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.296 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated>...
38.649682
113
0.592205
[ "MIT" ]
saludnqn/laboratorio
WebLab/Informes/ResultadoSinOrdenA5.cs
12,138
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using Agent.Sdk; using Microsoft.TeamFoundation.Build.WebApi; using Microsoft.TeamFoundation.DistributedTask.WebApi; using Microsoft.VisualStudio.Services.Common; using Microsoft.Vi...
49.492701
217
0.626945
[ "MIT" ]
Loovax/azure-pipelines-agent
src/Agent.Plugins/PipelineArtifact/PipelineArtifactPluginV2.cs
13,563
C#
using System; using System.Threading; namespace Pat.Subscriber.IntegrationTests.Helpers { public class MessageWaiter<T> { private readonly EventWaitHandle _messageReceivedWaiter; private CapturedMessage<T> _message; public MessageWaiter(MessageReceivedNotifier<T> messageNotifier, Func...
30.741935
114
0.611752
[ "Apache-2.0" ]
Bigtalljosh/Pat.Subscriber
Pat.Subscriber.IntegrationTests/Helpers/MessageWaiter.cs
955
C#
namespace ASLHelper.UnityHelper; public class MonoImage { public string Name { get; internal set; } public nint Address { get; internal set; } public int ClassCount { get; internal set; } public nint ClassCache { get; internal set; } }
25.4
49
0.69685
[ "MIT" ]
just-ero/asl-help
LiveSplit.ASLHelper/UnityHelper/MonoHelpers/MonoObjects/MonoImage.cs
256
C#
/* * Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "l...
49.39023
230
0.651917
[ "Apache-2.0" ]
DetlefGolze/aws-sdk-net
sdk/src/Services/MQ/Generated/_bcl45/AmazonMQClient.cs
83,914
C#
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "li...
49.912
182
0.676871
[ "Apache-2.0" ]
philasmar/aws-sdk-net
sdk/src/Services/CodeCommit/Generated/Model/InvalidRelativeFileVersionEnumException.cs
6,239
C#
#nullable enable using System; using System.ComponentModel; using System.Diagnostics; using System.Runtime.CompilerServices; namespace Elffy.UI { /// <summary>Root panel of UI tree</summary> public sealed class RootPanel : Panel { private readonly UILayer _uiLayer; private Control? _relayo...
32.352113
146
0.615586
[ "MIT" ]
ikorin24/Elffy
src/Elffy.Engine/UI/RootPanel.cs
2,299
C#
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Net; using System.Net.Http; using System.Th...
41.54
222
0.588509
[ "Apache-2.0" ]
Mythz123/AspNetWebHooks
src/Microsoft.AspNet.WebHooks.Custom.Api/Controllers/WebHookRegistrationsController.cs
12,464
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IntegrationTesting.Components.Database { public class AnimalStore : IAnimalStore { private readonly IDatabase _database; public AnimalStore(IDatabase database) ...
28.372881
94
0.51135
[ "MIT" ]
mirusser/Learning-dontNet
src/Testing/IntegrationTesting/Components/Database/AnimalStore.cs
1,676
C#
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using System.Linq; using Microsoft.Protocols.TestTools.StackSdk.Asn1; namespace Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpbcgr.Mcs { /* Segmentat...
24.880597
101
0.559088
[ "MIT" ]
0neb1n/WindowsProtocolTestSuites
ProtoSDK/MS-RDPBCGR/ASNT125/Segmentation.cs
1,669
C#
// Copyright (c) 2019-2021 ReactiveUI Association Incorporated. All rights reserved. // ReactiveUI Association Incorporated licenses this file to you under the MIT license. // See the LICENSE file in the project root for full license information. using System; using System.Collections.Generic; using Microsoft.CodeAna...
43.272727
122
0.742297
[ "MIT" ]
cabauman/PropertyChanged
src/ReactiveMarbles.PropertyChanged.SourceGenerator/Helpers/RoslynExtensions.cs
1,430
C#
/************************************************************************************ Copyright : Copyright 2017 Oculus VR, LLC. All Rights reserved. Licensed under the Oculus VR Rift SDK License Version 3.4.1 (the "License"); you may not use the Oculus VR Rift SDK except in compliance with the License, which is ...
34.54
113
0.653156
[ "MIT" ]
AIRobolab-unilu/vr-teleop
Assets/Oculus/VR/Scripts/Util/OVRResetOrientation.cs
1,727
C#
/*** * Copyright (C) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. * * File:AssemblyInfo.cs ****/ using System.Reflection; using System.Resources; using System.Runtime.CompilerServices; using System.Runtime.InteropServic...
42.306452
105
0.691956
[ "MIT" ]
Bhaskers-Blu-Org2/pmod
samples/DemoApp/__build/vs.build/classic/DemoAppUI/Properties/AssemblyInfo.cs
2,624
C#
using CodeTranslator.Common; using System; using System.Collections.Generic; using System.Text; namespace CodeTranslator.Core.Parser.Components { internal class DeclaredFunction : Function { public override BasicType FunctionType => BasicType.Statement; public DeclaredFunction(string content)...
20.333333
70
0.70765
[ "MIT" ]
asd135hp/CodeTranslator
CodeTranslator/Core/Parser/Components/DeclaredFunction.cs
368
C#
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace T4FluentNH.Tests.EntityTypes { public partial class ETSimpleEntity : Domain.Entity { public virtual string Name { get; set; } public virtual ETCodeListEntity CodeListE...
34.409091
117
0.686262
[ "MIT" ]
maca88/T4FluentNH
Source/T4FluentNH/T4FluentNH.Tests/EntityTypes/ETSimpleEntity.cs
1,516
C#
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Microsoft.CodeAnalysis.CSharp.Symbols; using Microsoft.CodeAnalysis.CSharp.Symbols.Metadata.PE;...
39.745407
183
0.638579
[ "MIT" ]
nikitaodnorob/pl-roslyn
src/Compilers/CSharp/Test/Emit/Attributes/AttributeTests_NullableContext.cs
15,145
C#
namespace WeiboSharp.Classes { public enum InstaLoginResult { Success, BadPassword, InvalidUser, TwoFactorRequired, Exception, ChallengeRequired, LimitError, InactiveUser, CheckpointLoggedOut } }
18.666667
32
0.589286
[ "MIT" ]
TimothyMakkison/WeiboSharp
WeiboSharp/Enums/InstaLoginResult.cs
282
C#
// Copyright (c) 2020 Soichiro Sugimoto // Licensed under the MIT License. See LICENSE in the project root for license information. using UnityEngine; namespace LowPassFilter { public class ButterwothFilterComponent : LowPassFilterComponent { [SerializeField] uint _Order = 2; [SerializeField]...
34
110
0.657289
[ "MIT" ]
sotanmochi/LowPassFilter-Unity
Assets/LowPassFilter-Unity/Scripts/ButterwothFilterComponent.cs
784
C#
using System.Collections.Generic; using AutoMapper; using Nancy; using todoist.Infraestructure.DTOs; using todoist.Infraestructure.Entities; namespace todoist.Infraestructure.Helpers { public interface IBaseModuleService { Response RespondWithListOfEntitiesDTO<TEntity, TDTO>(INancyModule Module, IEnume...
32.693333
119
0.643556
[ "MIT" ]
sebalr/core-todoist
Infraestructure/Helpers/BaseModuleService.cs
2,452
C#
using Sdl.Web.Delivery.Service; using SDL.ECommerce.Api.Model; using SDL.ECommerce.Api.Service; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SDL.ECommerce.OData { /// <summary> /// E-Commerce Product Query Service /// </summa...
31.28125
120
0.509158
[ "Apache-2.0" ]
erikssonorjan/ecommerce-framework
dxa.net/ecommerce-framework-dotnet/SDL.ECommerce.OData/Service/ProductQueryService.cs
3,005
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("Win...
38.027027
84
0.749822
[ "Apache-2.0" ]
neilchennc/WindowThumbnail
WindowThumbnail/Properties/AssemblyInfo.cs
1,410
C#
using FistVR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnityEngine; namespace Cityrobo { public class QBArmorPiece_Backpack : PlayerBackPack { [Header("QBArmorPiece_Backpack Config")] public string layerName = "Default"; public string attachmentLayerNam...
26
107
0.669683
[ "MIT" ]
TrueLordChanka/FTWScripts
QBArmorPiece_Backpack.cs
2,210
C#
using System; using System.Threading; // Tests that Exchange<object>(object, object) works on variety // of casted types: It just casts a bunch of different types to // object, then makes sure Exchange works on those objects. public class InterlockedExchange7 { private const int c_NUM_LOOPS = 100; private c...
38.231293
174
0.548221
[ "MIT" ]
CyberSys/coreclr-mono
tests/src/CoreMangLib/cti/system/threading/interlocked/interlockedexchange7.cs
5,620
C#
using Android.App; using Android.Widget; using Android.OS; using Android; using Android.Support.V4.App; using Android.Support.V4.Content; using Android.Content.PM; using System; using System.Collections.Generic; using System.Linq; using NmeaParser.Messages; namespace SampleApp.Droid { [Activity(Labe...
39.296703
149
0.540688
[ "Apache-2.0" ]
Haavard94/NmeaParser
src/SampleApp.Droid/MainActivity.cs
7,154
C#
using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTit...
42.833333
85
0.762646
[ "Apache-2.0" ]
danclarke/AspNetIdentity3NPOCODataStores
src/Dan.IdentityNPocoStores/Properties/AssemblyInfo.cs
1,031
C#
using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Data.SqlClient; using System.Linq; using P3Net.Kraken.Data; using P3Net.Kraken.Data.Common; namespace DataAccessDemo.Code { public static class Database { public static IEnumerable<Role> GetRol...
35.375
149
0.52606
[ "MIT" ]
CoolDadTx/p3net-misc
DataAccessDemo/DataAccessDemo/Code/Database.cs
2,266
C#
using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using Disqord; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; namespace MudaeFarm { public interface IMudaeRoller : IHostedService { ...
37.941176
242
0.515659
[ "MIT" ]
Dogeek/MudaeFarm
MudaeFarm/MudaeRoller.cs
9,675
C#
using System; using System.Collections.Specialized; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using System.Threading; using SteamKit2; using System.Net; using Newtonsoft.Json; using SteamAPI.TradeOffers.Enums; using SteamAPI.TradeOffers.Objects; namespace SteamAPI.Trade...
45.134094
190
0.494042
[ "MIT" ]
MariusJusc/csgo_cf
SteamAPI/TradeOffers/TradeOffers.cs
31,639
C#
using System; using System.Reflection; namespace MyWebAppForDeployment.Areas.HelpPage.ModelDescriptions { public interface IModelDocumentationProvider { string GetDocumentation(MemberInfo member); string GetDocumentation(Type type); } }
22.166667
64
0.759398
[ "MPL-2.0", "MPL-2.0-no-copyleft-exception" ]
heartysoft/quicksilver
MyWebAppForDeployment/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs
266
C#
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using JetBrains.Annotations; using Microsoft.EntityFra...
42.421578
179
0.605383
[ "Apache-2.0" ]
DotNetArtist/efcore
src/EFCore.Relational/Query/SqlExpressionFactory.cs
42,464
C#
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. //////////////////////////////////////////////////////////////////////////// // // // Purpose: This class defines ...
39.019553
191
0.538335
[ "MIT" ]
LaudateCorpus1/corert
src/System.Private.CoreLib/src/System/Globalization/StringInfo.cs
13,969
C#
using System; using System.Collections.Generic; using System.Threading.Tasks; using BLL.DTOs; using BLL.DTOs.Objects.Insurance; using BLL.DTOs.Objects.InsuranceOffer; using BLL.Facades.Common; using BLL.QueryObjects; using BLL.Services.Insurance; using BLL.Services.InsuranceOffer; using DAL.Infrastructure.UnitOfWork; ...
36.972789
113
0.599448
[ "MIT" ]
michalSali/InsuranceAgency
src/BLL/Facades/Insurance/InsuranceFacade.cs
5,435
C#
using System; using System.Runtime.InteropServices; namespace GtkDotNet.Raw { public class WebKitContext { [DllImport(Globals.LibWebKit, EntryPoint="webkit_web_context_get_default", CallingConvention = CallingConvention.Cdecl)] public extern static IntPtr GetDefault(); [DllImport(Globa...
31
128
0.758065
[ "MIT" ]
uriegel/GtkDotNet
GtkDotNet/Raw/WebKitContext.cs
496
C#
// *** WARNING: this file was generated by the Pulumi SDK Generator. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Threading.Tasks; using Pulumi.Serialization; namespace Pulumi.Azur...
45.100775
151
0.61241
[ "Apache-2.0" ]
pulumi-bot/pulumi-azure-native
sdk/dotnet/ContainerInstance/V20180401/ContainerGroup.cs
11,636
C#
using System.Data; using System.Data.Common; namespace DbFacade.DataLayer.ConnectionService.MockDb { /// <summary> /// /// </summary> internal class MockDbParameter : DbParameter { /// <summary> /// Gets or sets the type of the database. /// </summary> /// <value> ...
34.073529
130
0.503237
[ "MIT" ]
JSystemsTech/DBFacade.Net
DbFacadeShared/DataLayer/ConnectionService/MockDb/MockDbParameter.cs
4,636
C#
using System; using System.Collections.Generic; using System.Linq; using Scores = System.Collections.Generic.Dictionary<string, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<double>>>; namespace LightGBMSharp { public static class LGBM { /// <summary> /// ...
36.446602
149
0.511987
[ "MIT" ]
ttustonic/LightGBMSharp
LightGBM/LGBM.cs
3,756
C#
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. namespace Mi...
77.096552
726
0.686018
[ "MIT" ]
Agazoth/azure-powershell
src/ConnectedMachine/generated/api/Models/Api20/ErrorDetail.json.cs
11,035
C#
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.17020 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
44.485149
209
0.590919
[ "Apache-2.0" ]
martinca-msft/Gadgeteer
NETMF_42/GadgeteerCore/VisualStudio/Designer/DslPackage/CodeGenerationResource.Designer.cs
4,495
C#
namespace P03_FootballBetting.Data.Models { using System.Collections.Generic; public class Country { //------------ Properties ------------- public int CountryId { get; set; } public string Name { get; set; } //------ Towns ----- [FK] public ICollection<Town> Towns...
24.4
75
0.530055
[ "MIT" ]
radrex/SoftuniCourses
C# Web Developer/C# DB/02.Entity Framework Core/05.Entity Relations/Exercise/P03_FootballBetting/P03_FootballBetting.Data.Models/Country.cs
368
C#
using UnityEngine; using System.Collections; public class EnterSceneArgs { //----进入场景事件的参数 //场景ID public int LevelID; //场景名 public string CurrentSceneName { get { return Application.loadedLevelName; } } }
15.111111
47
0.580882
[ "MIT" ]
yuqtj/UnityGame_college
Assets/Scripts/Application/Args/EnterSceneArgs.cs
302
C#
// Copyright (c) 2019-2021 Andreas Atteneder, All Rights Reserved. // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // Unless requ...
37.248175
121
0.589065
[ "Apache-2.0" ]
kyapp69/KtxUnity
Runtime/Scripts/BasisUniversal.cs
5,105
C#
//----------------------------------------------------------------------- // <copyright file="Page1.cs" company="Marimer LLC"> // Copyright (c) Marimer LLC. All rights reserved. // Website: http://www.lhotka.net/cslanet/ // </copyright> // <summary></summary> //-------------------------------------------------...
24.9375
74
0.553049
[ "MIT" ]
MarimerLLC/cslacontrib
trunk/samples/ActionExtenderSample/ActionExtenderSample.WisejWeb/Page1.cs
1,199
C#
using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GamingRecorderAssistant { public class programConfig { #region Config vars //CONTROLS - Vars for restoring control values public bool re...
28.716981
87
0.671485
[ "Apache-2.0" ]
Erlendftw/GamingRecorderAssistant
GamingRecorderAssistant/programConfig.cs
1,524
C#
using Centaurus.Models; using Centaurus.DAL; using Centaurus.Exchange.Analytics; using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Centaurus.Test.Exchange.Analytics { public class AnalyticsManagerTest : BaseAnalytic...
42.735849
155
0.573951
[ "MIT" ]
PinkDiamond1/centaurus
Centaurus.Test.Exchange.Analytics/AnalyticsManagerTest.cs
2,267
C#
using System.Linq; using Clarity.App.Worlds.Helpers; using Clarity.App.Worlds.Interaction.Tools; using Clarity.App.Worlds.StoryGraph.Editing.Flowchart; using Clarity.Common.CodingUtilities.Sugar.Extensions.Collections; using Clarity.Engine.Interaction.Input; using Clarity.Engine.Interaction.Input.Mouse; using Clarity....
39.84127
162
0.628685
[ "MIT" ]
Zulkir/ClarityWorlds
Source/Clarity.App.Worlds/StoryGraph/Editing/StoryBranchIntoTool.cs
2,512
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; using static LiteDB.Constants; namespace LiteDB.Engine { /// <summary> /// Internal class to read all datafile documents - use only Stream - no cache system (database are m...
32.196721
139
0.537678
[ "MIT" ]
7eXx/LiteDB
LiteDB/Engine/FileReader/FileReaderV8.cs
3,930
C#
using System.IO; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Wexflow.Tasks.Tests { [TestClass] public class Movedir { private static readonly string Src = @"C:\WexflowTesting\Folder"; private static readonly string Dest = @"C:\WexflowTesting\Folder1"; [TestInitia...
26.076923
75
0.567355
[ "MIT" ]
Nongzhsh/WexFlow
tests/Wexflow.Tasks.Tests/Movedir.cs
1,019
C#
/* * Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "l...
44.865979
177
0.680377
[ "Apache-2.0" ]
DetlefGolze/aws-sdk-net
sdk/src/Services/KeyManagementService/Generated/Model/DeleteCustomKeyStoreRequest.cs
4,352
C#
version https://git-lfs.github.com/spec/v1 oid sha256:760c4f0cb9ab138b84236a19eac9de4cbe1b9dde11cf9ab4bb474c4fb2242dda size 2983
32.25
75
0.883721
[ "Apache-2.0" ]
cybex-dev/VRAdventure2
Assets/Moe Baker/Moe Tools/_Editor/Tools/InspectorTools.cs
129
C#
using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.IO; using System.Runtime.CompilerServices; using System.Security.Cryptography; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Imazen.PersistentCache { internal static class ClockEx...
32.099338
111
0.522385
[ "Apache-2.0" ]
ajbeaven/imageflow-dotnet-server
src/Imazen.PersistentCache/UsageTracker.cs
4,849
C#
//------------------------------------------------------------------------------ // <auto-generated /> // // This file was automatically generated by SWIG (http://www.swig.org). // Version 3.0.12 // // Do not make changes to this file unless you know what you are doing--modify // the SWIG interface file instead. //----...
51.4
220
0.748379
[ "Apache-2.0" ]
MrDice/usd-unity-sdk
src/USD.NET/generated/SWIG/SWIGTYPE_p_VtDictionary__IteratorT_std__mapT_std__string_VtValue_std__lessT_t_t_p_std__mapT_std__string_VtValue_std__lessT_t_t__iterator_t.cs
1,542
C#
namespace TeamBuilder.Models { public class EventTeam { public int EventID { get; set; } public Event Event { get; set; } public int TeamId { get; set; } public Team Team { get; set; } } }
19.583333
40
0.557447
[ "MIT" ]
Javorov1103/SoftUni-Course
Databases Advanced - Entity Framework/14. Workshop - Team Builder/TeamBuilder.Models/EventTeam.cs
237
C#
using System; using System.Collections.Generic; using ff14bot; using ff14bot.Managers; using LlamaLibrary.Memory.Attributes; using NavigationTest.InclusionShop; namespace LlamaLibrary.RemoteAgents { public class AgentInclusionShop : AgentInterface<AgentInclusionShop>, IAgent { internal static class Of...
44.976608
179
0.534521
[ "MIT" ]
nt153133/__LlamaLibrary
RemoteAgents/AgentInclusionShop.cs
7,693
C#
using DeepCard.Client.SDK; using DeepCard.Client.Server.Controllers; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.ResponseCompression; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.FileProviders;...
33.671875
122
0.653828
[ "Apache-2.0" ]
StardustDL/DeepCard
src/DeepCard.Client.Server/Startup.cs
2,155
C#
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Web; using System.Web.Mvc; using System.Web.WebPages; using EPiServer.Core; using EPiServer.ServiceLocation; using Ascend2018.Business; using EPiServer.Web.Mvc.Html; using EPiServer.Web.Routing; using EPi...
40.254054
220
0.592319
[ "Apache-2.0" ]
episerver/ascend2018-lab-extend-ui
Alloy/Ascend2018/Helpers/HtmlHelpers.cs
7,447
C#
// // Encog(tm) Core v3.3 - .Net Version // http://www.heatonresearch.com/encog/ // // Copyright 2008-2014 Heaton Research, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at /...
29.30303
76
0.501138
[ "BSD-3-Clause" ]
asad4237/encog-dotnet-core
encog-core-cs/ML/Data/Specific/BiPolarMlData.cs
4,835
C#
using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel; using System.Linq; using System.Runtime.CompilerServices; using System.Threading.Tasks; using System.Windows.Input; using myTask.Domain.Models; using myTask.Helpers; using myTask.Services.Navigation; using...
33.725191
137
0.594839
[ "MIT" ]
SkymanOne/myTask
myTask/myTask/ViewModels/SetWorkingHoursViewModel.cs
4,418
C#
using System; using Earlz.LucidMVC; using Moq; using System.Web; using Earlz.LucidMVC.Authentication; using System.Collections.Generic; using Earlz.LucidMVC.Authentication.Experimental; namespace Earlz.LucidMVC.Tests.Extensions.ServerMocking { /// <summary> /// Server mocking helper extensions /// Prefix Keywords: ...
34.295238
159
0.710081
[ "BSD-3-Clause" ]
Earlz/lucidmvc
LucidMVC.Tests/utilities/ServerMockingExtensions.cs
3,601
C#