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
16c736f60c372e8ecbcc5cc4e1d63e71ef2c2926
1,123
cs
C#
Lacuna/StationServices/Market.cs
rbartsch/Project-Lacuna
59b5ea4dcd7cd78ebe7c98e34b213ec343409196
[ "Apache-2.0" ]
null
null
null
Lacuna/StationServices/Market.cs
rbartsch/Project-Lacuna
59b5ea4dcd7cd78ebe7c98e34b213ec343409196
[ "Apache-2.0" ]
null
null
null
Lacuna/StationServices/Market.cs
rbartsch/Project-Lacuna
59b5ea4dcd7cd78ebe7c98e34b213ec343409196
[ "Apache-2.0" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Lacuna.Trade; namespace Lacuna.StationServices { public class Market : IStationService { public string Name { get; private set; } public Dictionary<TradeGood, BuySellValue> tr...
31.194444
153
0.608192
16e4fdbe8f484ce9e7f1af7d1ba60f1d1424e049
492
cs
C#
Web.Core/Module/ElfService.cs
eyouyou/webcandle
f9696ba3ffedbf0ff807654ddd42f8294ec668a7
[ "MIT" ]
4
2018-03-01T05:33:35.000Z
2020-02-11T16:45:51.000Z
Web.Core/Module/ElfService.cs
eyouyou/webcandle
f9696ba3ffedbf0ff807654ddd42f8294ec668a7
[ "MIT" ]
null
null
null
Web.Core/Module/ElfService.cs
eyouyou/webcandle
f9696ba3ffedbf0ff807654ddd42f8294ec668a7
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.ComponentModel.Composition; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using Web.Core.IModule; using Web.Core.Response; namespace Web.Core.Module { [Export(typeof(IElfService))] publ...
20.5
49
0.691057
e54dd8765eacceb01229870dd15a19354050cc42
937
cs
C#
Zomo.Core/Interfaces/IBotService.cs
DrogonMar/ZomoBot
4233b056a0e5addc2fc359979e8c41ba0adcd6d3
[ "Apache-2.0" ]
1
2020-07-29T06:57:35.000Z
2020-07-29T06:57:35.000Z
Zomo.Core/Interfaces/IBotService.cs
DrogonMar/ZomoBot
4233b056a0e5addc2fc359979e8c41ba0adcd6d3
[ "Apache-2.0" ]
null
null
null
Zomo.Core/Interfaces/IBotService.cs
DrogonMar/ZomoBot
4233b056a0e5addc2fc359979e8c41ba0adcd6d3
[ "Apache-2.0" ]
null
null
null
using System; using Microsoft.Extensions.DependencyInjection; namespace Zomo.Core.Interfaces { public enum ServicePriority : UInt32 { BotOnly = 0, //No other service is allowed to use this! High = 1, Mid = 2, Low = 3 } [AttributeUsage(AttributeTargets.Class)] public...
23.425
82
0.593383
73a542e4d30e114803a4260e530cbbd00212e753
625
cs
C#
tests/ExcelFormulaExpressionParser.Tests/DateFunctionsTests.cs
StefH/ExcelFormulaParser
9e9d624c3232837ce32f9d64e1cb95dccd0eba72
[ "MIT" ]
11
2017-09-23T05:32:32.000Z
2020-12-20T14:39:02.000Z
tests/ExcelFormulaExpressionParser.Tests/DateFunctionsTests.cs
StefH/ExcelFormulaParser
9e9d624c3232837ce32f9d64e1cb95dccd0eba72
[ "MIT" ]
1
2019-07-24T06:18:11.000Z
2019-07-24T06:18:11.000Z
tests/ExcelFormulaExpressionParser.Tests/DateFunctionsTests.cs
StefH/ExcelFormulaParser
9e9d624c3232837ce32f9d64e1cb95dccd0eba72
[ "MIT" ]
2
2017-05-28T14:32:23.000Z
2020-12-20T14:39:09.000Z
using System.Linq.Expressions; using ExcelFormulaExpressionParser.Extensions; using ExcelFormulaExpressionParser.Functions; using NFluent; using Xunit; namespace ExcelFormulaExpressionParser.Tests { public class DateFunctionsTests { [Fact] public void Date() { // Assign ...
25
129
0.6496
80a6709db74bf24075de57a0f9b8a981619ba2f8
845
cs
C#
Rogue is Blands/Assets/Scripts/MonoBehaviors/EquipmentComponent.cs
grubeb2/Rogue-is-Blands
275faca4a281c57c17c98db8ca1ce07f1abcc3ee
[ "MIT" ]
null
null
null
Rogue is Blands/Assets/Scripts/MonoBehaviors/EquipmentComponent.cs
grubeb2/Rogue-is-Blands
275faca4a281c57c17c98db8ca1ce07f1abcc3ee
[ "MIT" ]
1
2017-05-31T19:20:13.000Z
2017-05-31T19:21:28.000Z
Rogue is Blands/Assets/Scripts/MonoBehaviors/EquipmentComponent.cs
grubeb2/Rogue-is-Blands
275faca4a281c57c17c98db8ca1ce07f1abcc3ee
[ "MIT" ]
null
null
null
using System.Collections; using System.Collections.Generic; using UnityEngine; public enum EquipmentSlot { Head, Chest, Legs, Boots, Ring1, Ring2, Hand1, Hand2, TwoHand, Shield } public class EquipmentComponent : MonoBehaviour { private EquipableItem[] equipment; pub...
17.604167
51
0.56568
b2ed549a3c06f8f52a2a3fb7ee0f1c8887e67438
892
cs
C#
src/Griffin.Framework/Griffin.Core/Net/Authentication/IUserAccount.cs
campersau/Griffin.Framework
ffcb701832d8fe59fd41774b1ce4a283f2e93025
[ "Apache-1.1" ]
166
2015-01-13T09:15:59.000Z
2022-03-09T12:47:23.000Z
src/Griffin.Framework/Griffin.Core/Net/Authentication/IUserAccount.cs
campersau/Griffin.Framework
ffcb701832d8fe59fd41774b1ce4a283f2e93025
[ "Apache-1.1" ]
60
2015-01-05T07:13:45.000Z
2020-09-25T16:21:29.000Z
src/Griffin.Framework/Griffin.Core/Net/Authentication/IUserAccount.cs
campersau/Griffin.Framework
ffcb701832d8fe59fd41774b1ce4a283f2e93025
[ "Apache-1.1" ]
73
2015-01-07T14:50:40.000Z
2022-02-03T03:03:02.000Z
using Griffin.Security; namespace Griffin.Net.Authentication { /// <summary> /// Implement this class with your own user account class. /// </summary> public interface IUserAccount { /// <summary> /// User identity (as entered by the user during the login process)...
29.733333
92
0.532511
40d75fd3e372467c7d50e14b2f6bfcbd7a1764c0
1,631
cs
C#
Loops/Loops Exercise/04_Histogram/Program.cs
danstoyanov/CSharp-Programing-Basics
2a7df249b849c9ef1ad14d4b19c55c254ea3754a
[ "MIT" ]
null
null
null
Loops/Loops Exercise/04_Histogram/Program.cs
danstoyanov/CSharp-Programing-Basics
2a7df249b849c9ef1ad14d4b19c55c254ea3754a
[ "MIT" ]
null
null
null
Loops/Loops Exercise/04_Histogram/Program.cs
danstoyanov/CSharp-Programing-Basics
2a7df249b849c9ef1ad14d4b19c55c254ea3754a
[ "MIT" ]
null
null
null
using System; namespace _04_Histogram { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int counterGroupOne = 0; int counterGroupTwo = 0; int counterGroupThree = 0; int counterGroupFour = 0; ...
27.644068
58
0.40466
677a86b98dc320480a57cb1714baba31329856a8
186
cs
C#
EFSM.Designer/ViewModel/TransitionToolTipViewModel.cs
rquackenbush/EmbeddedFiniteStateMachine
5731abeea331f64e0428817cdb3840d94a46d4af
[ "MIT" ]
null
null
null
EFSM.Designer/ViewModel/TransitionToolTipViewModel.cs
rquackenbush/EmbeddedFiniteStateMachine
5731abeea331f64e0428817cdb3840d94a46d4af
[ "MIT" ]
null
null
null
EFSM.Designer/ViewModel/TransitionToolTipViewModel.cs
rquackenbush/EmbeddedFiniteStateMachine
5731abeea331f64e0428817cdb3840d94a46d4af
[ "MIT" ]
1
2020-05-09T11:09:52.000Z
2020-05-09T11:09:52.000Z
namespace EFSM.Designer.ViewModel { public class TransitionToolTipViewModel { public string Condition { get; set; } public string Actions { get; set; } } }
18.6
45
0.639785
f9108420da6d2af1d82456bfdd506b4a0a557d51
8,076
cs
C#
ClAsmTool/Validator.cs
ChrisLomont/CLAsmTool
fb1448c85e6ae74b106293a138a75473ff1ef03f
[ "MIT" ]
2
2019-01-20T13:43:31.000Z
2019-04-05T06:17:26.000Z
ClAsmTool/Validator.cs
ChrisLomont/CLAsmTool
fb1448c85e6ae74b106293a138a75473ff1ef03f
[ "MIT" ]
null
null
null
ClAsmTool/Validator.cs
ChrisLomont/CLAsmTool
fb1448c85e6ae74b106293a138a75473ff1ef03f
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; namespace Lomont.ClAsmTool { static class Validator { public static string[] Descriptions = { "1 = page of lines", ...
35.421053
128
0.373947
505f1ec6684ad6a12efc2e22b6187282744deb2d
1,190
cs
C#
TheQ.Utilities.CloudTools/ExtendedQueue/Decorators/CompressionDecorator.cs
ofthetimelords/CloudTools
3eeb13d3c549f28c232d18372e53933cf35d7768
[ "MIT" ]
3
2015-02-06T03:11:44.000Z
2015-03-27T07:02:47.000Z
TheQ.Utilities.CloudTools/ExtendedQueue/Decorators/CompressionDecorator.cs
ofthetimelords/CloudTools
3eeb13d3c549f28c232d18372e53933cf35d7768
[ "MIT" ]
14
2015-02-06T03:13:08.000Z
2015-07-06T12:04:15.000Z
TheQ.Utilities.CloudTools/ExtendedQueue/Decorators/CompressionDecorator.cs
ofthetimelords/CloudTools
3eeb13d3c549f28c232d18372e53933cf35d7768
[ "MIT" ]
1
2017-01-09T13:12:44.000Z
2017-01-09T13:12:44.000Z
using System.IO; using System.IO.Compression; using System.Threading.Tasks; namespace TheQ.Utilities.CloudTools.Storage.ExtendedQueue.Decorators { /// <summary> /// An <see cref="ExtendedQueueBase" /> decorator that adds compression capabilities. /// </summary> public class CompressionDecorator : DecoratorBas...
33.055556
106
0.762185
50858064757d64ca0f11d9c2acd661033ad148d9
1,173
cs
C#
src/CleanArchitecture.Web/Api/GuestbooksController.cs
cal5barton/ddd-guestbook
5ca491f4c25cd8b3619eea6484c7047055a7006a
[ "MIT" ]
null
null
null
src/CleanArchitecture.Web/Api/GuestbooksController.cs
cal5barton/ddd-guestbook
5ca491f4c25cd8b3619eea6484c7047055a7006a
[ "MIT" ]
null
null
null
src/CleanArchitecture.Web/Api/GuestbooksController.cs
cal5barton/ddd-guestbook
5ca491f4c25cd8b3619eea6484c7047055a7006a
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using DDDGuestbook.Core.Entities; using DDDGuestbook.Core.Interfaces; using DDDGuestbook.Web.Filters; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace DDDGuestbook.Web.Api { [Route("api/[cont...
27.928571
78
0.670077
a68c20c417d39fed4691ffe864479da038d6cda4
1,865
cs
C#
src/SampleImageEditor/SampleImageEditor.Android/MainActivity.cs
andrk0p/BitooBitImageEditor
7eb6f545db321a313829a7780d1a9793864690e6
[ "MIT" ]
16
2019-12-20T08:41:10.000Z
2021-11-25T03:40:40.000Z
src/SampleImageEditor/SampleImageEditor.Android/MainActivity.cs
RajneeshSingh007/BitooBitImageEditor
e94868637955ce4e5a3779c030d764a478e93ace
[ "MIT" ]
5
2021-07-22T18:34:59.000Z
2022-01-11T11:46:08.000Z
src/SampleImageEditor/SampleImageEditor.Android/MainActivity.cs
RajneeshSingh007/BitooBitImageEditor
e94868637955ce4e5a3779c030d764a478e93ace
[ "MIT" ]
12
2020-01-18T17:55:25.000Z
2022-02-17T04:15:33.000Z
using Android.App; using Android.Content; using Android.Content.PM; using Android.OS; using Android.Runtime; namespace SampleImageEditor.Droid { [Activity(Label = "BB Image Editor", Icon = "@mipmap/iconapp", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigC...
41.444444
193
0.691689
c29c99ad7227ac9bc6f77406c094b91952f56e60
14,922
cs
C#
src/Common/Exceptions/AppSettings.cs
grannypron/Gold-Box-Explorer
ba9071f7a487ea1d6e8de45c4ec9bf06ea3e3fe0
[ "MIT" ]
14
2018-09-26T03:10:03.000Z
2021-07-30T18:45:43.000Z
src/Common/Exceptions/AppSettings.cs
grannypron/Gold-Box-Explorer
ba9071f7a487ea1d6e8de45c4ec9bf06ea3e3fe0
[ "MIT" ]
null
null
null
src/Common/Exceptions/AppSettings.cs
grannypron/Gold-Box-Explorer
ba9071f7a487ea1d6e8de45c4ec9bf06ea3e3fe0
[ "MIT" ]
3
2020-03-30T23:01:25.000Z
2021-03-03T16:10:18.000Z
using System; using System.Collections; using System.Collections.Specialized; using System.Configuration; using System.Diagnostics; using System.IO; using System.Reflection; using System.Runtime.CompilerServices; using System.Security.Policy; using System.Text.RegularExpressions; namespace GoldBoxExplorer.Lib.Exceptio...
33.233853
185
0.49236
0931b586a548e1455a151b4a8596e2b889218224
8,464
cs
C#
LFPeasy/LFPeasy/src/Forms/MainForm.cs
Lufzys/LFPeasy
afde7c86abf9058df2d5a5ea88e114f727f1ecce
[ "MIT" ]
4
2021-04-25T03:39:12.000Z
2021-05-02T01:41:54.000Z
LFPeasy/LFPeasy/src/Forms/MainForm.cs
Lufzys/LFPeasy
afde7c86abf9058df2d5a5ea88e114f727f1ecce
[ "MIT" ]
null
null
null
LFPeasy/LFPeasy/src/Forms/MainForm.cs
Lufzys/LFPeasy
afde7c86abf9058df2d5a5ea88e114f727f1ecce
[ "MIT" ]
1
2021-05-02T01:41:56.000Z
2021-05-02T01:41:56.000Z
using LCU; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Net.Http; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using WindowsUI; using...
42.109453
172
0.517013
cf865e05eb3683ba2f677f594c8529f902c1a720
3,116
cs
C#
Orm/Xtensive.Orm.Tests/Storage/AsyncQueries/DelayedQueryTestBase.cs
alex-kulakov/dataobjects-net
7a531837b0ed76a01525e0f2b7fa6a3036db096e
[ "MIT" ]
null
null
null
Orm/Xtensive.Orm.Tests/Storage/AsyncQueries/DelayedQueryTestBase.cs
alex-kulakov/dataobjects-net
7a531837b0ed76a01525e0f2b7fa6a3036db096e
[ "MIT" ]
null
null
null
Orm/Xtensive.Orm.Tests/Storage/AsyncQueries/DelayedQueryTestBase.cs
alex-kulakov/dataobjects-net
7a531837b0ed76a01525e0f2b7fa6a3036db096e
[ "MIT" ]
null
null
null
// Copyright (C) 2019 Xtensive LLC. // All rights reserved. // For conditions of distribution and use, see license. // Created by: Alexey Kulakov // Created: 2019.09.12 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using NUnit.Framework; using Xtensive....
38.95
157
0.675546
cfba448b7656e1a109c27b37cc9591ace053f0e8
10,640
cs
C#
C#/WindowsPhone/LGame-XNA-lib/Loon.Action.Sprite.Painting/DrawableScreen.cs
cping/LGame
6ee0daf43841cbafc9638f73e35cbb1c30bf69ad
[ "Apache-2.0" ]
428
2015-01-02T17:25:20.000Z
2022-03-26T20:38:48.000Z
C#/WindowsPhone/LGame-XNA-lib/Loon.Action.Sprite.Painting/DrawableScreen.cs
TheMadTitanSkid/LGame
6ee0daf43841cbafc9638f73e35cbb1c30bf69ad
[ "Apache-2.0" ]
26
2015-01-19T15:05:48.000Z
2021-06-13T14:22:29.000Z
C#/WindowsPhone/LGame-XNA-lib/Loon.Action.Sprite.Painting/DrawableScreen.cs
TheMadTitanSkid/LGame
6ee0daf43841cbafc9638f73e35cbb1c30bf69ad
[ "Apache-2.0" ]
153
2015-01-07T08:40:09.000Z
2022-02-28T01:47:07.000Z
using Loon.Core.Graphics; using System.Collections.Generic; using Loon.Core.Timer; using Loon.Utils; using Loon.Core.Graphics.Opengl; using Loon.Core; using Loon.Core.Geom; using Loon.Core.Input; namespace Loon.Action.Sprite.Painting { public abstract class DrawableScreen : Screen { private List<Drawa...
28.148148
93
0.440977
68af0d93855fe41aa8e24ca097ebdf9a5a6e3464
2,115
cs
C#
EIDSS v6.1/bv.tests/db.tests/EIDSS_LookupCacheHelperTest.cs
EIDSS/EIDSS-Legacy
2f7f45f1882a899dde6f774c2d38b9f431ce42c1
[ "BSD-2-Clause" ]
2
2017-09-14T03:03:40.000Z
2017-09-15T14:58:47.000Z
EIDSS v6.1/bv.tests/db.tests/EIDSS_LookupCacheHelperTest.cs
EIDSS/EIDSS-Legacy
2f7f45f1882a899dde6f774c2d38b9f431ce42c1
[ "BSD-2-Clause" ]
null
null
null
EIDSS v6.1/bv.tests/db.tests/EIDSS_LookupCacheHelperTest.cs
EIDSS/EIDSS-Legacy
2f7f45f1882a899dde6f774c2d38b9f431ce42c1
[ "BSD-2-Clause" ]
2
2017-09-14T03:03:45.000Z
2019-03-25T23:09:43.000Z
using System.Threading; using EIDSS; using Microsoft.VisualStudio.TestTools.UnitTesting; using System; using bv.common.Diagnostics; using bv.common.db.Core; using bv.tests.Core; namespace bv.tests { /// <summary> ///This is a test class for EIDSS_LookupCacheHelperTest and is intended ...
28.972603
117
0.488889
e997c95ee4b35d8e9e82435b42ed60d04ee15194
694
cs
C#
src/ITGlobal.MarkDocs.Markdown/Format/Impl/Extensions/Icons/IconExtension.cs
ITGlobal/MarkDocs
4f6b5f22c2ffcf0d1368d6eded6b77b44c408765
[ "MIT" ]
4
2017-08-03T15:14:08.000Z
2021-09-23T08:27:09.000Z
src/ITGlobal.MarkDocs.Markdown/Format/Impl/Extensions/Icons/IconExtension.cs
ITGlobal/MarkDocs
4f6b5f22c2ffcf0d1368d6eded6b77b44c408765
[ "MIT" ]
23
2017-01-14T16:14:41.000Z
2017-11-13T07:48:48.000Z
src/ITGlobal.MarkDocs.Markdown/Format/Impl/Extensions/Icons/IconExtension.cs
ITGlobal/MarkDocs
4f6b5f22c2ffcf0d1368d6eded6b77b44c408765
[ "MIT" ]
null
null
null
using Markdig; using Markdig.Renderers; namespace ITGlobal.MarkDocs.Format.Impl.Extensions.Icons { internal sealed class IconExtension : IMarkdownExtension { // TODO add support for fortawesome public void Setup(MarkdownPipelineBuilder pipeline) { pipeline.InlineParsers.Ins...
30.173913
118
0.657061
9f92a620567aa2f45926dce8c935fe41edd42947
215
cshtml
C#
Master/ASTRA.EMSG.Web/Areas/Benchmarking/Views/BenchmarkauswertungKennwertenRealisiertenMassnahmen/Preview.cshtml
astra-emsg/ASTRA.EMSG
37f309484c19bbe591464919ee51fc918adb06fd
[ "BSD-3-Clause" ]
4
2017-09-07T08:44:41.000Z
2021-02-22T02:29:23.000Z
Master/ASTRA.EMSG.Web/Areas/Benchmarking/Views/BenchmarkauswertungKennwertenRealisiertenMassnahmen/Preview.cshtml
astra-emsg/ASTRA.EMSG
37f309484c19bbe591464919ee51fc918adb06fd
[ "BSD-3-Clause" ]
null
null
null
Master/ASTRA.EMSG.Web/Areas/Benchmarking/Views/BenchmarkauswertungKennwertenRealisiertenMassnahmen/Preview.cshtml
astra-emsg/ASTRA.EMSG
37f309484c19bbe591464919ee51fc918adb06fd
[ "BSD-3-Clause" ]
3
2017-09-20T07:07:40.000Z
2022-01-18T14:27:07.000Z
@model ASTRA.EMSG.Business.Reports.BenchmarkauswertungInventarkennwerten.BenchmarkauswertungInventarkennwertenParameter @Html.Action("GetReportImagePreview", "BenchmarkauswertungKennwertenRealisiertenMassnahmen")
53.75
120
0.902326
b0aea08a024d3e360f039a6da2aef8cbf74f1be2
1,552
cs
C#
StoreManagementSystem/UI/FormProductsList.cs
hridoy3/Project_StoreManagementSystem
b6ff862dc6243dcdf791784b7b3443fb5ff95ab8
[ "MIT" ]
1
2020-09-29T13:12:44.000Z
2020-09-29T13:12:44.000Z
StoreManagementSystem/UI/FormProductsList.cs
rakib313/Project_StoreManagementSystem
b6ff862dc6243dcdf791784b7b3443fb5ff95ab8
[ "MIT" ]
null
null
null
StoreManagementSystem/UI/FormProductsList.cs
rakib313/Project_StoreManagementSystem
b6ff862dc6243dcdf791784b7b3443fb5ff95ab8
[ "MIT" ]
null
null
null
using System; using System.Data; using System.Windows.Forms; using WarehouseApp.BLL; using WarehouseApp.DAL; namespace WarehouseApp.UI { public partial class FormProductsList : Form { public FormProductsList() { InitializeComponent(); } ProductsDAL dal = new Produc...
26.305085
84
0.575387
726398d246e23095af53bf984b16a80c3c3ed0a9
86
cs
C#
Code/OtherChapters/Chapter01/CSharp3/Sql/LinqDemo.cs
Vladimir-Zakharenkov/Jon-Skit-CS-In-Depth-3edition
9c716c5c977ba3c2793d6c964d0ce5aaa0b8fd43
[ "Unlicense" ]
1
2021-02-01T06:30:01.000Z
2021-02-01T06:30:01.000Z
OtherChapters/Chapter01/CSharp3/Sql/LinqDemo.cs
QTYResources/CSharpInDepthThirdEdition
b703305db9ce56f9b09c42ba51899a403ac1513c
[ "Apache-2.0" ]
null
null
null
OtherChapters/Chapter01/CSharp3/Sql/LinqDemo.cs
QTYResources/CSharpInDepthThirdEdition
b703305db9ce56f9b09c42ba51899a403ac1513c
[ "Apache-2.0" ]
null
null
null
namespace Chapter01.CSharp3.Sql { partial class LinqDemoDataContext { } }
12.285714
37
0.686047
eff774f4dcbdbc0d777306601d6797c4e170e1d8
7,101
cs
C#
MainWindow.Designer.cs
dynamichael/qConnectionSitter
1a2b92072b55683683a288b45c56eab2a1c08bfd
[ "Unlicense" ]
5
2018-07-30T16:15:20.000Z
2019-11-30T05:49:22.000Z
MainWindow.Designer.cs
dynamichael/qConnectionSitter
1a2b92072b55683683a288b45c56eab2a1c08bfd
[ "Unlicense" ]
2
2019-02-13T20:17:44.000Z
2020-08-25T18:07:57.000Z
MainWindow.Designer.cs
dynamichael/qConnectionSitter
1a2b92072b55683683a288b45c56eab2a1c08bfd
[ "Unlicense" ]
null
null
null
namespace qConnectionSitter { partial class MainWindow { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed r...
40.577143
114
0.711308
949448d8e5c3035a0f05d5377cda6d015612eddf
1,418
cs
C#
Source/Data/DataProvider/DataProviderInterpreterBase.cs
igor-tkachev/bltoolkit
b9149ffa5c9826a01e93de81907a3eae56cbe051
[ "MIT" ]
152
2015-01-09T14:10:22.000Z
2022-02-12T08:50:45.000Z
Source/Data/DataProvider/DataProviderInterpreterBase.cs
igor-tkachev/bltoolkit
b9149ffa5c9826a01e93de81907a3eae56cbe051
[ "MIT" ]
97
2015-01-28T15:38:45.000Z
2021-07-23T07:24:38.000Z
Source/Data/DataProvider/DataProviderInterpreterBase.cs
igor-tkachev/bltoolkit
b9149ffa5c9826a01e93de81907a3eae56cbe051
[ "MIT" ]
70
2015-01-16T14:02:18.000Z
2022-02-12T08:50:53.000Z
using System.Collections.Generic; using System.Data; using BLToolkit.Mapping; namespace BLToolkit.Data.DataProvider { /// <summary> /// BasicSqlProvider equivalent for the non-linq DAL /// </summary> public abstract class DataProviderInterpreterBase { public virtual void SetParameterValue(...
27.803922
87
0.540903
75635ec27828b820faae9b5d5a71d581f8bd0c28
4,894
cs
C#
Assets/Scripts/Pathfinder.cs
THeK3nger/BDP-Benchmark
633f6779b90adafcf4cf087141165b8f541d2fb2
[ "MIT", "Unlicense" ]
null
null
null
Assets/Scripts/Pathfinder.cs
THeK3nger/BDP-Benchmark
633f6779b90adafcf4cf087141165b8f541d2fb2
[ "MIT", "Unlicense" ]
null
null
null
Assets/Scripts/Pathfinder.cs
THeK3nger/BDP-Benchmark
633f6779b90adafcf4cf087141165b8f541d2fb2
[ "MIT", "Unlicense" ]
null
null
null
// -------------------------------------------------------------------------------------------------------------------- // <copyright file="Pathfinder.cs" company="Davide Aversa"> // MIT License // </copyright> // <summary> // The pathfinder. // </summary> // --------------------------------------------------------...
25.489583
123
0.493257
20080c258f7b4a14cf29e1e355f76fc0b22db653
4,544
cs
C#
src/core/Elsa.Abstractions/ActivityDriverBase.cs
nickaynes/Elsa
9daf36911e8c8f53da2492415ad669c59aff53bc
[ "BSD-3-Clause" ]
1
2020-05-04T11:08:29.000Z
2020-05-04T11:08:29.000Z
src/core/Elsa.Abstractions/ActivityDriverBase.cs
nickaynes/Elsa
9daf36911e8c8f53da2492415ad669c59aff53bc
[ "BSD-3-Clause" ]
null
null
null
src/core/Elsa.Abstractions/ActivityDriverBase.cs
nickaynes/Elsa
9daf36911e8c8f53da2492415ad669c59aff53bc
[ "BSD-3-Clause" ]
null
null
null
using System.Threading; using System.Threading.Tasks; using Elsa.Models; using Elsa.Results; namespace Elsa { public abstract class ActivityDriverBase<T> : IActivityDriver where T : IActivity { public string ActivityType => typeof(T).Name; public Task<bool> CanExecuteAsync(ActivityExecutionCont...
137.69697
276
0.837588
c76b085aa8ebe88e31ef960b4111d5a398c8aac8
10,546
cs
C#
Samples/SoundAndMusic_4_0/SoundAndMusicSample/SoundAndMusicSample/SoundAndMusicSampleGame.cs
SimonDarksideJ/XNAGameStudio
5b79efb0b110140419056b0146ba066f2104f985
[ "MIT" ]
422
2018-03-20T07:46:35.000Z
2022-03-31T19:37:43.000Z
Samples/SoundAndMusic_4_0/SoundAndMusicSample/SoundAndMusicSample/SoundAndMusicSampleGame.cs
SimonDarksideJ/XNAGameStudio
5b79efb0b110140419056b0146ba066f2104f985
[ "MIT" ]
11
2018-09-10T01:05:45.000Z
2022-03-10T17:27:02.000Z
Samples/SoundAndMusic_4_0/SoundAndMusicSample/SoundAndMusicSample/SoundAndMusicSampleGame.cs
SimonDarksideJ/XNAGameStudio
5b79efb0b110140419056b0146ba066f2104f985
[ "MIT" ]
72
2018-09-08T09:51:55.000Z
2022-03-04T17:38:53.000Z
#region File Information //----------------------------------------------------------------------------- // SoundAndMusicSampleGame.cs // // Microsoft XNA Community Game Platform // Copyright (C) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- ...
36.116438
112
0.540679
22c178a9e1047a9727b591cb58d23c4b805d710c
2,369
cshtml
C#
editAlbum.cshtml
fsharp-playground/FreyaMusicStore
213319db5d1f1e682a2b0543d616384fa8416e4c
[ "Apache-2.0" ]
null
null
null
editAlbum.cshtml
fsharp-playground/FreyaMusicStore
213319db5d1f1e682a2b0543d616384fa8416e4c
[ "Apache-2.0" ]
null
null
null
editAlbum.cshtml
fsharp-playground/FreyaMusicStore
213319db5d1f1e682a2b0543d616384fa8416e4c
[ "Apache-2.0" ]
null
null
null
@using FreyaMusicStore @{ Layout = "layout"; } @section Main { <h2>Create</h2> <form> <fieldset> <legend>Album</legend> <div class="editor-label">Genre</div> <div class="editor-field"> <select name="GenreId"> @foreach (var g...
32.902778
184
0.471929
54f331b990b4fca67e3c0b40b27e65916d4864e2
150
cs
C#
Core/Kachuwa.Core/Localization/ViewModel/LocaleRegionViewModel.cs
amritdumre10/Kachuwa
49f889e1cc7bb5a5bc6e5e2203d2a11a0bb55d4a
[ "MIT" ]
null
null
null
Core/Kachuwa.Core/Localization/ViewModel/LocaleRegionViewModel.cs
amritdumre10/Kachuwa
49f889e1cc7bb5a5bc6e5e2203d2a11a0bb55d4a
[ "MIT" ]
null
null
null
Core/Kachuwa.Core/Localization/ViewModel/LocaleRegionViewModel.cs
amritdumre10/Kachuwa
49f889e1cc7bb5a5bc6e5e2203d2a11a0bb55d4a
[ "MIT" ]
null
null
null
namespace Kachuwa.Localization { public class LocaleRegionViewModel : LocaleRegion { public string CountryName { get; set; } } }
18.75
53
0.673333
c04ce02a48178bef33c8bac51734c768ecba85a3
7,512
cs
C#
Implementation/SIMulticompanyOrganizations/SIMulticompanyOrganizations/CrossCompany/frmImportDocuments.Designer.cs
sandrasantoss/ERP10Extensibility
46bd16a43208a12fa01682d3183a3068c88395da
[ "MIT" ]
9
2019-10-04T15:36:12.000Z
2022-03-22T05:43:48.000Z
Implementation/SIMulticompanyOrganizations/SIMulticompanyOrganizations/CrossCompany/frmImportDocuments.Designer.cs
Everest89/ERP10Extensibility
8cd4302617ee3a4ca438fcda469db31ea2ba5c2b
[ "MIT" ]
7
2020-11-09T09:18:00.000Z
2022-03-04T12:56:52.000Z
Implementation/SIMulticompanyOrganizations/SIMulticompanyOrganizations/CrossCompany/frmImportDocuments.Designer.cs
Everest89/ERP10Extensibility
8cd4302617ee3a4ca438fcda469db31ea2ba5c2b
[ "MIT" ]
13
2020-01-17T11:24:25.000Z
2022-03-05T08:49:25.000Z
namespace SUGIMPL_OME.CrossCompany { partial class frmImportDocuments { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </su...
49.421053
161
0.626464
60efdf17043954c2b3d59fe9f930fe0a25549d84
2,067
cs
C#
src/BlazorFluentUI.CoreComponents/Theme/Models/Keyframes.cs
BlazorHub/BlazorFabric
a13b9cd2321e6e3c79de7de0d46f0dd6d6aa29c5
[ "MIT" ]
653
2020-04-04T23:17:53.000Z
2022-03-23T21:47:33.000Z
src/BlazorFluentUI.CoreComponents/Theme/Models/Keyframes.cs
BlazorHub/BlazorFabric
a13b9cd2321e6e3c79de7de0d46f0dd6d6aa29c5
[ "MIT" ]
233
2020-04-11T19:01:08.000Z
2022-03-24T22:33:37.000Z
src/BlazorFluentUI.CoreComponents/Theme/Models/Keyframes.cs
BlazorHub/BlazorFabric
a13b9cd2321e6e3c79de7de0d46f0dd6d6aa29c5
[ "MIT" ]
116
2020-04-13T18:05:44.000Z
2022-03-25T04:34:41.000Z
using System; using System.Collections.Generic; using System.Text; namespace BlazorFluentUI.Models { public class Keyframes { public static string DefaultKeyFrames = @"@keyframes Slide_down_in_10 { from { opacity: 0; transform: translate3d(0,-10px,0); } to { opacit...
16.148438
79
0.524432
5ffac4c3a8e052fca2c9aa0ce02a1550a568be4c
4,029
cs
C#
Assets/Scripts/ThemeManager.cs
carpenterx/Pomodoro-App
31184b3ac4be66f45713cbe0404563622a42df77
[ "MIT" ]
null
null
null
Assets/Scripts/ThemeManager.cs
carpenterx/Pomodoro-App
31184b3ac4be66f45713cbe0404563622a42df77
[ "MIT" ]
13
2020-07-23T11:14:54.000Z
2021-02-18T07:59:46.000Z
Assets/Scripts/ThemeManager.cs
carpenterx/Pomodoro-App
31184b3ac4be66f45713cbe0404563622a42df77
[ "MIT" ]
null
null
null
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; public class ThemeManager : MonoBehaviour { public CurrentProfile currentProfile; public List<ScrollRect> themableScrollViewsList; [Space] public List<ThemableSlider> ...
28.373239
124
0.680814
9921ab38be47701840b9e13780cecb92247731c7
1,573
cs
C#
Chapter-4-Graph/Experiment/Chapter-4-Graph-Experiment-1-CSharp/ListGraph.cs
jubgjf/DataStructuresAndAlgorithms
48c7fa62e618ddbefa760229ce677cdfc822b53f
[ "MIT" ]
2
2020-10-18T07:36:25.000Z
2021-07-31T23:34:49.000Z
Chapter-4-Graph/Experiment/Chapter-4-Graph-Experiment-1-CSharp/ListGraph.cs
jubgjf/DataStructuresAndAlgorithms
48c7fa62e618ddbefa760229ce677cdfc822b53f
[ "MIT" ]
null
null
null
Chapter-4-Graph/Experiment/Chapter-4-Graph-Experiment-1-CSharp/ListGraph.cs
jubgjf/DataStructuresAndAlgorithms
48c7fa62e618ddbefa760229ce677cdfc822b53f
[ "MIT" ]
null
null
null
using System; namespace Chapter_4_Graph_Experiment_1_CSharp { class ListGraph : Graph { /// <summary> /// 初始化图的邻接表和节点数 /// </summary> /// <param name="listFileName">邻接表数据来源文件路径</param> public ListGraph(string listFileName) { NodeCount = FileIO.GetFil...
24.578125
63
0.446917
d1ecff0c886bcd5ce5912f95f350b2568f07b225
562
cs
C#
CodeGenerator/Generators/LogicGenerator.cs
diegotorresd/codegenerator
8872ee256b623aa32eb5b8032eb83938a379d5e7
[ "MIT" ]
2
2017-11-16T12:19:09.000Z
2018-03-22T06:55:23.000Z
CodeGenerator/Generators/LogicGenerator.cs
diegotorresd/codegenerator
8872ee256b623aa32eb5b8032eb83938a379d5e7
[ "MIT" ]
null
null
null
CodeGenerator/Generators/LogicGenerator.cs
diegotorresd/codegenerator
8872ee256b623aa32eb5b8032eb83938a379d5e7
[ "MIT" ]
6
2016-10-05T22:01:34.000Z
2020-02-15T22:58:35.000Z
using CodeGenerator.Templates; using System; namespace CodeGenerator.Generators { internal class LogicGenerator : Generator { public LogicGenerator(TemplateData templateData) : base(templateData) { } public override GeneratorResult Generate() { return Generate( ...
24.434783
82
0.617438
4d5d5d95f8b578759e1e2c137394c7552d5acd74
591
cs
C#
src/Jasper.Http/MVCExtensions/ActionResultWriterRule.cs
ndcomplete/jasper
e166794516fa842e8cd9611b9e0c8cd411cbda05
[ "MIT" ]
369
2015-08-17T06:52:32.000Z
2022-03-23T17:29:11.000Z
src/Jasper.Http/MVCExtensions/ActionResultWriterRule.cs
ndcomplete/jasper
e166794516fa842e8cd9611b9e0c8cd411cbda05
[ "MIT" ]
666
2016-09-20T21:17:14.000Z
2022-03-28T13:27:59.000Z
src/Jasper.Http/MVCExtensions/ActionResultWriterRule.cs
ndcomplete/jasper
e166794516fa842e8cd9611b9e0c8cd411cbda05
[ "MIT" ]
68
2015-08-20T13:18:10.000Z
2022-02-17T11:47:19.000Z
using Baseline; using Jasper.Http.ContentHandling; using Jasper.Http.Model; using Microsoft.AspNetCore.Mvc; namespace Jasper.Http.MVCExtensions { public class ActionResultWriterRule : IWriterRule { public bool TryToApply(RouteChain chain) { if (chain.ResourceType.CanBeCastTo<IAction...
24.625
88
0.62775
a4bec3835feee8659a9422687dfd24d00e899191
781
cs
C#
Demos/Demo-BuildingRealWorldCloudApps/Source/MyFixit/MyFixit/App_Start/DependenciesConfig.cs
PankajRawat333/MicrosoftAzureTrainingKit
d1a7734f56e04f734e0c6efa3dd152ec37f3a12d
[ "Apache-2.0" ]
1
2020-03-30T15:08:24.000Z
2020-03-30T15:08:24.000Z
Demos/Demo-BuildingRealWorldCloudApps/Source/MyFixit/MyFixit/App_Start/DependenciesConfig.cs
PankajRawat333/MicrosoftAzureTrainingKit
d1a7734f56e04f734e0c6efa3dd152ec37f3a12d
[ "Apache-2.0" ]
null
null
null
Demos/Demo-BuildingRealWorldCloudApps/Source/MyFixit/MyFixit/App_Start/DependenciesConfig.cs
PankajRawat333/MicrosoftAzureTrainingKit
d1a7734f56e04f734e0c6efa3dd152ec37f3a12d
[ "Apache-2.0" ]
null
null
null
namespace MyFixIt.App_Start { using System.Web.Mvc; using Autofac; using Autofac.Integration.Mvc; using MyFixIt.Logging; using MyFixIt.Persistence; public class DependenciesConfig { public static void RegisterDependencies() { var builder = new Contai...
32.541667
86
0.640205
b553434d9a4fe7cd9fce19e3d3cd2fc1bbadc118
2,627
cshtml
C#
GLAA.Web/Views/Shared/DisplayTemplates/NamedIndividualCollectionViewModel.cshtml
UKHomeOffice/glaa-web
334b00c16de5947e719106dd0022bed0b80c05c0
[ "MIT" ]
3
2019-01-22T03:48:24.000Z
2022-01-23T20:19:01.000Z
GLAA.Web/Views/Shared/DisplayTemplates/NamedIndividualCollectionViewModel.cshtml
UKHomeOffice/glaa-web
334b00c16de5947e719106dd0022bed0b80c05c0
[ "MIT" ]
14
2018-01-25T10:38:00.000Z
2018-03-02T15:12:08.000Z
GLAA.Web/Views/Shared/DisplayTemplates/NamedIndividualCollectionViewModel.cshtml
UKHomeOffice/glaa-web
334b00c16de5947e719106dd0022bed0b80c05c0
[ "MIT" ]
1
2021-04-11T09:29:42.000Z
2021-04-11T09:29:42.000Z
@using GLAA.Domain.Models @model GLAA.ViewModels.LicenceApplication.NamedIndividualCollectionViewModel <table class="check-your-answers"> <thead> <tr> <th colspan="3"></th> </tr> </thead> <tbody> <tr> <td>Selected Type</td> <td>@Html.DisplayFor(x...
35.5
197
0.502094
a1da6176b60ddc0e39695aa0556298748c8dc08a
1,171
cs
C#
Neovolve.CodeAnalysis.ChangeTracking/Models/IArgumentDefinition.cs
roryprimrose/Neovolve.CodeAnalysis.ChangeTracking
f539b9634eb2d107a2ed3ec8a9bc22a6745c144d
[ "MIT" ]
null
null
null
Neovolve.CodeAnalysis.ChangeTracking/Models/IArgumentDefinition.cs
roryprimrose/Neovolve.CodeAnalysis.ChangeTracking
f539b9634eb2d107a2ed3ec8a9bc22a6745c144d
[ "MIT" ]
164
2019-11-11T05:23:06.000Z
2022-03-23T10:09:29.000Z
Neovolve.CodeAnalysis.ChangeTracking/Models/IArgumentDefinition.cs
roryprimrose/Neovolve.CodeAnalysis.ChangeTracking
f539b9634eb2d107a2ed3ec8a9bc22a6745c144d
[ "MIT" ]
1
2020-05-14T00:17:58.000Z
2020-05-14T00:17:58.000Z
namespace Neovolve.CodeAnalysis.ChangeTracking.Models { /// <summary> /// The <see cref="IArgumentDefinition" /> /// class defines the members that describe an attribute. /// </summary> public interface IArgumentDefinition : IItemDefinition { /// <summary> /// Gets t...
30.025641
94
0.54398
5e541dca1752b289a6951bf2f94060e2c0225cf7
2,828
cs
C#
ScadaWeb/OpenPlugins/PlgMonitor/plugins/Monitor/CacheState.aspx.cs
kumajaya/scada
e72cc7510bb33fa8ae4e57b5a4b404d8ee2d2577
[ "Apache-2.0" ]
555
2015-04-21T18:22:10.000Z
2022-03-27T05:23:14.000Z
ScadaWeb/OpenPlugins/PlgMonitor/plugins/Monitor/CacheState.aspx.cs
ytchhh/scada
417d0e2bceaa1e96328635336cdad7c2be2f51be
[ "Apache-2.0" ]
54
2015-07-23T11:02:31.000Z
2021-11-15T10:15:45.000Z
ScadaWeb/OpenPlugins/PlgMonitor/plugins/Monitor/CacheState.aspx.cs
ytchhh/scada
417d0e2bceaa1e96328635336cdad7c2be2f51be
[ "Apache-2.0" ]
316
2015-05-23T18:45:21.000Z
2022-03-27T10:31:19.000Z
/* * Copyright 2016 Mikhail Shiryaev * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or a...
33.270588
111
0.618105
8a0f98382b3b6bfa9dd71179c9dbe4bcafdb7eb5
12,945
cs
C#
MagicalLifeGUIWindows/Input/KeyboardHandler.cs
Lynngr/MagicalLife
be016f29599eefb95bba189c5bae85fd1c07b9d4
[ "MIT" ]
null
null
null
MagicalLifeGUIWindows/Input/KeyboardHandler.cs
Lynngr/MagicalLife
be016f29599eefb95bba189c5bae85fd1c07b9d4
[ "MIT" ]
null
null
null
MagicalLifeGUIWindows/Input/KeyboardHandler.cs
Lynngr/MagicalLife
be016f29599eefb95bba189c5bae85fd1c07b9d4
[ "MIT" ]
null
null
null
using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Input; using MonoGame.Extended.Input.InputListeners; using System; using System.Collections.Generic; using System.Linq; namespace MagicalLifeGUIWindows.Input { /// <summary> /// Handles keyboard input. /// </summary> public static class Keyb...
24.798851
108
0.37219
8a8d53f8231e1fe608906408b161a8c2aed2cc92
3,433
cs
C#
src/xunit.analyzers.tests/Analyzers/AssertEqualLiteralValueShouldBeFirstTests.cs
louis-z/xunit.analyzers
018f3b1428ba6b99fb4ef713e6978c1b2aad9aca
[ "Apache-2.0" ]
120
2017-05-03T11:32:01.000Z
2022-03-24T17:02:09.000Z
src/xunit.analyzers.tests/Analyzers/AssertEqualLiteralValueShouldBeFirstTests.cs
louis-z/xunit.analyzers
018f3b1428ba6b99fb4ef713e6978c1b2aad9aca
[ "Apache-2.0" ]
103
2017-05-03T17:48:01.000Z
2021-08-21T22:21:05.000Z
src/xunit.analyzers.tests/Analyzers/AssertEqualLiteralValueShouldBeFirstTests.cs
louis-z/xunit.analyzers
018f3b1428ba6b99fb4ef713e6978c1b2aad9aca
[ "Apache-2.0" ]
56
2017-05-05T18:28:12.000Z
2022-01-11T09:50:13.000Z
using Xunit; using Verify = CSharpVerifier<Xunit.Analyzers.AssertEqualLiteralValueShouldBeFirst>; public class AssertEqualLiteralValueShouldBeFirstTests { [Fact] public async void DoesNotFindWarningWhenConstantOrLiteralUsedForBothArguments() { var source = @" class TestClass { void TestMethod() { ...
26.206107
117
0.647539
d4eeec1aed03cbd6076a182036191463800ba750
269
cs
C#
test/Masa.Contrib.BasicAbility.Dcc.Tests/Internal/Common/SerializeCommon.cs
capdiem/MASA.Contrib
686d6472b9cdb839551011bd46a69f90602b49b5
[ "MIT" ]
3
2022-02-25T16:14:37.000Z
2022-02-26T06:41:46.000Z
test/Masa.Contrib.BasicAbility.Dcc.Tests/Internal/Common/SerializeCommon.cs
capdiem/MASA.Contrib
686d6472b9cdb839551011bd46a69f90602b49b5
[ "MIT" ]
null
null
null
test/Masa.Contrib.BasicAbility.Dcc.Tests/Internal/Common/SerializeCommon.cs
capdiem/MASA.Contrib
686d6472b9cdb839551011bd46a69f90602b49b5
[ "MIT" ]
null
null
null
namespace Masa.Contrib.BasicAbility.Dcc.Tests.Internal.Common; internal static class SerializeCommon { public static string Serialize(this object obj, JsonSerializerOptions? jsonSerializerOptions) => JsonSerializer.Serialize(obj, jsonSerializerOptions); }
33.625
97
0.806691
3d4bdb1d89ee20389c9b4c33f5cd0cf8eecb2707
654,536
cs
C#
generated/src/TeamCity/Api/BuildApi.cs
NikolayPianikov/teamcity.client
7ee93f73d4b45ce47afaeac682b82bc72efa76ff
[ "MIT" ]
null
null
null
generated/src/TeamCity/Api/BuildApi.cs
NikolayPianikov/teamcity.client
7ee93f73d4b45ce47afaeac682b82bc72efa76ff
[ "MIT" ]
null
null
null
generated/src/TeamCity/Api/BuildApi.cs
NikolayPianikov/teamcity.client
7ee93f73d4b45ce47afaeac682b82bc72efa76ff
[ "MIT" ]
null
null
null
/* * TeamCity REST API * * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2018.1 * * Generated by: https://github.com/swagger-api/swagger-codegen.git */ using System; using System.Collections.Generic; using System.Collections.Ob...
52.075424
270
0.630833
3d92be4bee2d3e2ba12cead8f3f09dfb46f400da
760
cs
C#
CryptoApisSnippets/Samples/Blockchains/Transactions/GetInfosByBlockHeightBtc.cs
Crypto-APIs/cryptoapis.io-dotnetlibrary
5af88ee48ce8ccdcf487fd8de3a3a9e169a8774e
[ "MIT" ]
21
2019-06-21T11:57:37.000Z
2022-03-05T22:21:31.000Z
CryptoApisSnippets/Samples/Blockchains/Transactions/GetInfosByBlockHeightBtc.cs
NunoEdgarGub1/.NET-Library
5af88ee48ce8ccdcf487fd8de3a3a9e169a8774e
[ "MIT" ]
null
null
null
CryptoApisSnippets/Samples/Blockchains/Transactions/GetInfosByBlockHeightBtc.cs
NunoEdgarGub1/.NET-Library
5af88ee48ce8ccdcf487fd8de3a3a9e169a8774e
[ "MIT" ]
3
2019-11-29T21:21:36.000Z
2022-03-23T19:40:41.000Z
using System; using CryptoApisLibrary.DataTypes; using CryptoApisLibrary.ResponseTypes.Blockchains; namespace CryptoApisSnippets.Samples.Blockchains { partial class BlockchainSnippets { public void GetInfosByBlockHeightBtc() { var blockHeight = 552875; var manager = new CryptoManager(ApiKey);...
33.043478
94
0.740789
ac9b454b6bfc3b6a6d37f7858c7240ea00fb7ae3
1,203
cs
C#
src/nucs.Filesystem.shared/Enumerators/RecentFiles.cs
Nucs/nucs.Filesystem
c95e213be431601b966b9fbbf7c8f150ad575c19
[ "MIT" ]
4
2016-10-06T00:07:52.000Z
2017-10-27T17:02:36.000Z
src/nucs.Filesystem.shared/Enumerators/RecentFiles.cs
Nucs/nucs.Filesystem
c95e213be431601b966b9fbbf7c8f150ad575c19
[ "MIT" ]
null
null
null
src/nucs.Filesystem.shared/Enumerators/RecentFiles.cs
Nucs/nucs.Filesystem
c95e213be431601b966b9fbbf7c8f150ad575c19
[ "MIT" ]
1
2020-12-06T07:31:47.000Z
2020-12-06T07:31:47.000Z
using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; namespace nucs.Filesystem.Enumerators { /// <summary> /// Enumerate through all recent files. /// </summary> public class RecentFiles : IEnumerable<FileInfo> { public IEnumerator<F...
37.59375
115
0.593516
acce553811cb3df32e975af0a573dfca57c744f3
3,433
cs
C#
Assets/Scripts/Game/MagicAndEffects/Effects/Alteration/Slowfall.cs
TheExceptionist/daggerfall-unity
0f345e832275c1843a3cbf63cb9f55d39a66c5ee
[ "MIT" ]
1
2018-11-12T08:52:58.000Z
2018-11-12T08:52:58.000Z
Assets/Scripts/Game/MagicAndEffects/Effects/Alteration/Slowfall.cs
TheExceptionist/daggerfall-unity
0f345e832275c1843a3cbf63cb9f55d39a66c5ee
[ "MIT" ]
null
null
null
Assets/Scripts/Game/MagicAndEffects/Effects/Alteration/Slowfall.cs
TheExceptionist/daggerfall-unity
0f345e832275c1843a3cbf63cb9f55d39a66c5ee
[ "MIT" ]
1
2018-11-12T09:00:48.000Z
2018-11-12T09:00:48.000Z
// Project: Daggerfall Tools For Unity // Copyright: Copyright (C) 2009-2018 Daggerfall Workshop // Web Site: http://www.dfworkshop.net // License: MIT License (http://www.opensource.org/licenses/mit-license.php) // Source Code: https://github.com/Interkarma/daggerfall-unity // Original...
35.030612
155
0.631518
3880106fc533dbce5036fb4ad48f38306d3d693a
427
cshtml
C#
Neemo.Web/Neemo.Web/Views/EmailTemplates/ContactUsTemplate.cshtml
wijayakoon/Unixmo
39b8bda0d2695d7e527683fd5697aca7bd6b0a04
[ "MIT" ]
null
null
null
Neemo.Web/Neemo.Web/Views/EmailTemplates/ContactUsTemplate.cshtml
wijayakoon/Unixmo
39b8bda0d2695d7e527683fd5697aca7bd6b0a04
[ "MIT" ]
null
null
null
Neemo.Web/Neemo.Web/Views/EmailTemplates/ContactUsTemplate.cshtml
wijayakoon/Unixmo
39b8bda0d2695d7e527683fd5697aca7bd6b0a04
[ "MIT" ]
null
null
null
@model ContactUsView @{ Layout = "_EmailLayout.cshtml"; } User has submitted a contact us form at your car store. Details are below. Please contact them back as soon as possible. <ul> <li>Name: <strong>@Model.FullName</strong></li> <li>Email: <strong>@Model.Email</strong></li> <li>Contact Number:...
28.466667
75
0.679157
e2f6020dcb7c5cc4ba4eeabad9933b8d58b2553f
1,215
cs
C#
tests/Kyameru.Component.File.Tests/ConfigTests.cs
djsuperchief/Kyameru.Component.File
ec66c77aa960ef898f59c51f0ac91bd4131b04ad
[ "MIT" ]
1
2021-09-06T17:25:38.000Z
2021-09-06T17:25:38.000Z
source/components/Kyameru.Component.File/Tests/ConfigTests.cs
djsuperchief/Kyameru
07678397424e1191662c881f3cbf7629c26202aa
[ "MIT" ]
21
2020-11-29T14:45:31.000Z
2022-03-09T14:06:29.000Z
tests/Kyameru.Component.File.Tests/ConfigTests.cs
djsuperchief/Kyameru.Component.File
ec66c77aa960ef898f59c51f0ac91bd4131b04ad
[ "MIT" ]
1
2021-09-06T17:25:40.000Z
2021-09-06T17:25:40.000Z
using System; using System.Collections.Generic; using NUnit.Framework; namespace Kyameru.Component.File.Tests { [TestFixture] public class ConfigTests { private string[] optionalFrom = new string[] { "Filter", "SubDirectories", "InitialScan", "Ignore", "IgnoreStrings" }; [Test] pu...
25.3125
126
0.502881
48fdd6678affa4dd4f8492751c6f1f81daa86500
419
cs
C#
Demos/FeatureCenter/FeatureCenter.Module/WorldCreator/ExistentAssemblyMasterDetail/ExistentAssemblyMasterDetailModelStore.cs
comstyle/eXpand
a0bb2e2ca442b4f66ec6b308b0fa7acb36d390c2
[ "MS-PL" ]
1
2019-02-06T16:15:40.000Z
2019-02-06T16:15:40.000Z
Demos/FeatureCenter/FeatureCenter.Module/WorldCreator/ExistentAssemblyMasterDetail/ExistentAssemblyMasterDetailModelStore.cs
biohazard999/eXpand
34510adc8e3f6b6ee42ab5f277ae50b88d5ff884
[ "MS-PL" ]
null
null
null
Demos/FeatureCenter/FeatureCenter.Module/WorldCreator/ExistentAssemblyMasterDetail/ExistentAssemblyMasterDetailModelStore.cs
biohazard999/eXpand
34510adc8e3f6b6ee42ab5f277ae50b88d5ff884
[ "MS-PL" ]
null
null
null
using System.IO; using Xpand.Persistent.Base.ModelDifference; namespace FeatureCenter.Module.WorldCreator.ExistentAssemblyMasterDetail { public class ExistentAssemblyMasterDetailModelStore : ModelApplicationFromStreamStoreBase { protected override Stream GetStream() { return GetType().Asse...
38.090909
114
0.770883
5b4e1d1e78e66abdaa95ce612823962e6b1d9411
7,151
cs
C#
Masuit.Tools.Core/Net/WebExtension.cs
5118234/Masuit.Tools
2a125f55ca54d5a7d4a42e359804050d218499b0
[ "MIT" ]
6
2021-01-15T05:33:29.000Z
2021-12-12T10:19:00.000Z
Masuit.Tools.Core/Net/WebExtension.cs
5118234/Masuit.Tools
2a125f55ca54d5a7d4a42e359804050d218499b0
[ "MIT" ]
null
null
null
Masuit.Tools.Core/Net/WebExtension.cs
5118234/Masuit.Tools
2a125f55ca54d5a7d4a42e359804050d218499b0
[ "MIT" ]
3
2021-01-15T05:33:34.000Z
2021-04-26T07:49:58.000Z
using Masuit.Tools.Core.Config; using Masuit.Tools.Models; using Microsoft.AspNetCore.Http; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; namespace Masuit.Tools.Core.Net { /// <summary> /// Web操作扩展 /// </summa...
37.636842
188
0.469305
ae9d06a9ede3e4c36d63728b326b89a015dac47d
900
cs
C#
Patches/Combat/SliceThroughEveryonePassive.cs
welles/BannerlordCheats
0eaa8f397da2be03d872aef955407846c862f639
[ "MIT" ]
10
2020-05-17T01:08:45.000Z
2022-01-15T18:48:15.000Z
Patches/Combat/SliceThroughEveryonePassive.cs
welles/BannerlordCheats
0eaa8f397da2be03d872aef955407846c862f639
[ "MIT" ]
32
2020-07-06T17:06:08.000Z
2022-03-20T10:25:42.000Z
Patches/Combat/SliceThroughEveryonePassive.cs
welles/BannerlordCheats
0eaa8f397da2be03d872aef955407846c862f639
[ "MIT" ]
3
2020-10-25T14:59:38.000Z
2021-04-05T21:32:34.000Z
using BannerlordCheats.Extensions; using BannerlordCheats.Settings; using HarmonyLib; using JetBrains.Annotations; using SandBox; using TaleWorlds.MountAndBlade; namespace BannerlordCheats.Patches.Combat { [HarmonyPatch(typeof(SandboxAgentApplyDamageModel), nameof(SandboxAgentApplyDamageModel.DecidePassiveAttackC...
31.034483
131
0.685556
aef840e29a1f691b577f0ceb9e393e93033e4879
3,687
cs
C#
Factory/Controllers/MachinesController.cs
pagrimm/DrSneussFactory.Solution
2eac83ee004219fd7843ee105812be2cca9d6bde
[ "MIT" ]
null
null
null
Factory/Controllers/MachinesController.cs
pagrimm/DrSneussFactory.Solution
2eac83ee004219fd7843ee105812be2cca9d6bde
[ "MIT" ]
null
null
null
Factory/Controllers/MachinesController.cs
pagrimm/DrSneussFactory.Solution
2eac83ee004219fd7843ee105812be2cca9d6bde
[ "MIT" ]
null
null
null
using Microsoft.AspNetCore.Mvc; using Factory.Models; using System.Collections.Generic; using System.Linq; using Microsoft.EntityFrameworkCore; using Microsoft.AspNetCore.Mvc.Rendering; namespace Factory.Controllers { public class MachinesController : Controller { private readonly FactoryContext _db; publ...
31.784483
168
0.666667
96dfddacd201460b9e5b1b38b73b596e8cfd304d
4,369
cs
C#
src/GUI/RequestifyTF2GUI/Configuration.cs
cymug/RequestifyTF2
f5919e816e6b08468cbb6ed0bf3e42bccacf205a
[ "MIT" ]
null
null
null
src/GUI/RequestifyTF2GUI/Configuration.cs
cymug/RequestifyTF2
f5919e816e6b08468cbb6ed0bf3e42bccacf205a
[ "MIT" ]
null
null
null
src/GUI/RequestifyTF2GUI/Configuration.cs
cymug/RequestifyTF2
f5919e816e6b08468cbb6ed0bf3e42bccacf205a
[ "MIT" ]
null
null
null
using System.Collections.Generic; using System.IO; using System.Windows.Forms; using Newtonsoft.Json; using RequestifyTF2.API; using RequestifyTF2GUI.Controls; namespace RequestifyTF2GUI { internal static class AppConfig { public static ConfigJsonData CurrentConfig = new ConfigJsonData(); pub...
42.009615
120
0.580224
8c9a71d00390f45f2ce437fe6046ffd94dd336ab
1,992
cs
C#
Grasshopper-BricsCAD/UI/WinAPI.cs
Bricsys/rhino.inside-bricscad
70a384299a89a39679a61793a32f07bef5dc15f5
[ "MIT" ]
7
2019-11-28T00:57:17.000Z
2021-07-12T08:17:17.000Z
Grasshopper-BricsCAD/UI/WinAPI.cs
Bricsys/rhino.inside-bricscad
70a384299a89a39679a61793a32f07bef5dc15f5
[ "MIT" ]
null
null
null
Grasshopper-BricsCAD/UI/WinAPI.cs
Bricsys/rhino.inside-bricscad
70a384299a89a39679a61793a32f07bef5dc15f5
[ "MIT" ]
5
2019-12-23T09:26:57.000Z
2021-07-22T09:59:03.000Z
using System; using System.Windows.Forms; using System.Runtime.InteropServices; using Rhino; namespace GH_BC.UI { class WinAPI { [DllImport("USER32")] [return: MarshalAs(UnmanagedType.Bool)] internal static extern bool IsIconic(IntPtr hWnd); [DllImport("USER32")] [return: MarshalAs(UnmanagedT...
36.888889
110
0.731928
e798f5a7cf012300e9eeeb3fb061d8ee1ce977dc
433
cs
C#
WebServices/structs/MonetaryMarket/MonetaryOfferCost.cs
blendiahmetaj1/eSupremacy
6b8123eaaaabf966ffd1d0c3b819344e8e07b19d
[ "MIT" ]
null
null
null
WebServices/structs/MonetaryMarket/MonetaryOfferCost.cs
blendiahmetaj1/eSupremacy
6b8123eaaaabf966ffd1d0c3b819344e8e07b19d
[ "MIT" ]
null
null
null
WebServices/structs/MonetaryMarket/MonetaryOfferCost.cs
blendiahmetaj1/eSupremacy
6b8123eaaaabf966ffd1d0c3b819344e8e07b19d
[ "MIT" ]
1
2020-05-09T17:42:14.000Z
2020-05-09T17:42:14.000Z
using Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebServices.structs.MonetaryMarket { public class MonetaryOfferCost { public double OfferCost { get; set; } public double TaxCost { get; set; } ...
24.055556
65
0.685912
69ab9681874e9e016d8e65f9280d53a2e480a4ba
6,044
cs
C#
tests/Paramore.Brighter.Kafka.Tests/MessagingGateway/When_a_message_is_acknowledged_update_offset.cs
honkuan86/Brighter
404de99d57283cc40d0c9b9cebe96bdb18fb6580
[ "MIT" ]
1,390
2017-03-23T05:31:14.000Z
2022-03-31T22:43:42.000Z
tests/Paramore.Brighter.Kafka.Tests/MessagingGateway/When_a_message_is_acknowledged_update_offset.cs
honkuan86/Brighter
404de99d57283cc40d0c9b9cebe96bdb18fb6580
[ "MIT" ]
1,082
2017-03-27T15:32:35.000Z
2022-03-30T17:06:36.000Z
tests/Paramore.Brighter.Kafka.Tests/MessagingGateway/When_a_message_is_acknowledged_update_offset.cs
honkuan86/Brighter
404de99d57283cc40d0c9b9cebe96bdb18fb6580
[ "MIT" ]
173
2017-03-21T10:49:14.000Z
2022-03-30T14:00:02.000Z
using System; using System.Collections.Generic; using System.Threading.Tasks; using Confluent.Kafka; using FluentAssertions; using Paramore.Brighter.Kafka.Tests.TestDoubles; using Paramore.Brighter.MessagingGateway.Kafka; using Xunit; using Xunit.Abstractions; namespace Paramore.Brighter.Kafka.Tests.MessagingGateway ...
37.308642
124
0.523329
0e00a0febb33f2243ebf29661a210fa04b6f4a8b
6,710
cs
C#
Assets/UXF/Scripts/Etc/Editor/UXFSessionDisplay.cs
DevPika/unity-experiment-framework
e6f4a626d992fc08e0beb85c9e29cafdf82bb05f
[ "MIT" ]
null
null
null
Assets/UXF/Scripts/Etc/Editor/UXFSessionDisplay.cs
DevPika/unity-experiment-framework
e6f4a626d992fc08e0beb85c9e29cafdf82bb05f
[ "MIT" ]
null
null
null
Assets/UXF/Scripts/Etc/Editor/UXFSessionDisplay.cs
DevPika/unity-experiment-framework
e6f4a626d992fc08e0beb85c9e29cafdf82bb05f
[ "MIT" ]
1
2021-03-22T10:29:09.000Z
2021-03-22T10:29:09.000Z
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEditor; using UXF; namespace UXFTools { [InitializeOnLoad] public class UXFSessionDisplay : EditorWindow { static Vector2 scrollPos; static Session session; static Dictionary<string, object> ...
33.888889
262
0.570045
0e0e270d70092c8d75dd2564fe7e40d392120b0a
1,760
cs
C#
VocaDbModel/Service/EntryValidators/SongValidator.cs
Pyther99/vocadb
94a1d145c7579f7e4e1f96bd36e614a7a4222215
[ "MIT" ]
1
2021-03-18T14:51:21.000Z
2021-03-18T14:51:21.000Z
VocaDbModel/Service/EntryValidators/SongValidator.cs
Pyther99/vocadb
94a1d145c7579f7e4e1f96bd36e614a7a4222215
[ "MIT" ]
null
null
null
VocaDbModel/Service/EntryValidators/SongValidator.cs
Pyther99/vocadb
94a1d145c7579f7e4e1f96bd36e614a7a4222215
[ "MIT" ]
null
null
null
#nullable disable using System.Collections.Generic; using System.Linq; using VocaDb.Model.Domain.Globalization; using VocaDb.Model.Domain.Songs; using VocaDb.Model.Helpers; using VocaDb.Model.Resources; namespace VocaDb.Model.Service.EntryValidators { public class SongValidator { public bool IsValid(...
33.846154
140
0.711932
0e7469f407364632b0a3d14be957ffa72765ca44
1,369
cs
C#
starsky/starskytest/starskySynchronizeCli/ProgramTest.cs
qdraw/starsky
237aa5431daf23ee9446eb303cc7a2ca68bf967e
[ "MIT" ]
2
2020-07-07T22:32:09.000Z
2021-02-09T10:04:22.000Z
starsky/starskytest/starskySynchronizeCli/ProgramTest.cs
qdraw/starsky
237aa5431daf23ee9446eb303cc7a2ca68bf967e
[ "MIT" ]
509
2020-05-10T14:40:31.000Z
2022-03-30T22:52:06.000Z
starsky/starskytest/starskySynchronizeCli/ProgramTest.cs
qdraw/starsky
237aa5431daf23ee9446eb303cc7a2ca68bf967e
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using Microsoft.VisualStudio.TestTools.UnitTesting; using starskysynchronizecli; using starskytest.FakeCreateAn; namespace starskytest.starskySynchronizeCli { [TestClass] public class SynchronizeCliTest { [TestMethod] [Timeout(5000)] public void SynchronizeCliHe...
22.442623
80
0.642805
9c7c7b4b6363cf87b5fbaf8a147dbe60e9f25335
22,204
cs
C#
src/Compilers/CSharp/Test/Syntax/Syntax/SyntaxEquivalenceTests.cs
belav/roslyn
01124c8bbeacb560271261e97c10317114836299
[ "MIT" ]
null
null
null
src/Compilers/CSharp/Test/Syntax/Syntax/SyntaxEquivalenceTests.cs
belav/roslyn
01124c8bbeacb560271261e97c10317114836299
[ "MIT" ]
null
null
null
src/Compilers/CSharp/Test/Syntax/Syntax/SyntaxEquivalenceTests.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; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.CodeAnalysis.CSharp...
32.992571
100
0.553729
4e38df05124d1bc631ca36d565886d2f0212a0cd
19,002
cs
C#
WWCP_OCHPv1.4/Messages/CH/GetServiceEndpointsResponse.cs
OpenChargingCloud/WWCP_OCHP
2a0536ae61badb7680f64d372ec8b4465b038d4b
[ "Apache-2.0" ]
1
2018-12-09T11:31:19.000Z
2018-12-09T11:31:19.000Z
WWCP_OCHPv1.4/Messages/CH/GetServiceEndpointsResponse.cs
OpenChargingCloud/WWCP_OCHP
2a0536ae61badb7680f64d372ec8b4465b038d4b
[ "Apache-2.0" ]
null
null
null
WWCP_OCHPv1.4/Messages/CH/GetServiceEndpointsResponse.cs
OpenChargingCloud/WWCP_OCHP
2a0536ae61badb7680f64d372ec8b4465b038d4b
[ "Apache-2.0" ]
null
null
null
/* * Copyright (c) 2014-2021 GraphDefined GmbH * This file is part of WWCP OCHP <https://github.com/OpenChargingCloud/WWCP_OCHP> * * 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 * * ...
39.753138
158
0.551942
fbc978cfabc11d03b83510a7e45439b1dac890ae
2,552
cs
C#
src/System.DirectoryServices.AccountManagement/tests/ComputerPrincipalTest.cs
antonfirsov/System.Memory.Portable
b49e0230dc594e0a29e347bcd84890aa83d137c3
[ "MIT" ]
2
2021-11-19T19:16:02.000Z
2021-11-19T19:20:00.000Z
src/System.DirectoryServices.AccountManagement/tests/ComputerPrincipalTest.cs
antonfirsov/System.Memory.Portable
b49e0230dc594e0a29e347bcd84890aa83d137c3
[ "MIT" ]
null
null
null
src/System.DirectoryServices.AccountManagement/tests/ComputerPrincipalTest.cs
antonfirsov/System.Memory.Portable
b49e0230dc594e0a29e347bcd84890aa83d137c3
[ "MIT" ]
3
2020-11-05T00:23:59.000Z
2022-03-12T15:49:19.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. using System.DirectoryServices.AccountManagement; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace Ac...
33.142857
98
0.625
788eafcefe6e4fc6d030af68038f12810718b475
3,879
cs
C#
src/Ghostly/Startup/StartupLogger.cs
patriksvensson-forks/ghostly
3c6becc86e89dd84de538fc2bdea6c952b3af460
[ "MIT" ]
240
2021-12-31T12:13:17.000Z
2022-03-31T13:06:19.000Z
src/Ghostly/Startup/StartupLogger.cs
patriksvensson-forks/ghostly
3c6becc86e89dd84de538fc2bdea6c952b3af460
[ "MIT" ]
12
2022-01-02T04:07:15.000Z
2022-03-07T12:34:07.000Z
src/Ghostly/Startup/StartupLogger.cs
patriksvensson-forks/ghostly
3c6becc86e89dd84de538fc2bdea6c952b3af460
[ "MIT" ]
19
2021-12-31T12:22:43.000Z
2022-02-18T12:22:04.000Z
using System; using System.Collections.Generic; using System.Threading.Tasks; using Ghostly.Core; using Ghostly.Core.Diagnostics; using Ghostly.Core.Pal; namespace Ghostly.Startup { public sealed class StartupLogger : IStartup { private readonly IGhostlyLog _log; private readonly IPackageServic...
43.1
111
0.582624
78c7b9d4147d5da4d48ead627a1862820b84f5cd
5,849
cs
C#
Assets/YunvaScript/Protocol/ImFriendNearListNotify.cs
cheng219/tianyu
89c1a6205e7b03049fa95c9fba8e9732a2e68910
[ "BSD-3-Clause" ]
2
2020-06-20T11:39:06.000Z
2021-08-31T09:31:50.000Z
Assets/YunvaScript/Protocol/ImFriendNearListNotify.cs
cheng219/tianyu
89c1a6205e7b03049fa95c9fba8e9732a2e68910
[ "BSD-3-Clause" ]
null
null
null
Assets/YunvaScript/Protocol/ImFriendNearListNotify.cs
cheng219/tianyu
89c1a6205e7b03049fa95c9fba8e9732a2e68910
[ "BSD-3-Clause" ]
5
2019-07-24T13:16:15.000Z
2021-08-31T09:31:53.000Z
using UnityEngine; using System.Collections; using System.Collections.Generic; namespace YunvaIM { public class ImFriendNearListNotify : YunvaMsgBase { public List<RecentConact> recentList; public ImFriendNearListNotify(object Parse) { recentList = GetRecentCo...
76.960526
460
0.697384
74a299e9986ed629e5e5a9bdca89dc6c856c8926
224
cs
C#
eProdaja/eProdaja.Model/JediniceMjere.cs
asadtab/RS2-Vjezbe
a9a88801c093795c7d516024bad6bc4d2a19572b
[ "MIT" ]
null
null
null
eProdaja/eProdaja.Model/JediniceMjere.cs
asadtab/RS2-Vjezbe
a9a88801c093795c7d516024bad6bc4d2a19572b
[ "MIT" ]
null
null
null
eProdaja/eProdaja.Model/JediniceMjere.cs
asadtab/RS2-Vjezbe
a9a88801c093795c7d516024bad6bc4d2a19572b
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; namespace eProdaja.Model { public partial class JediniceMjere { public int JedinicaMjereId { get; set; } public string Naziv { get; set; } } }
16
48
0.651786
21490bb0d0e09c0a97614ec628a6bc4e0a00f7c9
3,384
cs
C#
OneCodeTeam/Exchange messages using Azure Service Bus Topic/[C#]-Exchange messages using Azure Service Bus Topic/CSAzureSalesSendMessagesViaTopic/SalesSendMessagesViaTopic/GetProduct.aspx.cs
zzgchina888/msdn-code-gallery-microsoft
21cb9b6bc0da3b234c5854ecac449cb3bd261f29
[ "MIT" ]
2
2022-01-21T01:40:58.000Z
2022-01-21T01:41:10.000Z
OneCodeTeam/Exchange messages using Azure Service Bus Topic/[C#]-Exchange messages using Azure Service Bus Topic/CSAzureSalesSendMessagesViaTopic/SalesSendMessagesViaTopic/GetProduct.aspx.cs
zzgchina888/msdn-code-gallery-microsoft
21cb9b6bc0da3b234c5854ecac449cb3bd261f29
[ "MIT" ]
1
2022-03-15T04:21:41.000Z
2022-03-15T04:21:41.000Z
OneCodeTeam/Exchange messages using Azure Service Bus Topic/[C#]-Exchange messages using Azure Service Bus Topic/CSAzureSalesSendMessagesViaTopic/SalesSendMessagesViaTopic/GetProduct.aspx.cs
zzgchina888/msdn-code-gallery-microsoft
21cb9b6bc0da3b234c5854ecac449cb3bd261f29
[ "MIT" ]
null
null
null
/****************************** Module Header ******************************\ *Module Name: GetProduct.aspx.cs *Project: SalesSendMessagesViaTopic *Copyright (c) Microsoft Corporation. * * Gets the data of the product from database based on the productno value input * *This source is subject to the Microsoft P...
40.771084
125
0.487884
8f1482bd478626d0145f0367c2c066a90e05d2a2
12,673
cs
C#
code/stable/nopcm/src/csharp/InputParameters.cs
Danki567/Drasil
d6bd7d0564710ae70b4847301d3d4df3f83fba11
[ "BSD-2-Clause" ]
2
2021-06-24T15:39:55.000Z
2021-06-24T16:57:00.000Z
code/stable/nopcm/src/csharp/InputParameters.cs
Danki567/Drasil
d6bd7d0564710ae70b4847301d3d4df3f83fba11
[ "BSD-2-Clause" ]
null
null
null
code/stable/nopcm/src/csharp/InputParameters.cs
Danki567/Drasil
d6bd7d0564710ae70b4847301d3d4df3f83fba11
[ "BSD-2-Clause" ]
null
null
null
/** \file InputParameters.cs \author Thulasi Jegatheesan \brief Provides the function for reading inputs and the function for checking the physical constraints and software constraints on the input */ using System; using System.IO; public class InputParameters { /** \brief Reads input from a file with...
44.780919
287
0.562377
5114ebff079f026eca0076af464ea533ded48af0
1,994
cs
C#
CUELegendKeys/Clients/Hotspots/HotspotResourceBar.cs
begner/CUELegendKeys.Net
a0d5f3a98c89e3caa20047d25fe258542b5aaf6a
[ "MIT" ]
null
null
null
CUELegendKeys/Clients/Hotspots/HotspotResourceBar.cs
begner/CUELegendKeys.Net
a0d5f3a98c89e3caa20047d25fe258542b5aaf6a
[ "MIT" ]
null
null
null
CUELegendKeys/Clients/Hotspots/HotspotResourceBar.cs
begner/CUELegendKeys.Net
a0d5f3a98c89e3caa20047d25fe258542b5aaf6a
[ "MIT" ]
null
null
null
using OpenCvSharp; using System; using System.Collections.Generic; using System.Windows.Controls; namespace CUELegendKeys { public class HotspotResourceBar : Hotspot { public override void DoFrameAction() { ActionBase = FilteredMat.Clone(); this.determinePercentage(); ...
27.315068
102
0.512538
b59fc754bf32bc71557fb40f69c40d911b98f060
485
cs
C#
src/Machete.X12Schema/Generated/V5010/Segments/IK5.cs
amccool/Machete
7bb8db195f22e1420287d2e146d50725a9d06a2a
[ "Apache-2.0" ]
47
2017-04-26T12:07:48.000Z
2021-02-18T22:03:41.000Z
src/Machete.X12Schema/Generated/V5010/Segments/IK5.cs
amccool/Machete
7bb8db195f22e1420287d2e146d50725a9d06a2a
[ "Apache-2.0" ]
71
2017-05-01T00:50:03.000Z
2020-08-30T18:57:15.000Z
src/Machete.X12Schema/Generated/V5010/Segments/IK5.cs
amccool/Machete
7bb8db195f22e1420287d2e146d50725a9d06a2a
[ "Apache-2.0" ]
16
2017-05-01T15:42:53.000Z
2022-01-20T03:02:17.000Z
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Machete.X12Schema.V5010 { using Machete.X12; public interface IK5 : X12Segment { Value<string> TSAckCode { get; } Value<string> ImpleTSSynErCode1 { get; } Value<string> ImpleTSSynErCode2...
25.526316
48
0.661856
da0ca47ccc1a7186b215ad558e56acda73877def
422
cs
C#
WebShopApi/Dtos/CreateOrderRowDto.cs
nilla68/WebShopApi
398332ad1d7784137fbc8f0a6283c0aae23fdede
[ "MIT" ]
null
null
null
WebShopApi/Dtos/CreateOrderRowDto.cs
nilla68/WebShopApi
398332ad1d7784137fbc8f0a6283c0aae23fdede
[ "MIT" ]
null
null
null
WebShopApi/Dtos/CreateOrderRowDto.cs
nilla68/WebShopApi
398332ad1d7784137fbc8f0a6283c0aae23fdede
[ "MIT" ]
null
null
null
using System.ComponentModel.DataAnnotations; namespace WebShopApi.Dtos { public class CreateOrderRowDto { public CreateOrderRowDto(int quantity, string articleNumber) { Quantity = quantity; ArticleNumber = articleNumber; } [Required] public int ...
20.095238
68
0.606635
a7a42375b1ef1d9a2926497c55de4dbf90bf820b
604
cs
C#
Felinesoft.UmbracoCodeFirst/Seeding/DocumentSeed.cs
DanMannMann/umbracocodefirst
7875da1cd72eb7ac3534fbc122ebe862343b8e10
[ "MIT" ]
7
2016-03-03T13:06:53.000Z
2019-12-16T10:28:43.000Z
Felinesoft.UmbracoCodeFirst/Seeding/DocumentSeed.cs
DanMannMann/umbracocodefirst
7875da1cd72eb7ac3534fbc122ebe862343b8e10
[ "MIT" ]
11
2016-04-25T13:22:02.000Z
2021-11-04T09:41:16.000Z
Felinesoft.UmbracoCodeFirst/Seeding/DocumentSeed.cs
DanMannMann/umbracocodefirst
7875da1cd72eb7ac3534fbc122ebe862343b8e10
[ "MIT" ]
7
2016-05-27T14:23:52.000Z
2022-02-11T13:58:15.000Z
using System; using System.Linq; using System.Collections.Generic; using Marsman.UmbracoCodeFirst.ContentTypes; using Marsman.UmbracoCodeFirst.Core.Resolver; using System.Reflection; using System.Text; using System.Threading.Tasks; using Umbraco.Core.Models; namespace Marsman.UmbracoCodeFirst.Seeding { public sealed ...
26.26087
103
0.796358
a7c7e1b9552919491bad7a4cf0aba5d32ef9768f
1,098
cs
C#
src/DynamicTranslator.Application/Google/DynamicTranslatorGoogleModule.cs
Vaseem88/DynamicTranslator
74f823d445420754105aa665ab3a41fcd616061a
[ "MIT" ]
1
2019-06-23T02:10:46.000Z
2019-06-23T02:10:46.000Z
src/DynamicTranslator.Application/Google/DynamicTranslatorGoogleModule.cs
cemsagan/DynamicTranslator
74f823d445420754105aa665ab3a41fcd616061a
[ "MIT" ]
null
null
null
src/DynamicTranslator.Application/Google/DynamicTranslatorGoogleModule.cs
cemsagan/DynamicTranslator
74f823d445420754105aa665ab3a41fcd616061a
[ "MIT" ]
null
null
null
using System.Reflection; using Abp.Modules; using DynamicTranslator.Application.Google.Configuration; using DynamicTranslator.LanguageManagement; namespace DynamicTranslator.Application.Google { [DependsOn(typeof(DynamicTranslatorApplicationModule))] public class DynamicTranslatorGoogleModule : DynamicTrans...
37.862069
173
0.724044
a7f50a641b0bfcd12fc6afe73cf7c8c812a83e01
1,055
cs
C#
Sources/VRage.Library/Parallelization/MyPausableJob.cs
Wrennsun/SpaceEngineers
f26850d9b3a13c824581332f58e623e9dfb93dc5
[ "OML" ]
3,359
2015-05-14T15:51:08.000Z
2022-03-31T19:50:05.000Z
Sources/VRage.Library/Parallelization/MyPausableJob.cs
Wrennsun/SpaceEngineers
f26850d9b3a13c824581332f58e623e9dfb93dc5
[ "OML" ]
523
2015-05-14T17:18:24.000Z
2021-12-23T13:22:24.000Z
Sources/VRage.Library/Parallelization/MyPausableJob.cs
Wrennsun/SpaceEngineers
f26850d9b3a13c824581332f58e623e9dfb93dc5
[ "OML" ]
1,579
2015-05-14T15:59:44.000Z
2022-03-16T00:39:27.000Z
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading; namespace VRage.Parallelization { /// <summary> /// Allows to pause one thread at exact points /// </summary> public class MyPausableJob { volatile bool m...
23.444444
66
0.559242
349597fc261a32bd6d2e84898a23a7b2661a6f6c
1,838
cs
C#
falling blocks game/Assets/Script/Spawner.cs
weacw/FallingBlocks
5ab07c4efad7f80b1ee9546e629eb88e30b6b2f6
[ "Apache-2.0" ]
null
null
null
falling blocks game/Assets/Script/Spawner.cs
weacw/FallingBlocks
5ab07c4efad7f80b1ee9546e629eb88e30b6b2f6
[ "Apache-2.0" ]
null
null
null
falling blocks game/Assets/Script/Spawner.cs
weacw/FallingBlocks
5ab07c4efad7f80b1ee9546e629eb88e30b6b2f6
[ "Apache-2.0" ]
null
null
null
using UnityEngine; using System.Collections; public class Spawner : MonoBehaviour { public GameObject fallingBlockPrefab; public Vector2 secondsBetweenSpawnsMinMax; public Vector2 spawnSizeMinMax; public float spawnAngleMax; private Vector2 screenHalfSizeWorldUnits; private float nextSpawnTime...
41.772727
139
0.712187
899586bea80f3d546ed2450074fe7586f8941d6d
3,797
cs
C#
ClubPenguin.Rewards/RewardPopupRewardItem.cs
smdx24/CPI-Source-Code
7602749d447dc73f24ecd9e08c50d2031721abf4
[ "MIT" ]
8
2019-06-04T19:49:27.000Z
2022-03-19T13:39:41.000Z
ClubPenguin.Rewards/RewardPopupRewardItem.cs
smdx24/CPI-Source-Code
7602749d447dc73f24ecd9e08c50d2031721abf4
[ "MIT" ]
null
null
null
ClubPenguin.Rewards/RewardPopupRewardItem.cs
smdx24/CPI-Source-Code
7602749d447dc73f24ecd9e08c50d2031721abf4
[ "MIT" ]
5
2020-05-05T04:06:29.000Z
2022-02-09T21:12:34.000Z
// RewardPopupRewardItem using ClubPenguin.Core; using ClubPenguin.Rewards; using DevonLocalization.Core; using Disney.Kelowna.Common; using Disney.MobileNetwork; using System; using UnityEngine; using UnityEngine.UI; public class RewardPopupRewardItem : MonoBehaviour { private const string ANIMATOR_EXIT_TRIGGER = "e...
30.376
433
0.78009
d8b21dd1fc60dec01e6d65d756d616d1ab506d73
1,311
cs
C#
WalletWasabi/BitcoinCore/Monitoring/RpcFeeProvider.cs
nondejus/WalletWasabi
27ba3f194474cec3a00d461d7fcc01e3cccaa92a
[ "MIT" ]
1
2021-11-10T01:55:33.000Z
2021-11-10T01:55:33.000Z
WalletWasabi/BitcoinCore/Monitoring/RpcFeeProvider.cs
nondejus/WalletWasabi
27ba3f194474cec3a00d461d7fcc01e3cccaa92a
[ "MIT" ]
null
null
null
WalletWasabi/BitcoinCore/Monitoring/RpcFeeProvider.cs
nondejus/WalletWasabi
27ba3f194474cec3a00d461d7fcc01e3cccaa92a
[ "MIT" ]
2
2021-04-07T04:29:53.000Z
2021-12-22T00:23:02.000Z
using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; using NBitcoin; using NBitcoin.RPC; using WalletWasabi.Bases; using WalletWasabi.Blockchain.Analysis.FeesEstimation; using WalletWasabi.Helpers; namespace WalletWasabi.BitcoinCore.Monitoring { publ...
22.603448
130
0.738368
cb2d1092c2da31393493ddd84f55a9b4d0064457
2,376
cs
C#
Project Dungeon/Assets/Scripts/Managers/AudioManager.cs
HaloSeventy7/CI-Project-GitHub
84f4536a5292c29d3aee141e81ba3fc792218986
[ "MIT" ]
null
null
null
Project Dungeon/Assets/Scripts/Managers/AudioManager.cs
HaloSeventy7/CI-Project-GitHub
84f4536a5292c29d3aee141e81ba3fc792218986
[ "MIT" ]
1
2019-05-11T23:07:49.000Z
2019-05-11T23:07:49.000Z
Project Dungeon/Assets/Scripts/Managers/AudioManager.cs
HaloSeventy7/CI-Project-GitHub
84f4536a5292c29d3aee141e81ba3fc792218986
[ "MIT" ]
null
null
null
using System.Collections; using System.Collections.Generic; using UnityEngine; public class AudioManager : MonoBehaviour { [SerializeField] AudioClip deathSound; [SerializeField] AudioClip[] musicOptions; private List<int> musicChoices = new List<int>(); AudioSource musicAudioSource; AudioSource...
32.547945
137
0.617424
db93606288d5a9038da27a110ac54acc30fdc222
11,973
cs
C#
Projects/AAXDataEntityPerfTest/ConsoleApp1/Connected Services/D365/AllocationRuleSource.cs
NathanClouseAX/AAXDataEntityPerfTest
098c6cdf5c71f2b928a5d8f375610cf685e6a63a
[ "MIT" ]
1
2022-02-21T23:02:44.000Z
2022-02-21T23:02:44.000Z
Projects/AAXDataEntityPerfTest/ConsoleApp1/Connected Services/D365/AllocationRuleSource.cs
NathanClouseAX/AAXDataEntityPerfTest
098c6cdf5c71f2b928a5d8f375610cf685e6a63a
[ "MIT" ]
1
2020-12-29T19:33:13.000Z
2020-12-29T19:33:13.000Z
Projects/AAXDataEntityPerfTest/ConsoleApp1/Connected Services/D365/AllocationRuleSource.cs
NathanClouseAX/AAXDataEntityPerfTest
098c6cdf5c71f2b928a5d8f375610cf685e6a63a
[ "MIT" ]
2
2021-03-01T04:19:50.000Z
2022-02-21T23:02:51.000Z
//------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //--...
45.181132
192
0.613965
43591d293535e6eef1f7327ddab21a8dfde1499f
662
cs
C#
Dusts/UmaruDust.cs
MetaByte149/LolitomsLogic
dccce6817582ce8ae4901779e84caf66ddd7628f
[ "MIT" ]
2
2019-09-01T08:27:21.000Z
2019-09-05T17:29:35.000Z
Dusts/UmaruDust.cs
MetaByte149/LolitomsLogic
dccce6817582ce8ae4901779e84caf66ddd7628f
[ "MIT" ]
2
2019-09-04T18:53:07.000Z
2019-09-06T15:43:59.000Z
Dusts/UmaruDust.cs
MetaByte149/LolitomsLogic
dccce6817582ce8ae4901779e84caf66ddd7628f
[ "MIT" ]
1
2019-09-06T16:13:57.000Z
2019-09-06T16:13:57.000Z
using Microsoft.Xna.Framework; using Terraria; using Terraria.ModLoader; namespace LolitomsLogic.Dusts { public class UmaruDust : ModDust { public override void OnSpawn(Dust dust) { dust.velocity *= 1.4f; dust.noGravity = false; dust.frame = new Rectangle(0, 0, 16, 16);...
26.48
53
0.522659
a373e6e52ff59771113e2cdcdafbbf0853fc93af
334
cs
C#
ModernHistory/Fhr.ModernHistory.Models/SearchModels/PersonEventRelationSearchModel.cs
FanHuaRan/ModernHistory
38466299880e89d84dbb9cb17a7fea598743ef97
[ "MIT" ]
null
null
null
ModernHistory/Fhr.ModernHistory.Models/SearchModels/PersonEventRelationSearchModel.cs
FanHuaRan/ModernHistory
38466299880e89d84dbb9cb17a7fea598743ef97
[ "MIT" ]
null
null
null
ModernHistory/Fhr.ModernHistory.Models/SearchModels/PersonEventRelationSearchModel.cs
FanHuaRan/ModernHistory
38466299880e89d84dbb9cb17a7fea598743ef97
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Fhr.ModernHistory.Models.SearchModels { public class PersonEventRelationSearchModel { public Int32? PersonId { get; set; } public Int32? EventId { get; set...
20.875
49
0.682635
45ab15d7cae69257c4f7621ff312f723d4808590
303
cshtml
C#
FPTBlog/ViewsAdmin/Components/Icons/Logout.cshtml
MonoInfinity/fpt-blog
fa66eed9628a146361cad98147257944647605a0
[ "MIT" ]
2
2021-10-09T12:31:21.000Z
2021-10-13T03:24:38.000Z
FPTBlog/ViewsAdmin/Components/Icons/Logout.cshtml
MonoInfinity/fpt-blog
fa66eed9628a146361cad98147257944647605a0
[ "MIT" ]
1
2022-02-14T15:11:24.000Z
2022-02-14T15:11:24.000Z
FPTBlog/ViewsAdmin/Components/Icons/Logout.cshtml
MonoInfinity/fpt-blog
fa66eed9628a146361cad98147257944647605a0
[ "MIT" ]
null
null
null
<svg xmlns="http://www.w3.org/2000/svg" class="w-6 h-6 mr-3 " fill="none" viewBox="0 0 24 24" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 16l4-4m0 0l-4-4m4 4H7m6 4v1a3 3 0 01-3 3H6a3 3 0 01-3-3V7a3 3 0 013-3h4a3 3 0 013 3v1" /> </svg>
60.6
116
0.656766
625089bb3e47487edfb9ae6122e1bae3dac899b6
231
cs
C#
AopProxy.NET/AOP/Advice/IAfterAdvice.cs
xzoth/AopProxy.Net
45dbb2ff4f907444a52b6b8336b55067bd5301f5
[ "Unlicense" ]
1
2019-06-06T02:28:18.000Z
2019-06-06T02:28:18.000Z
AopProxy.NET/AOP/Advice/IAfterAdvice.cs
xzoth/AopProxy.Net
45dbb2ff4f907444a52b6b8336b55067bd5301f5
[ "Unlicense" ]
null
null
null
AopProxy.NET/AOP/Advice/IAfterAdvice.cs
xzoth/AopProxy.Net
45dbb2ff4f907444a52b6b8336b55067bd5301f5
[ "Unlicense" ]
1
2021-08-23T14:30:06.000Z
2021-08-23T14:30:06.000Z
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AopProxy.AOP.Advice { public interface IAfterAdvice: IAdvice { void AfterInvoke(InterceptorContext context); } }
17.769231
53
0.735931
1cc06c7e0796765ee0cf3c84504b14e955d515d0
1,425
cs
C#
src/ProjectExperience/JwtAuth.Demo/JwtAuth.Demo/Controllers/CryptoController.cs
cdcd72/gss.techtalk.demo
be5f841f2db5af43e6ef043524c4a0f5310f54b8
[ "MIT" ]
null
null
null
src/ProjectExperience/JwtAuth.Demo/JwtAuth.Demo/Controllers/CryptoController.cs
cdcd72/gss.techtalk.demo
be5f841f2db5af43e6ef043524c4a0f5310f54b8
[ "MIT" ]
null
null
null
src/ProjectExperience/JwtAuth.Demo/JwtAuth.Demo/Controllers/CryptoController.cs
cdcd72/gss.techtalk.demo
be5f841f2db5af43e6ef043524c4a0f5310f54b8
[ "MIT" ]
null
null
null
using JwtAuth.Demo.Configuration; using JwtAuth.Demo.Dto; using JwtAuth.Demo.Model; using JwtAuth.Demo.Security; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.DataProtection; using Microsoft.AspNetCore.Mvc; namespace JwtAuth.Demo.Controllers { [ApiController] [Authorize(Roles ...
29.6875
105
0.611228
cd16b2c45977695e5f71257fff6c036378bc3db0
1,103
cs
C#
LoggingDemo/LoggingDemo/MainPage.xaml.cs
doodz/AndroidDemos
4afdc6a4c826f28be3b799588df652db34f4aa0f
[ "MIT" ]
null
null
null
LoggingDemo/LoggingDemo/MainPage.xaml.cs
doodz/AndroidDemos
4afdc6a4c826f28be3b799588df652db34f4aa0f
[ "MIT" ]
1
2018-10-19T07:57:28.000Z
2018-10-19T07:57:28.000Z
LoggingDemo/LoggingDemo/MainPage.xaml.cs
doodz/AndroidDemos
4afdc6a4c826f28be3b799588df652db34f4aa0f
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using Xamarin.Forms; namespace LoggingDemo { public partial class MainPage : ContentPage { private static ILogger logger = DependencyService.Get<ILogManager>().GetLog(); public MainPage() { InitializeComponent(); } ...
22.979167
86
0.578422
85a48b13c5e5bf3a81b26639fd99fd7f049ef886
11,855
cs
C#
Wartorn/PathFinding/dijkstra.cs
Kahdeg-15520487/Wartorn
3eb96ba8b9574ce748ae53b991b8eb894cda36c8
[ "MIT" ]
null
null
null
Wartorn/PathFinding/dijkstra.cs
Kahdeg-15520487/Wartorn
3eb96ba8b9574ce748ae53b991b8eb894cda36c8
[ "MIT" ]
null
null
null
Wartorn/PathFinding/dijkstra.cs
Kahdeg-15520487/Wartorn
3eb96ba8b9574ce748ae53b991b8eb894cda36c8
[ "MIT" ]
1
2017-03-10T03:56:10.000Z
2017-03-10T03:56:10.000Z
using Microsoft.Xna.Framework; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using Wartorn.GameData; using Wartorn.Utility; namespace Wartorn.PathFinding { //actually we need the whole graph after the alg...
39.125413
165
0.47229
01129e5002c5b739dc41280c636593542fa458e8
619
cs
C#
test/protobuf-net-data.Tests/ProtoDataStreamTests.TheSetLengthMethod.cs
thomasjoscht/protobuf-net-data
e7dcb76f7f33ea51b4e6d0f0bbf1b2f3930b5567
[ "Apache-2.0" ]
24
2018-03-29T02:14:47.000Z
2022-03-31T08:49:28.000Z
test/protobuf-net-data.Tests/ProtoDataStreamTests.TheSetLengthMethod.cs
thomasjoscht/protobuf-net-data
e7dcb76f7f33ea51b4e6d0f0bbf1b2f3930b5567
[ "Apache-2.0" ]
16
2018-03-21T12:16:53.000Z
2022-02-18T18:52:52.000Z
test/protobuf-net-data.Tests/ProtoDataStreamTests.TheSetLengthMethod.cs
thomasjoscht/protobuf-net-data
e7dcb76f7f33ea51b4e6d0f0bbf1b2f3930b5567
[ "Apache-2.0" ]
17
2018-07-04T10:49:15.000Z
2022-02-24T08:16:53.000Z
// Copyright (c) Richard Dingwall, Arjen Post. See LICENSE in the project root for license information. using System; using Xunit; namespace ProtoBuf.Data.Tests { public partial class ProtoDataStreamTests { public class TheSSetLengthMethod : ProtoDataStreamTests { [Fact] ...
25.791667
104
0.584814
8ba8741d57ec7aa1c29da17d50bf472268687590
4,512
cs
C#
test/Microsoft.DocAsCode.Build.Engine.Tests/JsonConverterTest.cs
jamiehankins/docfx
6f8b9fed06a26cefdf34a8dffca29946259a1915
[ "MIT" ]
3,215
2015-12-25T07:35:25.000Z
2022-03-30T18:57:16.000Z
test/Microsoft.DocAsCode.Build.Engine.Tests/JsonConverterTest.cs
jamiehankins/docfx
6f8b9fed06a26cefdf34a8dffca29946259a1915
[ "MIT" ]
5,785
2015-12-27T15:01:03.000Z
2022-03-31T23:35:48.000Z
test/Microsoft.DocAsCode.Build.Engine.Tests/JsonConverterTest.cs
jamiehankins/docfx
6f8b9fed06a26cefdf34a8dffca29946259a1915
[ "MIT" ]
1,084
2015-12-28T10:09:54.000Z
2022-03-31T08:10:06.000Z
// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using Microsoft.DocAsCode.Glob; using Newtonsoft.Json; using System.Collections.Generic; using System.Collections.Immutable; using Xunit; namespace Microsoft...
53.714286
377
0.564273
5c71aee0a821a04856bce976cb13211b94eaffc4
17,970
cs
C#
MTN/MTNGameServer.cs
Dawilly/MTN
5af669b102da5f3919d2cbb0bf6298958d1092d8
[ "MIT" ]
3
2018-10-14T19:38:48.000Z
2021-01-15T17:14:17.000Z
MTN/MTNGameServer.cs
Dawilly/MTN
5af669b102da5f3919d2cbb0bf6298958d1092d8
[ "MIT" ]
null
null
null
MTN/MTNGameServer.cs
Dawilly/MTN
5af669b102da5f3919d2cbb0bf6298958d1092d8
[ "MIT" ]
6
2018-10-31T20:29:04.000Z
2021-08-07T20:53:20.000Z
using System; using System.Collections.Generic; using System.IO; using System.Linq; using Microsoft.Xna.Framework; using Netcode; using StardewValley; using StardewValley.Buildings; using StardewValley.Locations; using StardewValley.Minigames; using StardewValley.Network; namespace MTN { /// <summary> /// Re...
42.887828
195
0.551029
c8377126785fc35aad18f3105961eeb0a4184058
2,512
cs
C#
Directions.cs
ZachBlaker/Flattened2DArray
afbacc78bbafc2192219eef59dc79fd7b39db830
[ "MIT" ]
null
null
null
Directions.cs
ZachBlaker/Flattened2DArray
afbacc78bbafc2192219eef59dc79fd7b39db830
[ "MIT" ]
null
null
null
Directions.cs
ZachBlaker/Flattened2DArray
afbacc78bbafc2192219eef59dc79fd7b39db830
[ "MIT" ]
null
null
null
using UnityEngine; using System; public enum DirectionType { Cardinal, InterCardinal, All } public enum DirectionEnum { Up, UpRight, Right, DownRight, Down, DownLeft, Left, UpLeft } public static class Directions { public static readonly Vector2Int Up = new Vector2In...
27.010753
103
0.641322
826c9308170bbcb4df78f903b210aecdf8c6b040
2,137
cs
C#
src/Spear.Sharp.Business/Domain/Repositories/JobTriggerRepository.cs
shoy160/spear-components
e6eb900058635b178cdaa4797bcf54f52c92cb07
[ "Apache-2.0" ]
1
2021-02-22T19:21:52.000Z
2021-02-22T19:21:52.000Z
src/Spear.Sharp.Business/Domain/Repositories/JobTriggerRepository.cs
shoy160/spear-components
e6eb900058635b178cdaa4797bcf54f52c92cb07
[ "Apache-2.0" ]
10
2020-07-17T07:10:10.000Z
2022-02-26T11:45:37.000Z
src/Spear.Sharp.Business/Domain/Repositories/JobTriggerRepository.cs
shoy160/spear-components
e6eb900058635b178cdaa4797bcf54f52c92cb07
[ "Apache-2.0" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Spear.Core.Data; using Spear.Dapper; using Spear.Dapper.Domain; using Spear.Sharp.Business.Domain.Entities; using Spear.Sharp.Contracts.Dtos.Job; using Spear.Sharp.Contracts.Enums; using Dapper; namespace Spear.Shar...
36.844828
111
0.60599
8cf4db061a11140a4a6db87ec534f849154517bb
1,423
cs
C#
15 - 17 Arrays/2017-06-09/08 Upgraded Matcher/08 Upgraded Matcher.cs
Bullsized/Assignments-Fundamentals-Normal
743aace51475cb281a7c3f94d0a7c9d26b7512d1
[ "MIT" ]
1
2017-07-19T07:50:24.000Z
2017-07-19T07:50:24.000Z
15 - 17 Arrays/2017-06-09/08 Upgraded Matcher/08 Upgraded Matcher.cs
Bullsized/Assignments-Fundamentals-Normal
743aace51475cb281a7c3f94d0a7c9d26b7512d1
[ "MIT" ]
null
null
null
15 - 17 Arrays/2017-06-09/08 Upgraded Matcher/08 Upgraded Matcher.cs
Bullsized/Assignments-Fundamentals-Normal
743aace51475cb281a7c3f94d0a7c9d26b7512d1
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _08_Upgraded_Matcher { class Program { static void Main(string[] args) { string[] names = Console.ReadLine().Split(); long[] quantity = Console....
33.093023
121
0.464512
3af60bbd21e2bd788080dc2cff3dd1b5a6243ac1
7,798
cs
C#
test/LeetABit.PerformanceTests.Binary/Tests.cs
hubuk/Binary
170527a24d373fb601a3e7693d77b201218a348d
[ "MIT" ]
null
null
null
test/LeetABit.PerformanceTests.Binary/Tests.cs
hubuk/Binary
170527a24d373fb601a3e7693d77b201218a348d
[ "MIT" ]
null
null
null
test/LeetABit.PerformanceTests.Binary/Tests.cs
hubuk/Binary
170527a24d373fb601a3e7693d77b201218a348d
[ "MIT" ]
null
null
null
namespace LeetABit.PerformanceTests.Binary { using BenchmarkDotNet.Attributes; using LeetABit.Binary; using System; using System.Buffers.Binary; using System.Collections.Generic; using System.Linq; using System.Runtime.CompilerServices; using System.Text; using System.Threading.Tasks...
36.439252
150
0.476276
3b58ebc56ab838e8773d22462175dfb9c3ec7086
1,305
cs
C#
hms-sdk-unity/HuaweiMobileServices/Drive/ChangeList.cs
kayahanbaskeser/hms-sdk-unity
ce9c89163b0fe6e42b2363769191918d06e272f9
[ "MIT" ]
1
2020-12-30T10:17:59.000Z
2020-12-30T10:17:59.000Z
hms-sdk-unity/HuaweiMobileServices/Drive/ChangeList.cs
kayahanbaskeser/hms-sdk-unity
ce9c89163b0fe6e42b2363769191918d06e272f9
[ "MIT" ]
null
null
null
hms-sdk-unity/HuaweiMobileServices/Drive/ChangeList.cs
kayahanbaskeser/hms-sdk-unity
ce9c89163b0fe6e42b2363769191918d06e272f9
[ "MIT" ]
null
null
null
using HuaweiMobileServices.Utils; using System.Collections.Generic; using UnityEngine; namespace HuaweiMobileServices.Drive { public class ChangeList : JavaObjectWrapper { public ChangeList(AndroidJavaObject javaObject) : base(javaObject) { } public ChangeList() : base("com.huawei.cloud.servic...
46.607143
113
0.718008
4b3f1bb17635b7a5db2b4636523f685fbb45e34a
4,826
cs
C#
FitBoxIPD/UWP/FitBoxIPD/AuthPage.xaml.cs
jbienzms/HoloTools
22a3888239a57f8b8f00292468f531d7493fb018
[ "MIT" ]
17
2016-10-19T17:32:28.000Z
2021-04-11T19:58:09.000Z
FitBoxIPD/UWP/FitBoxIPD/AuthPage.xaml.cs
jbienzms/HoloTools
22a3888239a57f8b8f00292468f531d7493fb018
[ "MIT" ]
null
null
null
FitBoxIPD/UWP/FitBoxIPD/AuthPage.xaml.cs
jbienzms/HoloTools
22a3888239a57f8b8f00292468f531d7493fb018
[ "MIT" ]
3
2016-09-19T01:21:34.000Z
2017-06-03T16:41:30.000Z
using Adept; using Microsoft.Tools.WindowsDevicePortal; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices.WindowsRuntime; using System.Threading.Tasks; using UnityEngine; using Windows.Foundation; using Windows.Foundation.Collections; using Windows...
30.738854
166
0.561542
4b4f36a4d4764db05a7e13103f1ac6f391c4f786
3,453
cs
C#
ABP.WebApi/后端/src/ABP.WebApi.Web.Core/Configuration/ConfigSettingProvider.cs
gnsilence/AntdPro-Vue-id4
f69e543e1843164b0d0f5f48947f8ea156b7cdf8
[ "MIT" ]
8
2020-04-26T01:29:53.000Z
2021-05-08T15:03:40.000Z
ABP.WebApi/后端/src/ABP.WebApi.Web.Core/Configuration/ConfigSettingProvider.cs
gnsilence/AntdPro-Vue-id4
f69e543e1843164b0d0f5f48947f8ea156b7cdf8
[ "MIT" ]
6
2020-07-20T11:15:17.000Z
2022-02-10T22:13:24.000Z
ABP.WebApi/后端/src/ABP.WebApi.Web.Core/Configuration/ConfigSettingProvider.cs
gnsilence/AntdPro-Vue-id4
f69e543e1843164b0d0f5f48947f8ea156b7cdf8
[ "MIT" ]
2
2020-08-20T12:52:55.000Z
2020-12-16T03:44:48.000Z
using Abp.Configuration; using Abp.Localization; using Abp.Net.Mail; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using System; using System.Collections.Generic; using System.Text; namespace ABP.WebApi.Configuration { public class ConfigSettingProvider: SettingProvider { ...
66.403846
230
0.710397
d208b4c3a269bdbb02f045b0d46cb6f367207124
1,824
cs
C#
src/Specifications/Specification.cs
jonathascosta/mneumo-core-specifications
2ad9779261fada0058d85433f31d344ca9ec4ed0
[ "MIT" ]
null
null
null
src/Specifications/Specification.cs
jonathascosta/mneumo-core-specifications
2ad9779261fada0058d85433f31d344ca9ec4ed0
[ "MIT" ]
null
null
null
src/Specifications/Specification.cs
jonathascosta/mneumo-core-specifications
2ad9779261fada0058d85433f31d344ca9ec4ed0
[ "MIT" ]
null
null
null
using System; using System.Linq.Expressions; namespace Mneumo.Core.Specifications { /// <summary> /// Base class for Specifications. /// </summary> /// <typeparam name="T"></typeparam> public abstract class Specification<T> { /// <summary> /// When implemented, determines if sp...
28.061538
96
0.577303
a9a41a5b4d13e7ecb2298bd0520ac21141f90109
1,422
cs
C#
GitPulseAnalytics/Models/LinkHeader.cs
quanyincoder/GitPulseAnalytics
1ffdf06041666972e68f5ed2583074f1d43c28b4
[ "MIT" ]
null
null
null
GitPulseAnalytics/Models/LinkHeader.cs
quanyincoder/GitPulseAnalytics
1ffdf06041666972e68f5ed2583074f1d43c28b4
[ "MIT" ]
null
null
null
GitPulseAnalytics/Models/LinkHeader.cs
quanyincoder/GitPulseAnalytics
1ffdf06041666972e68f5ed2583074f1d43c28b4
[ "MIT" ]
null
null
null
using System.Text.RegularExpressions; namespace GitPulseAnalytics.Models { /// <summary> /// This class represents the starndard web link header per RFC5988 specicifcation. /// </summary> public class LinkHeader { public string First { get; set; } public string Last { get; set; } public string Next { get; ...
24.101695
97
0.596343
d7310d3d58fdc57ce2de3e46adcfb1cfc04456c9
17,975
cs
C#
src/IO/AmfWriter.Amf3.cs
eaba/rtmp-sharp
719e14d0f9a89eae6470b4f89aa8d3107369cdb2
[ "MIT" ]
53
2019-07-13T08:26:20.000Z
2022-03-30T19:48:56.000Z
src/IO/AmfWriter.Amf3.cs
eaba/rtmp-sharp
719e14d0f9a89eae6470b4f89aa8d3107369cdb2
[ "MIT" ]
3
2017-10-18T14:20:29.000Z
2017-11-27T12:21:46.000Z
src/IO/AmfWriter.Amf3.cs
eaba/rtmp-sharp
719e14d0f9a89eae6470b4f89aa8d3107369cdb2
[ "MIT" ]
19
2019-09-22T16:06:38.000Z
2022-03-30T19:48:27.000Z
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using Hina; using Hina.Collections; using Hina.Reflection; using Konseki; using RtmpSharp.IO.AMF3; using RtmpSharp.Infos; namespace RtmpSharp.IO { partial class AmfWriter { ...
37.13843
206
0.463032
3b936e0aae1289ff6aa476e9d325dafb72f8c775
2,472
cs
C#
City-scene-editor/Assets/Scripts/GroundEditor/Mark.cs
PavelGem-13g/Street_designer
e7dc78c7ce927803d5b8f59b4d80e5321bb06a07
[ "Apache-2.0" ]
null
null
null
City-scene-editor/Assets/Scripts/GroundEditor/Mark.cs
PavelGem-13g/Street_designer
e7dc78c7ce927803d5b8f59b4d80e5321bb06a07
[ "Apache-2.0" ]
null
null
null
City-scene-editor/Assets/Scripts/GroundEditor/Mark.cs
PavelGem-13g/Street_designer
e7dc78c7ce927803d5b8f59b4d80e5321bb06a07
[ "Apache-2.0" ]
null
null
null
using System; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; public class Mark : MonoBehaviour, IDragHandler,IPointerDownHandler { public RectTransform rectTransform; public InputField inputHight; public int hight; private void Awake() { rectTransform = GetCompone...
43.368421
184
0.704288
ce00eb3510bfab85f6a3e43ca0a60fcf7164a7a8
6,572
cs
C#
Scripts/UI/WandController.cs
GreggBzz/FracPlanet
daff543993e1afeebfcbf7ea769edf055ce7fca5
[ "MIT" ]
19
2017-04-10T05:24:46.000Z
2019-12-12T06:14:44.000Z
Scripts/UI/WandController.cs
GreggBzz/FracPlanet
daff543993e1afeebfcbf7ea769edf055ce7fca5
[ "MIT" ]
1
2018-08-11T16:11:18.000Z
2018-10-04T23:16:47.000Z
Scripts/UI/WandController.cs
GreggBzz/FracPlanet
daff543993e1afeebfcbf7ea769edf055ce7fca5
[ "MIT" ]
4
2017-06-19T03:10:58.000Z
2020-06-11T01:34:30.000Z
using UnityEngine; using System; public class WandController : SteamVR_TrackedController { public SteamVR_Controller.Device controller { get { return SteamVR_Controller.Input((int)controllerIndex); } } public Vector3 velocity { get { return controller.velocity; } } public Vector3 angularVelocity {...
37.988439
131
0.579732
9d79dc2aa33ffb14fd4787e2e622e5060635bcfb
977
cs
C#
sdk/dotnet/CloudIdentity/V1/Inputs/RestrictionEvaluationsArgs.cs
AaronFriel/pulumi-google-native
75d1cda425e33d4610348972cd70bddf35f1770d
[ "Apache-2.0" ]
44
2021-04-18T23:00:48.000Z
2022-02-14T17:43:15.000Z
sdk/dotnet/CloudIdentity/V1/Inputs/RestrictionEvaluationsArgs.cs
AaronFriel/pulumi-google-native
75d1cda425e33d4610348972cd70bddf35f1770d
[ "Apache-2.0" ]
354
2021-04-16T16:48:39.000Z
2022-03-31T17:16:39.000Z
sdk/dotnet/CloudIdentity/V1/Inputs/RestrictionEvaluationsArgs.cs
AaronFriel/pulumi-google-native
75d1cda425e33d4610348972cd70bddf35f1770d
[ "Apache-2.0" ]
8
2021-04-24T17:46:51.000Z
2022-01-05T10:40:21.000Z
// *** 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.Goog...
33.689655
147
0.706244