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
df9ec54f97d05e8dee30d9386cc442b8b339f073
468
cs
C#
ObsController.Core/Models/SettingModelBase.cs
ChiiAyano/ObsController
e7679224f86e8dc0e72e417dc3477dc19c091d11
[ "MIT" ]
1
2021-02-10T13:07:12.000Z
2021-02-10T13:07:12.000Z
ObsController.Core/Models/SettingModelBase.cs
ChiiAyano/ObsController
e7679224f86e8dc0e72e417dc3477dc19c091d11
[ "MIT" ]
null
null
null
ObsController.Core/Models/SettingModelBase.cs
ChiiAyano/ObsController
e7679224f86e8dc0e72e417dc3477dc19c091d11
[ "MIT" ]
1
2020-10-03T22:57:28.000Z
2020-10-03T22:57:28.000Z
using Newtonsoft.Json; namespace ObsController.Core.Models { public abstract class SettingModelBase { /// <summary> /// 接続先アドレス (既定値: ws://127.0.0.1:4444/) /// </summary> [JsonProperty("url")] public string Url { get; set; } = "ws://127.0.0.1:4444/"; /// <summa...
23.4
65
0.517094
12dfe4825f8bcfc93603f89a5dfcec747904c2fd
253
cs
C#
ProductCatalogManagerAPI/ProductCatalogManagerAPI/Extensions/DTOProfile.cs
Ryro3753/product-catalog-manager-api
1a6e2fdee1948d4e1bd1570a79d175fc972f7746
[ "MIT" ]
null
null
null
ProductCatalogManagerAPI/ProductCatalogManagerAPI/Extensions/DTOProfile.cs
Ryro3753/product-catalog-manager-api
1a6e2fdee1948d4e1bd1570a79d175fc972f7746
[ "MIT" ]
null
null
null
ProductCatalogManagerAPI/ProductCatalogManagerAPI/Extensions/DTOProfile.cs
Ryro3753/product-catalog-manager-api
1a6e2fdee1948d4e1bd1570a79d175fc972f7746
[ "MIT" ]
null
null
null
using AutoMapper; using ProductCatalogManagerAPI.Models; namespace ProductCatalogManagerAPI.Extensions { public class DTOProfile : Profile { public DTOProfile() { CreateMap<ProductDTO, Product>(); } } }
18.071429
45
0.644269
c3b8f5f5a0fcea1d268fbe731525828c4949f649
744
cs
C#
Api/Repositories/IBookmarksRepository.cs
Jaskaranbir/InstaPost
9e330deca534654772848e441ab34e50e3d40225
[ "Apache-2.0" ]
4
2018-01-23T04:37:43.000Z
2019-12-27T01:13:38.000Z
Api/Repositories/IBookmarksRepository.cs
Jaskaranbir/InstaPost
9e330deca534654772848e441ab34e50e3d40225
[ "Apache-2.0" ]
null
null
null
Api/Repositories/IBookmarksRepository.cs
Jaskaranbir/InstaPost
9e330deca534654772848e441ab34e50e3d40225
[ "Apache-2.0" ]
3
2018-02-28T01:50:09.000Z
2020-10-29T05:18:58.000Z
using Api.Models; using MongoDB.Bson; using System.Collections.Generic; using System.Threading.Tasks; namespace Api.Repositories { public interface IBookmarksRepository { Task<Bookmarks> AddBookmarks(int userId, params int[] postIds); IEnumerable<int> GetAllBookmarks(int userId); IEnumerab...
43.764706
89
0.727151
7f0bb8a7594691d06a63d0334ddc1d3b74bc7ce5
920
cs
C#
Src/EasyRecorder/UI/KeyPressData.cs
scanhand/EasyRecorder
8df1f64611cad21f9856dfaafe103678bfcf5a21
[ "MIT" ]
1
2021-06-13T23:51:49.000Z
2021-06-13T23:51:49.000Z
Src/EasyRecorder/UI/KeyPressData.cs
scanhand/EasyRecorder
8df1f64611cad21f9856dfaafe103678bfcf5a21
[ "MIT" ]
2
2021-06-03T11:44:50.000Z
2021-06-15T10:24:38.000Z
Src/EasyRecorder/UI/KeyPressData.cs
scanhand/EasyRecorder
8df1f64611cad21f9856dfaafe103678bfcf5a21
[ "MIT" ]
null
null
null
using System.ComponentModel; using System.Runtime.CompilerServices; namespace ESR.UI { public class KeyPressData : INotifyPropertyChanged { private int _Index = 0; public int Index { get { return _Index; } set { _Index = value; ...
22.439024
78
0.495652
03b818576f9a5cfb96be67c32799647641cd496d
502
cs
C#
Renderer/Audio/Cache/CachedSound.cs
BRH-Media/Lego_Pak_Explorer
8bb1cc0909efc0ba83ab5766f0fd02398cf20ad7
[ "MS-PL" ]
6
2020-10-23T11:07:47.000Z
2022-02-18T08:46:28.000Z
Renderer/Audio/Cache/CachedSound.cs
BRH-Media/Lego_Pak_Explorer
8bb1cc0909efc0ba83ab5766f0fd02398cf20ad7
[ "MS-PL" ]
null
null
null
Renderer/Audio/Cache/CachedSound.cs
BRH-Media/Lego_Pak_Explorer
8bb1cc0909efc0ba83ab5766f0fd02398cf20ad7
[ "MS-PL" ]
1
2021-05-04T13:25:11.000Z
2021-05-04T13:25:11.000Z
using NAudio.Wave; using System.IO; namespace TT_Games_Explorer.Renderer.Audio.Cache { public class CachedSound { public float[] AudioData { get; set; } public WaveFormat WaveFormat { get; set; } public CachedSound(string fileName) { //blank constructor } ...
19.307692
50
0.549801
66b2bf4fd2c83cda1c80985bfc58e3d282afe86a
4,363
cs
C#
App_Code/Forecast.cs
jmocon/MRPS
4cae016cb521a0eaed59de91319eec90f72385ee
[ "MIT" ]
null
null
null
App_Code/Forecast.cs
jmocon/MRPS
4cae016cb521a0eaed59de91319eec90f72385ee
[ "MIT" ]
1
2021-05-11T03:59:53.000Z
2021-05-11T03:59:53.000Z
App_Code/Forecast.cs
jmocon/MRPS
4cae016cb521a0eaed59de91319eec90f72385ee
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; /// <summary> /// Summary description for Forecast /// Type /// 0 - Daily /// 1 - Weekly /// 2 - Monthly /// Day /// Day - 0 /// Weekly - 1-7 = Sunday to Saturday /// Monthly - 1-30 /// </summary> p...
26.125749
69
0.563374
6fcb82f26bc43a58f3382e1ad74069742f721d44
2,811
cs
C#
Assets/Scripts/VirtualJoystick/PrintInput.cs
PinkEmerald96/UnityVirtualController
df1701c188115ac993970bb7f67be4710c36fbf9
[ "MIT" ]
1
2022-03-11T05:17:59.000Z
2022-03-11T05:17:59.000Z
Assets/Scripts/VirtualJoystick/PrintInput.cs
MikeGOfficial/UnityVirtualController
df1701c188115ac993970bb7f67be4710c36fbf9
[ "MIT" ]
null
null
null
Assets/Scripts/VirtualJoystick/PrintInput.cs
MikeGOfficial/UnityVirtualController
df1701c188115ac993970bb7f67be4710c36fbf9
[ "MIT" ]
null
null
null
using UnityEngine; /// <summary> /// Prints the Inputs from a PlayerJoysticks class on the screen. /// </summary> public class PrintInput : MonoBehaviour { #region Methods private string CurrentState(CombinedButton button) { if (button.IsPressed) return "Pressed"; if (button.Is...
48.465517
115
0.630381
7f6b71c7900d2ea3eb4f7567d06a2b8be9ec0be4
565
cs
C#
test/Autofac.Framework.DependencyInjection.Test/Specification/Fakes/AnotherClass.cs
shawnwildermuth/Autofac
0816cc2214c0acd3ebf01e34f342bbfdb09af8b9
[ "MIT" ]
1
2015-01-18T04:45:22.000Z
2015-01-18T04:45:22.000Z
test/Microsoft.Framework.DependencyInjection.Tests/Fakes/AnotherClass.cs
Tragetaschen/DependencyInjection
f577e387dc9f5b974ae7854d469e22b4a81d64b8
[ "Apache-2.0" ]
null
null
null
test/Microsoft.Framework.DependencyInjection.Tests/Fakes/AnotherClass.cs
Tragetaschen/DependencyInjection
f577e387dc9f5b974ae7854d469e22b4a81d64b8
[ "Apache-2.0" ]
1
2021-04-15T07:40:46.000Z
2021-04-15T07:40:46.000Z
// 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. namespace Microsoft.Framework.DependencyInjection.Tests.Fakes { public class AnotherClass { private readonly IFakeService _fakeService; ...
26.904762
111
0.651327
055e6e738e04f9f9cefc7d3af70edb4e9bb07ff2
1,066
cs
C#
src/SyZero.Core/SyZero/Util/ILockUtil.cs
winter-2022/syzero-core
cd651d6c9b80d8ff49e91f776f06bca99c4e7b2b
[ "Apache-2.0" ]
null
null
null
src/SyZero.Core/SyZero/Util/ILockUtil.cs
winter-2022/syzero-core
cd651d6c9b80d8ff49e91f776f06bca99c4e7b2b
[ "Apache-2.0" ]
2
2021-11-22T15:02:28.000Z
2021-11-22T15:02:28.000Z
src/SyZero.Core/SyZero/Util/ILockUtil.cs
winter2048/syzero-core
cd651d6c9b80d8ff49e91f776f06bca99c4e7b2b
[ "Apache-2.0" ]
null
null
null
using System.Threading.Tasks; namespace SyZero.Util { public interface ILockUtil { /// <summary> /// 释放锁 /// </summary> /// <param name="lockKey"></param> void Release(string lockKey); /// <summary> /// 获取锁 /// </summary> /// <param name=...
35.533333
114
0.591932
b80b99985819c73460cc75a7bbb0676c526bc656
99,255
cs
C#
SP579emulator/Tri_Instructions.cs
iboalali/SP579Simulator
16a7483dccf0fef174ff5a63c38693538737a91d
[ "Apache-2.0" ]
null
null
null
SP579emulator/Tri_Instructions.cs
iboalali/SP579Simulator
16a7483dccf0fef174ff5a63c38693538737a91d
[ "Apache-2.0" ]
null
null
null
SP579emulator/Tri_Instructions.cs
iboalali/SP579Simulator
16a7483dccf0fef174ff5a63c38693538737a91d
[ "Apache-2.0" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace SP579emulator { /// <summary> /// A Static class for all instruction that have direct access to the Registers and Memory /// </summary> public class Tri_Instructions { ...
41.425292
150
0.400373
b4a5607c501526fc179d186fb1fe9b1013cb473e
3,096
cs
C#
api/Services/EdocsMockRepository.cs
agrc/daq-web-framework
a5bf7b4237cf3421c0e41d484a52c1b40f35b4bf
[ "MIT" ]
1
2020-03-22T17:39:49.000Z
2020-03-22T17:39:49.000Z
api/Services/EdocsMockRepository.cs
agrc/daq-web-framework
a5bf7b4237cf3421c0e41d484a52c1b40f35b4bf
[ "MIT" ]
60
2016-11-17T21:01:06.000Z
2018-08-01T00:16:09.000Z
api/Services/EdocsMockRepository.cs
agrc/daq-web-framework
a5bf7b4237cf3421c0e41d484a52c1b40f35b4bf
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using daq_api.Contracts; using daq_api.Models; namespace daq_api.Services { public class EdocsMockRepository : IRepository { readonly List<EDocEntry> _items = new List<EDocEntry> { new EDocEntr...
43.605634
320
0.56137
cc35066e7804b875f8fcd5eefea5d955193faea0
364
cs
C#
EntryUITest/Pages/BaseContentPage.cs
AzureAdvocateBit/EntryUITest
3d9e00cd79d2d7f79d8a3f007773332a711296fc
[ "MIT" ]
6
2017-02-10T23:39:11.000Z
2022-02-24T18:17:16.000Z
EntryUITest/Pages/BaseContentPage.cs
AzureAdvocateBit/EntryUITest
3d9e00cd79d2d7f79d8a3f007773332a711296fc
[ "MIT" ]
null
null
null
EntryUITest/Pages/BaseContentPage.cs
AzureAdvocateBit/EntryUITest
3d9e00cd79d2d7f79d8a3f007773332a711296fc
[ "MIT" ]
3
2018-01-04T06:46:24.000Z
2020-11-03T23:24:39.000Z
using Xamarin.Forms; namespace EntryUITest { public class BaseContentPage<TViewModel> : ContentPage where TViewModel : BaseViewModel, new() { public BaseContentPage(in string title) { BindingContext = ViewModel; Title = title; } protected TViewModel Vie...
22.75
98
0.620879
5e61823f9ae66e9b038190e0f78f40b1216e80df
10,614
cs
C#
Assets/EasyMobile/Scripts/Common/Utils/PInvokeCallbackUtil.cs
AndreeBurlamaqui/HyperBeatMIX
6e5c79d0cba5b2f0f72dc7e30659317976b90742
[ "MIT" ]
null
null
null
Assets/EasyMobile/Scripts/Common/Utils/PInvokeCallbackUtil.cs
AndreeBurlamaqui/HyperBeatMIX
6e5c79d0cba5b2f0f72dc7e30659317976b90742
[ "MIT" ]
null
null
null
Assets/EasyMobile/Scripts/Common/Utils/PInvokeCallbackUtil.cs
AndreeBurlamaqui/HyperBeatMIX
6e5c79d0cba5b2f0f72dc7e30659317976b90742
[ "MIT" ]
null
null
null
using UnityEngine; using System; using System.Runtime.InteropServices; namespace EasyMobile.Internal { internal static class PInvokeCallbackUtil { private static readonly bool VERBOSE_DEBUG = false; internal static IntPtr ToIntPtr<T>(Action<T> callback, Func<IntPtr, T> conversionFunction) ...
32.066465
120
0.484172
5ea371ce2b3d678ce919a1451947647f1a1c35ad
268
cs
C#
Source/Accelerider.Windows/Views/Dialogs/AboutDialog.xaml.cs
DingpingZhang/BaiduPanDownloadWpf
12507eb7d7dab5d20cd323a2df17b08b40f274ab
[ "MIT" ]
944
2017-07-31T04:35:37.000Z
2022-03-31T03:19:58.000Z
Source/Accelerider.Windows/Views/Dialogs/AboutDialog.xaml.cs
azhaoxin/Accelerider.Windows
f6e15428745eb40ba143ce11e0a012e3f3c9b35b
[ "MIT" ]
89
2017-08-02T14:21:01.000Z
2021-03-06T04:14:54.000Z
Source/Accelerider.Windows/Views/Dialogs/AboutDialog.xaml.cs
azhaoxin/Accelerider.Windows
f6e15428745eb40ba143ce11e0a012e3f3c9b35b
[ "MIT" ]
269
2017-07-30T06:13:20.000Z
2022-03-24T05:29:12.000Z
namespace Accelerider.Windows.Views.Dialogs { /// <summary> /// Interaction logic for AboutDialog.xaml /// </summary> public partial class AboutDialog { public AboutDialog() { InitializeComponent(); } } }
19.142857
46
0.567164
a29a69446d5739447e1d2088740f847247b7d0ff
1,716
cs
C#
sdk/dotnet/QuickSight/Outputs/ThemeDataColorPalette.cs
AaronFriel/pulumi-aws-native
5621690373ac44accdbd20b11bae3be1baf022d1
[ "Apache-2.0" ]
29
2021-09-30T19:32:07.000Z
2022-03-22T21:06:08.000Z
sdk/dotnet/QuickSight/Outputs/ThemeDataColorPalette.cs
AaronFriel/pulumi-aws-native
5621690373ac44accdbd20b11bae3be1baf022d1
[ "Apache-2.0" ]
232
2021-09-30T19:26:26.000Z
2022-03-31T23:22:06.000Z
sdk/dotnet/QuickSight/Outputs/ThemeDataColorPalette.cs
AaronFriel/pulumi-aws-native
5621690373ac44accdbd20b11bae3be1baf022d1
[ "Apache-2.0" ]
4
2021-11-10T19:42:01.000Z
2022-02-05T10:15:49.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.AwsN...
35.020408
105
0.621212
0c4aec1f6ddafe2a39820a0518dfbce8268d2e33
484
cs
C#
csharp/Examples/XnaTank/MXTankWindowsService/Program.cs
MoysheBenRabi/setp
7619f0bae457e14e2fb41e58bfe517019628c5de
[ "Apache-2.0" ]
1
2021-07-13T12:22:22.000Z
2021-07-13T12:22:22.000Z
csharp/Examples/XnaTank/MXTankWindowsService/Program.cs
MoysheBenRabi/setp
7619f0bae457e14e2fb41e58bfe517019628c5de
[ "Apache-2.0" ]
1
2021-01-04T21:53:56.000Z
2021-01-04T21:59:36.000Z
csharp/Examples/XnaTank/MXTankWindowsService/Program.cs
MoysheBenRabi/setp
7619f0bae457e14e2fb41e58bfe517019628c5de
[ "Apache-2.0" ]
1
2021-09-19T16:18:54.000Z
2021-09-19T16:18:54.000Z
using System; using System.Collections.Generic; using System.ServiceProcess; using System.Text; namespace MXTankWindowsService { static class Program { /// <summary> /// The main entry point for the application. /// </summary> static void Main() { ServiceBa...
19.36
53
0.580579
0ca64bda506199a89be107aa91f44c2263cb41eb
317
cs
C#
Brimborium.CodeFlow/Brimborium.CodeFlow.Abstracts/RequestHandler/IGlobalRequestHandlerFactory.cs
FlorianGrimm/Brimborium.Net
24cea827c751d7f9fd73c57ab530d37cdf714bf5
[ "MIT" ]
null
null
null
Brimborium.CodeFlow/Brimborium.CodeFlow.Abstracts/RequestHandler/IGlobalRequestHandlerFactory.cs
FlorianGrimm/Brimborium.Net
24cea827c751d7f9fd73c57ab530d37cdf714bf5
[ "MIT" ]
null
null
null
Brimborium.CodeFlow/Brimborium.CodeFlow.Abstracts/RequestHandler/IGlobalRequestHandlerFactory.cs
FlorianGrimm/Brimborium.Net
24cea827c751d7f9fd73c57ab530d37cdf714bf5
[ "MIT" ]
null
null
null
using System; namespace Brimborium.CodeFlow.RequestHandler { public interface IGlobalRequestHandlerFactory { TRequestHandler CreateRequestHandler<TRequestHandler>( IServiceProvider scopedServiceProvider ) where TRequestHandler : notnull, IRequestHandler; } }
28.818182
62
0.706625
23059e07434ab1a3e0505d31fa68b7d744f251e4
197
cs
C#
Assets/MikuMikuXR/UI/ListItem/MmdModelListItemData.cs
ttoyou/MikuMikuXR
b2c7a1b303a60b4348ce5e36f55c8b3e1059ed99
[ "BSD-3-Clause" ]
59
2018-10-13T17:51:29.000Z
2022-03-20T01:20:04.000Z
Assets/MikuMikuXR/UI/ListItem/MmdModelListItemData.cs
ttoyou/MikuMikuXR
b2c7a1b303a60b4348ce5e36f55c8b3e1059ed99
[ "BSD-3-Clause" ]
6
2018-11-05T08:07:17.000Z
2021-06-17T05:27:40.000Z
Assets/MikuMikuXR/UI/ListItem/MmdModelListItemData.cs
x3bits/MikuMikuXR
c4722ad555be8ba53fb6e6834632455a4f26d524
[ "BSD-3-Clause" ]
14
2018-12-07T10:13:50.000Z
2021-12-08T17:19:28.000Z
using UnityEngine; using UnityEngine.Events; namespace MikuMikuXR.UI.ListItem { public class MmdModelListItemData { public string Name; public UnityAction OnClick; } }
17.909091
37
0.700508
bea896882796aa816f446e8b6703dc4d4b69cbae
1,687
cs
C#
test/ConsoleClient/Rss/Extensions.cs
tdav/LuceneServerNET
ab848250dd41829e13f29ee5b16c25a744fa1616
[ "Apache-2.0" ]
6
2021-02-10T11:35:02.000Z
2022-01-20T18:52:23.000Z
test/ConsoleClient/Rss/Extensions.cs
jugstalt/LuceneServerNET
7f00f10fef1908bbd1d90b4c60b822d39cf3dfa6
[ "Apache-2.0" ]
null
null
null
test/ConsoleClient/Rss/Extensions.cs
jugstalt/LuceneServerNET
7f00f10fef1908bbd1d90b4c60b822d39cf3dfa6
[ "Apache-2.0" ]
null
null
null
using System; using System.Collections.Generic; using System.Globalization; using System.Runtime.InteropServices; using System.Text; namespace ConsoleClient.Rss { static public class Extensions { static public NumberFormatInfo Nhi = System.Globalization.CultureInfo.InvariantCulture.NumberFormat; ...
32.442308
122
0.625963
3d4a7a46a6e246a7ee270ba0313a4bfca9c8abb0
3,989
cs
C#
src/Google.DataTable.Net.Wrapper.Tests/Extension/EnumerableExtensionTest.cs
sjasperse/GoogleDataTableLib
8b6754e2ee79837945c96308b9fe8435ce59ca84
[ "Apache-2.0" ]
16
2017-04-17T23:07:41.000Z
2022-01-08T05:05:38.000Z
src/Google.DataTable.Net.Wrapper.Tests/Extension/EnumerableExtensionTest.cs
sjasperse/GoogleDataTableLib
8b6754e2ee79837945c96308b9fe8435ce59ca84
[ "Apache-2.0" ]
6
2018-05-16T18:15:44.000Z
2021-03-07T00:31:26.000Z
src/Google.DataTable.Net.Wrapper.Tests/Extension/EnumerableExtensionTest.cs
sjasperse/GoogleDataTableLib
8b6754e2ee79837945c96308b9fe8435ce59ca84
[ "Apache-2.0" ]
11
2017-10-18T01:27:05.000Z
2021-08-10T03:00:06.000Z
using System.Collections.Generic; using System.Linq; using Google.DataTable.Net.Wrapper.Extension; using NUnit.Framework; namespace Google.DataTable.Net.Wrapper.Tests.Extension { [TestFixture] public class GenericListConverterTest { [Test] public void CanConvertAnonymousListToGoogleDataTab...
34.387931
96
0.475307
3dccf6713e707a5a6923531beea1eed87dfc229a
148
cs
C#
EmployeeHub.Core/Models/MonthlyEmployee.cs
fale984/employeehub-mg
844b951ecfdbdbf6689f02ed8269bf3c6333e725
[ "MIT" ]
null
null
null
EmployeeHub.Core/Models/MonthlyEmployee.cs
fale984/employeehub-mg
844b951ecfdbdbf6689f02ed8269bf3c6333e725
[ "MIT" ]
null
null
null
EmployeeHub.Core/Models/MonthlyEmployee.cs
fale984/employeehub-mg
844b951ecfdbdbf6689f02ed8269bf3c6333e725
[ "MIT" ]
null
null
null
namespace EmployeeHub.Core.Models { public class MonthlyEmployee : HubEmployee { public double MonthlySalary { get; set; } } }
18.5
49
0.662162
8b0f224f75bc802befa8ae180a49641feb0d88fb
1,090
cs
C#
Loop Tasks/LoopTasks 3/LoopTask 3.3/LoopTask 3.3/Program.cs
n0tkee/basics-of-programming-2018
d6972519f3a45fbbce7571234bbe5e17ccd9761d
[ "MIT" ]
null
null
null
Loop Tasks/LoopTasks 3/LoopTask 3.3/LoopTask 3.3/Program.cs
n0tkee/basics-of-programming-2018
d6972519f3a45fbbce7571234bbe5e17ccd9761d
[ "MIT" ]
null
null
null
Loop Tasks/LoopTasks 3/LoopTask 3.3/LoopTask 3.3/Program.cs
n0tkee/basics-of-programming-2018
d6972519f3a45fbbce7571234bbe5e17ccd9761d
[ "MIT" ]
null
null
null
using System; namespace Looptask_3._2 { class Program { static void Main(string[] args) { Console.WriteLine("Ohjelma laskee N:n ensimmäisen parittoman ja parillisen lukujen summan"); Console.Write("Syötä N! arvo: "); int num = int.Parse(Console.ReadLine());...
24.772727
104
0.374312
9649c8fb37b1e69fa80a36f3eb78c31117c1a15a
399
cs
C#
Assets/Resources/Scripts/World/Settlements/SettlementPrefab.cs
SchwiftyPython/PizzalikeRL
fbd4cdd5f7e6a519b9d85d401f7828c7c20d891f
[ "Apache-2.0" ]
null
null
null
Assets/Resources/Scripts/World/Settlements/SettlementPrefab.cs
SchwiftyPython/PizzalikeRL
fbd4cdd5f7e6a519b9d85d401f7828c7c20d891f
[ "Apache-2.0" ]
null
null
null
Assets/Resources/Scripts/World/Settlements/SettlementPrefab.cs
SchwiftyPython/PizzalikeRL
fbd4cdd5f7e6a519b9d85d401f7828c7c20d891f
[ "Apache-2.0" ]
null
null
null
using System.Collections.Generic; public class SettlementPrefab { public char[,] Blueprint; public List<Lot> Lots; public SettlementPrefab(char [,] blueprint) { Blueprint = blueprint; Lots = new List<Lot>(); } public SettlementPrefab(SettlementPrefab prefab) { Bl...
19
52
0.629073
f06666f82a36de18318ccbbc5a0854e02aa3057d
257
cs
C#
samples/Data/Elect.Sample.Data.EF/Models/UserEntity.cs
tmvan/Elect
dec227e6b2f295778b90f6e7d1485307e9424ddc
[ "MIT" ]
136
2018-05-19T10:20:09.000Z
2022-03-18T17:47:33.000Z
samples/Data/Elect.Sample.Data.EF/Models/UserEntity.cs
nminhduc/Elect
df760d774b9ec56f9d84f5f08d55d78a1bfe2458
[ "MIT" ]
9
2018-06-22T13:18:14.000Z
2021-01-18T11:07:41.000Z
samples/Data/Elect.Sample.Data.EF/Models/UserEntity.cs
nminhduc/Elect
df760d774b9ec56f9d84f5f08d55d78a1bfe2458
[ "MIT" ]
45
2018-05-21T13:54:38.000Z
2022-01-07T16:28:25.000Z
using System.Collections.Generic; namespace Elect.Sample.Data.EF.Models { public class UserEntity : Entity { public string UserName { get; set; } public virtual ICollection<UserProfileEntity> Profiles { get; set; } } }
23.363636
76
0.657588
5b1e7b2c3089955b9f0586cd529eea057b4d3e08
3,136
cs
C#
MvvmCross/Binding/Combiners/MvxBooleanValueCombiner.cs
dahovey/MvvmCross
5563833ac9f2e34b6210a9c98451c7ed0dfd98f1
[ "MS-PL" ]
3,180
2015-01-02T20:12:55.000Z
2022-03-31T14:01:09.000Z
MvvmCross/Binding/Combiners/MvxBooleanValueCombiner.cs
dahovey/MvvmCross
5563833ac9f2e34b6210a9c98451c7ed0dfd98f1
[ "MS-PL" ]
2,783
2015-01-01T19:54:02.000Z
2022-03-28T22:46:51.000Z
MvvmCross/Binding/Combiners/MvxBooleanValueCombiner.cs
mihaibc/MvvmCross
5b0a1730957c9d94789326c5b8a9f3c13fd38720
[ "MS-PL" ]
1,475
2015-01-06T15:21:21.000Z
2022-03-22T09:21:46.000Z
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MS-PL license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Linq; using MvvmCross.Binding.Bindings.SourceSteps; using MvvmCros...
29.584906
90
0.571747
5b3870d3f8878e53696580e590cea3cc08b7e6b0
1,033
cs
C#
src/DND.Domain.CMS/Testimonials/Testimonial.cs
davidikin45/DigitalNomadDaveAspNetCore
99be5389605223aaa7be87d778eb1a66c0c08340
[ "MIT" ]
null
null
null
src/DND.Domain.CMS/Testimonials/Testimonial.cs
davidikin45/DigitalNomadDaveAspNetCore
99be5389605223aaa7be87d778eb1a66c0c08340
[ "MIT" ]
null
null
null
src/DND.Domain.CMS/Testimonials/Testimonial.cs
davidikin45/DigitalNomadDaveAspNetCore
99be5389605223aaa7be87d778eb1a66c0c08340
[ "MIT" ]
null
null
null
using DND.Common.Domain; using DND.Common.Infrastrucutre.Interfaces.Domain; using Microsoft.EntityFrameworkCore; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Threading.Tasks; namespace DND.Domain.CMS.Testimonials { public class Testimonial : EntityAggregateRootAudita...
30.382353
135
0.68151
1ef9906ed60ca51a29b82f7a96747a7c31d798ef
4,154
cs
C#
LiruGameHelper/Reflection/ConstructorCache.cs
LiruJ/LiruGameHelper
bce8a2f770cc3bfe1e618937a319b50d4ea9f8dd
[ "MIT" ]
null
null
null
LiruGameHelper/Reflection/ConstructorCache.cs
LiruJ/LiruGameHelper
bce8a2f770cc3bfe1e618937a319b50d4ea9f8dd
[ "MIT" ]
null
null
null
LiruGameHelper/Reflection/ConstructorCache.cs
LiruJ/LiruGameHelper
bce8a2f770cc3bfe1e618937a319b50d4ea9f8dd
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Reflection; namespace LiruGameHelper.Reflection { public class ConstructorCache<T> { #region Fields private readonly Dictionary<Type, ConstructorInfo> constructorsByType = new Dictionary<Type, ConstructorInfo>(); private rea...
44.191489
205
0.649735
f101f898e4e8398ffc38f89a7852015bdd2897d9
7,379
cs
C#
Assets/Scripts/Importing/Conversion/CollisionModel.cs
GhodelApps/SanAndreasUnity
e66ad5065a624f584fccb2b9d320ffc46fb8a55c
[ "MIT" ]
1,169
2018-06-18T15:41:05.000Z
2022-03-31T14:27:09.000Z
Assets/Scripts/Importing/Conversion/CollisionModel.cs
GhodelApps/SanAndreasUnity
e66ad5065a624f584fccb2b9d320ffc46fb8a55c
[ "MIT" ]
100
2018-09-30T00:53:16.000Z
2022-03-29T13:46:45.000Z
Assets/Scripts/Importing/Conversion/CollisionModel.cs
GhodelApps/SanAndreasUnity
e66ad5065a624f584fccb2b9d320ffc46fb8a55c
[ "MIT" ]
250
2018-07-09T12:54:59.000Z
2022-03-26T03:07:19.000Z
using SanAndreasUnity.Importing.Collision; using System; using System.Collections.Generic; using System.Linq; using UnityEngine; using Object = UnityEngine.Object; using UnityEngine.Profiling; namespace SanAndreasUnity.Importing.Conversion { public class CollisionModel { private static UnityEngine.Vect...
29.398406
147
0.562
1a87ef0a262c02f46b8a1084e73660671243a88b
8,069
cs
C#
Insight.Database.Providers.SybaseAse/SybaseAseInsightDbProvider.cs
IEvangelist/Insight.Database
350d3ead77850e549799aafbf901644668f4c1d2
[ "MS-PL" ]
1
2016-10-26T14:17:14.000Z
2016-10-26T14:17:14.000Z
Insight.Database.Providers.SybaseAse/SybaseAseInsightDbProvider.cs
uonun/Insight.Database
546aac11766d61274498fcc4ad65174e5212a561
[ "MS-PL" ]
null
null
null
Insight.Database.Providers.SybaseAse/SybaseAseInsightDbProvider.cs
uonun/Insight.Database
546aac11766d61274498fcc4ad65174e5212a561
[ "MS-PL" ]
null
null
null
using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Diagnostics.CodeAnalysis; using System.Globalization; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; using Sybase.Data.AseClient; namespace Insight.Datab...
33.069672
190
0.726856
e7774c2aaba89f4755ba826ff3eeed082652c410
3,752
cs
C#
AssistantComputerControl/WebFiles/NewVersion.Designer.cs
CodingPupper3033/AssistantComputerControl
b8b6a8781c34b4cdbeea20c036a4c7dedd8bf6db
[ "MIT" ]
null
null
null
AssistantComputerControl/WebFiles/NewVersion.Designer.cs
CodingPupper3033/AssistantComputerControl
b8b6a8781c34b4cdbeea20c036a4c7dedd8bf6db
[ "MIT" ]
null
null
null
AssistantComputerControl/WebFiles/NewVersion.Designer.cs
CodingPupper3033/AssistantComputerControl
b8b6a8781c34b4cdbeea20c036a4c7dedd8bf6db
[ "MIT" ]
null
null
null
namespace AssistantComputerControl { partial class NewVersion { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> ...
46.9
166
0.614072
9c820e3ab6717658c3d3972adc556e044f9046bd
2,608
cs
C#
src/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyCodeAction.cs
itrofimow/corefx
03453d9aae8e5d18e571699c5d2229b1ab5f4b9d
[ "MIT" ]
7
2017-06-14T19:41:53.000Z
2019-07-17T01:10:44.000Z
src/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyCodeAction.cs
itrofimow/corefx
03453d9aae8e5d18e571699c5d2229b1ab5f4b9d
[ "MIT" ]
2
2020-06-06T09:07:48.000Z
2020-06-06T09:13:07.000Z
src/System.Private.Xml/src/System/Xml/Xsl/XsltOld/CopyCodeAction.cs
itrofimow/corefx
03453d9aae8e5d18e571699c5d2229b1ab5f4b9d
[ "MIT" ]
3
2021-02-10T16:20:05.000Z
2021-03-12T07:55:36.000Z
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace System.Xml.Xsl.XsltOld { using System; using System.Diagnostics; using System.Xml; using S...
30.682353
78
0.495015
4e8e1b3d736fc70ea79876c13eb60662b541b180
5,081
cs
C#
src/EShop.IocConfig/AddCustomServicesExtensions.cs
sradd3/EShop
79896ea650eb591161148639a7df4352bd27ec5d
[ "MIT" ]
null
null
null
src/EShop.IocConfig/AddCustomServicesExtensions.cs
sradd3/EShop
79896ea650eb591161148639a7df4352bd27ec5d
[ "MIT" ]
null
null
null
src/EShop.IocConfig/AddCustomServicesExtensions.cs
sradd3/EShop
79896ea650eb591161148639a7df4352bd27ec5d
[ "MIT" ]
null
null
null
using EShop.Common.Mvc; using EShop.DataLayer.Context; using EShop.Entities.Identity; using EShop.Services; using EShop.Services.Contracts; using EShop.Services.Contracts.Identity; using EShop.Services.EFServices; using EShop.Services.EFServices.Identity; using EShop.ViewModels.Application; using Microsoft.AspNetCore....
44.570175
128
0.668569
fb0fce383966b06f2f4f395948c99f10e37dcb82
413
cs
C#
snippets/csharp/VS_Snippets_ADO.NET/Classic WebData DataColumnCollection.Clear Example/CS/source.cs
ericmutta/samples
89b09af6287f8151c36d6219281f2ff170321f0e
[ "CC-BY-4.0", "MIT" ]
1
2019-12-06T21:52:55.000Z
2019-12-06T21:52:55.000Z
snippets/csharp/VS_Snippets_ADO.NET/Classic WebData DataColumnCollection.Clear Example/CS/source.cs
ericmutta/samples
89b09af6287f8151c36d6219281f2ff170321f0e
[ "CC-BY-4.0", "MIT" ]
555
2019-09-23T22:22:58.000Z
2021-07-15T18:51:12.000Z
snippets/csharp/VS_Snippets_ADO.NET/Classic WebData DataColumnCollection.Clear Example/CS/source.cs
ericmutta/samples
89b09af6287f8151c36d6219281f2ff170321f0e
[ "CC-BY-4.0", "MIT" ]
1
2022-03-07T20:09:25.000Z
2022-03-07T20:09:25.000Z
using System; using System.Data; using System.Windows.Forms; public class Form1: Form { protected DataSet DataSet1; // <Snippet1> private void ClearColumnsCollection(DataTable table) { DataColumnCollection columns; // Get the DataColumnCollection from a // DataTable in a Da...
17.956522
56
0.639225
fbd9d64a71122fb9b5e2492d89c1eb3a79634760
105,857
cs
C#
src/CloudService/generated/api/Models/Api20210301/NetworkInterfacePropertiesFormat.PowerShell.cs
Aviv-Yaniv/azure-powershell
cd12623240e06f54c74ad820d5c85410e3651c23
[ "MIT" ]
1
2022-03-30T13:51:37.000Z
2022-03-30T13:51:37.000Z
src/CloudService/generated/api/Models/Api20210301/NetworkInterfacePropertiesFormat.PowerShell.cs
Aviv-Yaniv/azure-powershell
cd12623240e06f54c74ad820d5c85410e3651c23
[ "MIT" ]
1
2022-03-18T21:01:39.000Z
2022-03-18T21:01:39.000Z
src/CloudService/generated/api/Models/Api20210301/NetworkInterfacePropertiesFormat.PowerShell.cs
yanfa317/azure-powershell
8b0e3334fa5b3cac182612a0663a4216af7ded4f
[ "MIT" ]
null
null
null
// 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...
136.41366
803
0.78778
146b2be2ffe75b993f333fc39073e69d03ce924d
8,086
cs
C#
GDO.Apps.Presentation/PresentationAppHub.cs
bkavuncu/GDO
d3225660af2b8151eccdb52238cbc51bf2005c3e
[ "MIT" ]
null
null
null
GDO.Apps.Presentation/PresentationAppHub.cs
bkavuncu/GDO
d3225660af2b8151eccdb52238cbc51bf2005c3e
[ "MIT" ]
1
2019-10-09T08:50:15.000Z
2019-10-09T08:50:15.000Z
GDO.Apps.Presentation/PresentationAppHub.cs
bkavuncu/GDO
d3225660af2b8151eccdb52238cbc51bf2005c3e
[ "MIT" ]
2
2019-10-02T20:35:22.000Z
2021-05-17T00:56:45.000Z
using System; using System.Collections.Generic; using System.ComponentModel.Composition; using Microsoft.AspNet.SignalR; using GDO.Core; using GDO.Core.Apps; using log4net; using Microsoft.Office.Core; using Microsoft.Office.Interop.PowerPoint; //[assembly: System.Web.UI.WebResource("GDO.Apps.Presentation.Scripts.im...
45.426966
180
0.537967
0912883dcb8b749e3b9d3e04e33a0671061069bf
7,035
cs
C#
src/Pandell.IntegrationAgent/AssemblyExtensions.cs
pandell/IntegrationAgent
235ec918860d8bbbcf4f60d10d701bbef1f72c7d
[ "MIT" ]
null
null
null
src/Pandell.IntegrationAgent/AssemblyExtensions.cs
pandell/IntegrationAgent
235ec918860d8bbbcf4f60d10d701bbef1f72c7d
[ "MIT" ]
null
null
null
src/Pandell.IntegrationAgent/AssemblyExtensions.cs
pandell/IntegrationAgent
235ec918860d8bbbcf4f60d10d701bbef1f72c7d
[ "MIT" ]
null
null
null
using System; using System.IO; using System.Linq; using System.Reflection; using JetBrains.Annotations; namespace Pandell.IntegrationAgent { /// <summary> /// Extension methods for <see cref="Assembly"/> instances. /// </summary> /// <remarks> /// Unit tested in <c>Pandell.IntegrationAgent.Test.A...
43.96875
171
0.573561
d06cbc978eaba3943bef34be2605f1b4257adb45
3,651
cs
C#
24.12.2020_mimarlik/Form1.cs
TolgaNogay/photo-viewer
72e3781b10b66caa004f263735bf229bbe7274c5
[ "MIT" ]
2
2020-12-26T18:26:52.000Z
2020-12-30T13:17:55.000Z
24.12.2020_mimarlik/Form1.cs
TolgaNogay/photo-viewer
72e3781b10b66caa004f263735bf229bbe7274c5
[ "MIT" ]
null
null
null
24.12.2020_mimarlik/Form1.cs
TolgaNogay/photo-viewer
72e3781b10b66caa004f263735bf229bbe7274c5
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace _24._12._2020_mimarlik { public partial class Form1 : Form { pub...
39.258065
135
0.50671
64d449cfbb4e99fea1e464a74fb1885bc1c95f61
6,456
cs
C#
VrcOscIntegrations/Interface/MainPanel.cs
Killers0992/VrcOscIntegrations
4ac4587dc63e1c29349f765f69fd8c6001026fef
[ "MIT" ]
null
null
null
VrcOscIntegrations/Interface/MainPanel.cs
Killers0992/VrcOscIntegrations
4ac4587dc63e1c29349f765f69fd8c6001026fef
[ "MIT" ]
null
null
null
VrcOscIntegrations/Interface/MainPanel.cs
Killers0992/VrcOscIntegrations
4ac4587dc63e1c29349f765f69fd8c6001026fef
[ "MIT" ]
null
null
null
using ReaLTaiizor.Controls; using ReaLTaiizor.Enum.Poison; using ReaLTaiizor.Forms; using System; using System.Data; using System.Drawing; using System.Windows.Forms; namespace VrcOscIntegrations.Interface { public partial class MainPanel : PoisonForm { public static event EventHandler<ConsoleLogArgs>...
34.524064
138
0.549876
64d7cc3ab0a18499f12c79fa5a33e5c6ce8a4c51
9,863
cs
C#
17.ExamPreparation/Exam-22Feb2020/Solution/02.Re-Volt/Program.cs
dinikolaeva/Advanced-CSharp
455668122b2adb943fb40548f9af5f951039e656
[ "MIT" ]
null
null
null
17.ExamPreparation/Exam-22Feb2020/Solution/02.Re-Volt/Program.cs
dinikolaeva/Advanced-CSharp
455668122b2adb943fb40548f9af5f951039e656
[ "MIT" ]
null
null
null
17.ExamPreparation/Exam-22Feb2020/Solution/02.Re-Volt/Program.cs
dinikolaeva/Advanced-CSharp
455668122b2adb943fb40548f9af5f951039e656
[ "MIT" ]
null
null
null
using System; namespace _02.Re_Volt { class Program { static void Main(string[] args) { int n = int.Parse(Console.ReadLine()); int m = int.Parse(Console.ReadLine()); char[,] matrix = new char[n, n]; var positionRow = 0; var position...
34.975177
102
0.281355
7dc64005f56c0c6209e1b4c6e0b643275c42c235
8,021
cs
C#
System.Maui.Controls.Issues/System.Maui.Controls.Issues.Shared/Issue1905.cs
Skyprx/maui
d410146773fa52a8cde10625fb73d026b8304957
[ "MIT" ]
3
2021-03-14T11:13:16.000Z
2021-03-18T10:47:02.000Z
System.Maui.Controls.Issues/System.Maui.Controls.Issues.Shared/Issue1905.cs
balu-m/maui
85ee7fe836dc005d44eb0ba6b4660b1c6341d59c
[ "MIT" ]
null
null
null
System.Maui.Controls.Issues/System.Maui.Controls.Issues.Shared/Issue1905.cs
balu-m/maui
85ee7fe836dc005d44eb0ba6b4660b1c6341d59c
[ "MIT" ]
1
2021-01-07T08:43:35.000Z
2021-01-07T08:43:35.000Z
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Maui.CustomAttributes; using System.Maui.Internals; using System.Maui.PlatformConfiguration; using System.Maui.PlatformConfiguration.iOSSpecific; #if UITEST using NUnit.Framework; using Xama...
70.982301
5,248
0.812742
2bb229c37c2b058aba94be74505b4f19d222254c
1,002
cs
C#
FFXIV/Component/GUI/AtkCounterNode.cs
Haplo064/FFXIVClientStructs
5dc4bd97cadf1ccd39c32be6332c01a8779c7839
[ "MIT" ]
null
null
null
FFXIV/Component/GUI/AtkCounterNode.cs
Haplo064/FFXIVClientStructs
5dc4bd97cadf1ccd39c32be6332c01a8779c7839
[ "MIT" ]
null
null
null
FFXIV/Component/GUI/AtkCounterNode.cs
Haplo064/FFXIVClientStructs
5dc4bd97cadf1ccd39c32be6332c01a8779c7839
[ "MIT" ]
null
null
null
using FFXIVClientStructs.FFXIV.Client.System.String; using FFXIVClientStructs.FFXIV.Component.GUI.ULD; using System.Runtime.InteropServices; namespace FFXIVClientStructs.FFXIV.Component.GUI { // Component::GUI::AtkCounterNode // Component::GUI::AtkResNode // Component::GUI::AtkEventTarget // si...
35.785714
69
0.691617
d3a99c85e8a97c0692dcf4b961f9aa6350ee7781
2,436
cs
C#
src/AngleSharp/Html/Dom/IHtmlAreaElement.cs
aidilumarov/AngleSharp
3968eb050e142b1d94550fba407afe772232b126
[ "MIT" ]
10
2021-11-02T08:17:08.000Z
2022-03-03T02:17:25.000Z
src/AngleSharp/Html/Dom/IHtmlAreaElement.cs
aidilumarov/AngleSharp
3968eb050e142b1d94550fba407afe772232b126
[ "MIT" ]
3
2016-10-23T07:26:15.000Z
2019-04-13T22:10:07.000Z
src/AngleSharp/Html/Dom/IHtmlAreaElement.cs
aidilumarov/AngleSharp
3968eb050e142b1d94550fba407afe772232b126
[ "MIT" ]
3
2021-03-30T11:46:36.000Z
2022-02-28T03:05:30.000Z
namespace AngleSharp.Html.Dom { using AngleSharp.Attributes; using AngleSharp.Dom; using System; /// <summary> /// Represents the area HTML element. /// </summary> [DomName("HTMLAreaElement")] public interface IHtmlAreaElement : IHtmlElement, IUrlUtilities { /// <summary> ...
31.230769
105
0.555419
3c8360395c86df74ee1801927e9fe156c4371e42
364
cs
C#
src/CrossCutting/CrossCutting.Logging/Log4netExtensions.cs
project-reason/application
c2ba6261ac6ca1e5d4ff8330f36233a4ccaf0430
[ "MIT" ]
null
null
null
src/CrossCutting/CrossCutting.Logging/Log4netExtensions.cs
project-reason/application
c2ba6261ac6ca1e5d4ff8330f36233a4ccaf0430
[ "MIT" ]
null
null
null
src/CrossCutting/CrossCutting.Logging/Log4netExtensions.cs
project-reason/application
c2ba6261ac6ca1e5d4ff8330f36233a4ccaf0430
[ "MIT" ]
null
null
null
using log4net.Appender; using Microsoft.Extensions.Logging; namespace CrossCutting.Logging { public static class Log4netExtensions { public static ILoggerFactory AddLog4Net(this ILoggerFactory factory, IAppender[] appenders) { factory.AddProvider(new Log4NetProvider(appenders)); ...
24.266667
99
0.686813
6db4e132b00561856b877829c1d4f5080494f181
13,013
cs
C#
Src/Lsj.Util.Win32/ComInterfaces/IOleClientSite.cs
kkwpsv/lsjutil
9dbb7825fedba015bd4b69ce76f7a07b72747d90
[ "WTFPL" ]
18
2018-07-17T13:41:39.000Z
2021-11-30T06:13:39.000Z
Src/Lsj.Util.Win32/ComInterfaces/IOleClientSite.cs
sdzxwxlsj/lsjutil
d1288ad44cb6dd02b19019aa8207468125ae8a1a
[ "WTFPL" ]
2
2020-12-21T03:39:02.000Z
2021-01-21T00:57:01.000Z
Src/Lsj.Util.Win32/ComInterfaces/IOleClientSite.cs
sdzxwxlsj/lsjutil
d1288ad44cb6dd02b19019aa8207468125ae8a1a
[ "WTFPL" ]
2
2020-03-21T03:13:57.000Z
2020-10-29T14:45:53.000Z
using Lsj.Util.Win32.BaseTypes; using Lsj.Util.Win32.Enums; using System; using System.Runtime.InteropServices; using static Lsj.Util.Win32.BaseTypes.BOOL; using static Lsj.Util.Win32.BaseTypes.HRESULT; using static Lsj.Util.Win32.Enums.OLEGETMONIKER; using static Lsj.Util.Win32.Enums.OLEWHICHMK; namespace Lsj.Util.W...
61.382075
166
0.646968
62a2a1b7fbded88af292647740ec7c408787e579
970
cs
C#
test/UnitTests/FeedbackControllerTests.cs
jcmds/tot-cqrs
b34ddf2a3d6ced934f462ab1ca87a6e6162292a3
[ "MIT" ]
2
2021-04-01T15:41:25.000Z
2021-12-07T14:02:34.000Z
test/UnitTests/FeedbackControllerTests.cs
jcmdsbr/tot
b34ddf2a3d6ced934f462ab1ca87a6e6162292a3
[ "MIT" ]
null
null
null
test/UnitTests/FeedbackControllerTests.cs
jcmdsbr/tot
b34ddf2a3d6ced934f462ab1ca87a6e6162292a3
[ "MIT" ]
null
null
null
using FluentAssertions; using Moq; using NUnit.Framework; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Tot.Api.Controllers; using Tot.Infra.Bus; using Tot.Query.Models; using Tot.Query.Queries.Feedbacks; namespace UnitTests { public class FeedbackControllerTests { ...
23.658537
99
0.625773
1cf983925123448ac73e03cda8ef0d2264e70cc6
3,608
cs
C#
src/ODataEx/Web.OData/Formatter/FeaturedODataFeedSerializer.cs
commonsensesoftware/More.OData
a1dbaf75c59c25daad5bacbf013bf37dc906e00e
[ "MIT" ]
3
2016-08-09T07:28:56.000Z
2021-03-04T11:34:59.000Z
src/ODataEx/Web.OData/Formatter/FeaturedODataFeedSerializer.cs
commonsensesoftware/More.OData
a1dbaf75c59c25daad5bacbf013bf37dc906e00e
[ "MIT" ]
null
null
null
src/ODataEx/Web.OData/Formatter/FeaturedODataFeedSerializer.cs
commonsensesoftware/More.OData
a1dbaf75c59c25daad5bacbf013bf37dc906e00e
[ "MIT" ]
null
null
null
namespace More.Web.OData.Formatter { using Microsoft.OData.Core; using Microsoft.OData.Edm; using System.Collections; using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Diagnostics.Contracts; using System.Web.OData.Formatter.Serialization; /// <summar...
52.289855
194
0.68071
0ac286c2bd32642235aa9c73f3f33583b83186b4
7,259
cs
C#
Source/Nuits.Prism.Tests/PageNavigationInfoResolverFixture.cs
nuitsjp/Nuits.Prism
b38e14e6f87fabf67d9041fe79090536cbd3aeae
[ "MIT" ]
null
null
null
Source/Nuits.Prism.Tests/PageNavigationInfoResolverFixture.cs
nuitsjp/Nuits.Prism
b38e14e6f87fabf67d9041fe79090536cbd3aeae
[ "MIT" ]
null
null
null
Source/Nuits.Prism.Tests/PageNavigationInfoResolverFixture.cs
nuitsjp/Nuits.Prism
b38e14e6f87fabf67d9041fe79090536cbd3aeae
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using Nuits.Prism.Navigation; using Nuits.Prism.Tests.ViewModels; using Nuits.Prism.Tests.Views; using Xunit; namespace Nuits.Prism.Tests { public class PageNavigationInfoRe...
38.205263
165
0.705331
cd6c50276cddece0a6f8d3fdc21d7e7c58b22c9c
900
cs
C#
tests/TestApp/Screenmedia.Plugin.Vanilla.Test.TestApp.iOS/Main.cs
Screenmedia/Plugin.Vanilla
9678946eaf653c55ba461c5b9c481223236c7a41
[ "MIT" ]
4
2016-11-08T11:18:54.000Z
2018-09-25T22:04:23.000Z
tests/TestApp/Screenmedia.Plugin.Vanilla.Test.TestApp.iOS/Main.cs
Screenmedia/Plugin.Vanilla
9678946eaf653c55ba461c5b9c481223236c7a41
[ "MIT" ]
5
2017-07-13T11:25:41.000Z
2018-08-15T10:34:43.000Z
tests/TestApp/Screenmedia.Plugin.Vanilla.Test.TestApp.iOS/Main.cs
Screenmedia/Plugin.Vanilla
9678946eaf653c55ba461c5b9c481223236c7a41
[ "MIT" ]
null
null
null
// ----------------------------------------------------------------------- // <copyright file="Main.cs" company="Screenmedia"> // Copyright (c) Screenmedia 2018. All rights reserved. // </copyright> // ----------------------------------------------------------------------- [module: System.Diagnostics.CodeAnalysi...
40.909091
182
0.568889
8547e458aefec7437ddc8dc5333077f0af82a891
3,854
cs
C#
modules/admin-core/src/Paas.Pioneer.Admin.Core.Application/DictionaryType/DictionaryTypeService.cs
xiaolei000129/Paas.Pioneer
8776051e61052d5cbd2ea1768ad2ed740869bc71
[ "Apache-2.0" ]
2
2022-01-13T03:30:28.000Z
2022-01-16T03:47:59.000Z
modules/admin-core/src/Paas.Pioneer.Admin.Core.Application/DictionaryType/DictionaryTypeService.cs
xiaolei000129/Paas.Pioneer
8776051e61052d5cbd2ea1768ad2ed740869bc71
[ "Apache-2.0" ]
null
null
null
modules/admin-core/src/Paas.Pioneer.Admin.Core.Application/DictionaryType/DictionaryTypeService.cs
xiaolei000129/Paas.Pioneer
8776051e61052d5cbd2ea1768ad2ed740869bc71
[ "Apache-2.0" ]
1
2022-01-16T03:48:07.000Z
2022-01-16T03:48:07.000Z
using Paas.Pioneer.Admin.Core.Application.Contracts.DictionaryType; using Paas.Pioneer.Admin.Core.Application.Contracts.DictionaryType.Dto.Input; using Paas.Pioneer.Admin.Core.Application.Contracts.DictionaryType.Dto.Output; using Paas.Pioneer.Admin.Core.Domain.Dictionary; using Paas.Pioneer.Admin.Core.Domain.Dictiona...
36.704762
117
0.639595
cf28aca7951d8a46029a5bb8b8069ca0705cb88e
461
cs
C#
src/SonarQube.Net/Models/AvailableRuleFields.cs
fjunqueira/SonarQube.Net
b8cba05dd44e33a97a7ab36a035750f9931d4dc2
[ "MIT" ]
9
2020-03-18T07:56:06.000Z
2022-03-28T19:21:54.000Z
src/SonarQube.Net/Models/AvailableRuleFields.cs
fjunqueira/SonarQube.Net
b8cba05dd44e33a97a7ab36a035750f9931d4dc2
[ "MIT" ]
5
2020-08-17T10:26:39.000Z
2022-03-09T07:37:12.000Z
src/SonarQube.Net/Models/AvailableRuleFields.cs
fjunqueira/SonarQube.Net
b8cba05dd44e33a97a7ab36a035750f9931d4dc2
[ "MIT" ]
6
2020-04-22T07:00:22.000Z
2022-01-11T17:45:43.000Z
namespace SonarQube.Net.Models { public enum AvailableRuleFields { Actives, CreatedAt, DebtOverloaded, DebtRemFn, DefaultDebtRemFn, DefaultRemFn, EffortToFixDescription, GapDescription, HtmlDesc, HtmlNote, InternalKey, IsExternal, IsTemplate, Lang, LangName, MdDesc, MdNote, Name, ...
12.459459
32
0.700651
a884752b6d2611d92dc047f9866f7ed3ca72f7e4
3,249
cs
C#
src/Obj2Gltf/Geom/OrientedBoundingBox.cs
arcplus/ObjConvert
00bbf8459320bb99946502a4712671d9dab21a0e
[ "MIT" ]
50
2018-12-16T04:44:47.000Z
2022-03-16T07:43:18.000Z
src/Obj2Gltf/Geom/OrientedBoundingBox.cs
CesiumTool/ObjConvert
00bbf8459320bb99946502a4712671d9dab21a0e
[ "MIT" ]
11
2019-01-09T03:08:02.000Z
2019-11-09T13:28:00.000Z
src/Obj2Gltf/Geom/OrientedBoundingBox.cs
arcplus/ObjConvert
00bbf8459320bb99946502a4712671d9dab21a0e
[ "MIT" ]
13
2019-02-21T09:21:33.000Z
2020-12-25T08:24:51.000Z
using System; using System.Collections.Generic; using System.Text; using System.Linq; namespace Arctron.Obj2Gltf.Geom { // from cesium internal class OrientedBoundingBox { public Matrix3 HalfAxis { get; set; } public Vec3 Center { get; set; } public static OrientedBoundingBox Fr...
30.650943
92
0.470606
1005df4b02f785c8a7b1c252a08a7f4492d1b980
56,479
cs
C#
Compiler/Saltarelle.Compiler/Compiler/StatementCompiler.cs
amokre/SaltarelleCompiler
ee6d6ffd284462ece2c74930e8f4a402e779a812
[ "Apache-2.0" ]
86
2015-07-06T17:37:24.000Z
2021-12-01T02:30:49.000Z
Compiler/Saltarelle.Compiler/Compiler/StatementCompiler.cs
amokre/SaltarelleCompiler
ee6d6ffd284462ece2c74930e8f4a402e779a812
[ "Apache-2.0" ]
58
2015-01-06T11:43:56.000Z
2015-06-23T15:28:24.000Z
Compiler/Saltarelle.Compiler/Compiler/StatementCompiler.cs
amokre/SaltarelleCompiler
ee6d6ffd284462ece2c74930e8f4a402e779a812
[ "Apache-2.0" ]
33
2015-08-19T18:51:18.000Z
2022-02-11T08:29:07.000Z
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text.RegularExpressions; using ICSharpCode.NRefactory; using ICSharpCode.NRefactory.CSharp; using ICSharpCode.NRefactory.CSharp.Resolver; using ICSharpCode.NRefactory.Semantics; using ICSharpCode.NRefactory.Type...
51.112217
630
0.739319
82d98168854bb48953708fbf593f3b3c3e339201
605
cs
C#
InfrastructureAsCode.Core/Models/REST/IRestListItemObj.cs
pinch-perfect/Microsoft.IaC
2fa060639dc6fc2661f0410cd8be12dc12233d43
[ "Apache-2.0" ]
5
2016-06-03T12:34:56.000Z
2018-08-04T13:30:57.000Z
InfrastructureAsCode.Core/Models/REST/IRestListItemObj.cs
pinch-perfect/Microsoft.IaC
2fa060639dc6fc2661f0410cd8be12dc12233d43
[ "Apache-2.0" ]
null
null
null
InfrastructureAsCode.Core/Models/REST/IRestListItemObj.cs
pinch-perfect/Microsoft.IaC
2fa060639dc6fc2661f0410cd8be12dc12233d43
[ "Apache-2.0" ]
2
2016-06-03T14:04:33.000Z
2017-07-31T14:12:25.000Z
using System; using Microsoft.SharePoint.Client; namespace InfrastructureAsCode.Core.Models.REST { public interface IRestListItemObj { bool Attachments { get; set; } int AuthorId { get; set; } string ContentTypeId { get; set; } DateTime Created { get; set; } int Edi...
20.166667
63
0.595041
76a431637c59d46445b01a920f7e0e73830f57e8
5,551
cs
C#
Fo/Flow/Flow.cs
modiCAS/fo.net
f5287aec9b2daa110cb0d53c8af01d08a6466da4
[ "Apache-2.0" ]
1
2017-02-25T05:28:20.000Z
2017-02-25T05:28:20.000Z
Fo/Flow/Flow.cs
modiCAS/fo.net
f5287aec9b2daa110cb0d53c8af01d08a6466da4
[ "Apache-2.0" ]
null
null
null
Fo/Flow/Flow.cs
modiCAS/fo.net
f5287aec9b2daa110cb0d53c8af01d08a6466da4
[ "Apache-2.0" ]
null
null
null
using System.Collections; using Fonet.Fo.Pagination; using Fonet.Layout; namespace Fonet.Fo.Flow { internal class Flow : FObj { private string _flowName; private Status _status = new Status( Status.AreaFullNone ); private int _contentWidth; private ArrayList _markerSnapshot; ...
31.539773
88
0.449108
b3e6b1298a3a7afbe769dcf9bb0b1acb7ba2d7a3
532
cs
C#
src/StonyGrey.ObjectMapper.Tests/SubMessage.cs
stonygrey/StonyGrey.ObjectMapper
dc5c59c6ca11028fa3addb6f3d918fc165995e61
[ "MIT" ]
null
null
null
src/StonyGrey.ObjectMapper.Tests/SubMessage.cs
stonygrey/StonyGrey.ObjectMapper
dc5c59c6ca11028fa3addb6f3d918fc165995e61
[ "MIT" ]
null
null
null
src/StonyGrey.ObjectMapper.Tests/SubMessage.cs
stonygrey/StonyGrey.ObjectMapper
dc5c59c6ca11028fa3addb6f3d918fc165995e61
[ "MIT" ]
null
null
null
namespace Tests { public class SubMessage2 { public string Value { get; set; } } public class SubMessage1 { public string Value { get; set; } public SubMessage2 SubMessage2 { get; set; } } public class SubMessage { public string Value { get; set; } ...
20.461538
64
0.584586
b649a05d6d729ad8ac1216525d27bfe1151808f7
297
cs
C#
Algorithmica/DataStructures/TreeNode.cs
H3xas/Algorithmica
7f4471273946a68f2d18771aa901aa6741f569b0
[ "MIT" ]
null
null
null
Algorithmica/DataStructures/TreeNode.cs
H3xas/Algorithmica
7f4471273946a68f2d18771aa901aa6741f569b0
[ "MIT" ]
null
null
null
Algorithmica/DataStructures/TreeNode.cs
H3xas/Algorithmica
7f4471273946a68f2d18771aa901aa6741f569b0
[ "MIT" ]
1
2018-04-04T18:27:52.000Z
2018-04-04T18:27:52.000Z
using System; using System.Collections.Generic; using System.Text; namespace Algorithmica.DataStructures { public class TreeNode <T> : Node<T> { public TreeNode<T> LeftLeaf { get; set; } public TreeNode<T> RightLeaf { get; set; } public TreeNode(T data) : base(data) { } } }
19.8
44
0.676768
7a470046e75546a5aa73f5b2c5851df90fa49d61
818
cs
C#
src/Stump.DofusProtocol/Messages/Messages/Game/Context/Roleplay/Houses/HouseLockFromInsideRequestMessage.cs
Daymortel/Stump
52ef6d4d565467f117fbd92b2827041d97044180
[ "Apache-2.0" ]
2
2021-11-03T04:33:50.000Z
2022-01-01T00:08:37.000Z
src/Stump.DofusProtocol/Messages/Messages/Game/Context/Roleplay/Houses/HouseLockFromInsideRequestMessage.cs
Daymortel/Stump
52ef6d4d565467f117fbd92b2827041d97044180
[ "Apache-2.0" ]
1
2021-09-11T21:18:14.000Z
2021-09-11T21:18:14.000Z
src/Stump.DofusProtocol/Messages/Messages/Game/Context/Roleplay/Houses/HouseLockFromInsideRequestMessage.cs
Daymortel/Stump
52ef6d4d565467f117fbd92b2827041d97044180
[ "Apache-2.0" ]
2
2021-09-11T08:42:53.000Z
2021-12-23T00:30:48.000Z
namespace Stump.DofusProtocol.Messages { using System; using System.Linq; using System.Text; using Stump.DofusProtocol.Types; using Stump.Core.IO; [Serializable] public class HouseLockFromInsideRequestMessage : LockableChangeCodeMessage { public new const uint Id = 5885; ...
22.108108
78
0.602689
30819cfadbda53f0abd23e1bdfced3b0e0b91db9
953
cs
C#
src/LogModel/Builder/BuildInfo.cs
mrward/project-system-tools
f214836d050190ad6942f086a221d75adcdf46b0
[ "Apache-2.0" ]
null
null
null
src/LogModel/Builder/BuildInfo.cs
mrward/project-system-tools
f214836d050190ad6942f086a221d75adcdf46b0
[ "Apache-2.0" ]
null
null
null
src/LogModel/Builder/BuildInfo.cs
mrward/project-system-tools
f214836d050190ad6942f086a221d75adcdf46b0
[ "Apache-2.0" ]
null
null
null
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using System.Collections.Immutable; namespace Microsoft.VisualStudio.ProjectSystem.LogModel.Builder { internal sealed class BuildInfo : Ba...
34.035714
161
0.663169
30fad047e67609352966494efb3f4329893ab4b9
5,184
cs
C#
src/DynamicData.Tests/Cache/TransformFixtureParallel.cs
Trinitek/DynamicData
9e29660a0e42ffac60438e3fca03e92ad97b6df1
[ "MIT" ]
1
2019-11-08T13:50:28.000Z
2019-11-08T13:50:28.000Z
src/DynamicData.Tests/Cache/TransformFixtureParallel.cs
Trinitek/DynamicData
9e29660a0e42ffac60438e3fca03e92ad97b6df1
[ "MIT" ]
null
null
null
src/DynamicData.Tests/Cache/TransformFixtureParallel.cs
Trinitek/DynamicData
9e29660a0e42ffac60438e3fca03e92ad97b6df1
[ "MIT" ]
null
null
null
using System; using System.Linq; using DynamicData.Tests.Domain; using DynamicData.PLinq; using FluentAssertions; using Xunit; namespace DynamicData.Tests.Cache { public class TransformFixtureParallel : IDisposable { private ISourceCache<Person, string> _source; private ChangeSetAggregator<Per...
36.765957
130
0.582562
2e4a90e225724808b303471a2c8db76cbdf6c69d
12,733
cs
C#
src/System.Windows.Forms/src/System/Windows/Forms/FileDialog_Vista.cs
kevingosse/winforms
d2b5e207ffbc7ce2fcb2f1661dc37df8929eb6a6
[ "MIT" ]
1
2020-07-14T20:35:59.000Z
2020-07-14T20:35:59.000Z
src/System.Windows.Forms/src/System/Windows/Forms/FileDialog_Vista.cs
kevingosse/winforms
d2b5e207ffbc7ce2fcb2f1661dc37df8929eb6a6
[ "MIT" ]
null
null
null
src/System.Windows.Forms/src/System/Windows/Forms/FileDialog_Vista.cs
kevingosse/winforms
d2b5e207ffbc7ce2fcb2f1661dc37df8929eb6a6
[ "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. namespace System.Windows.Forms { using System; using System.ComponentModel; using System.ComponentModel...
37.014535
167
0.550931
2ec796488bd92691a253a53966c0554e361878b9
1,238
cs
C#
unity/RNIntegration/unity/RNIntegration/Assets/Plugins/ReactNative/Source/Editor/Reinforced.Typings/Visitors/TypeScript/TypeScriptExportVisitor.RtConstructor.cs
gogiel/react-native-unity-view
4d8d04e38bd534dfb84183dd564ec09c74321cab
[ "MIT" ]
422
2015-09-14T13:01:51.000Z
2022-03-24T14:38:49.000Z
unity/RNIntegration/unity/RNIntegration/Assets/Plugins/ReactNative/Source/Editor/Reinforced.Typings/Visitors/TypeScript/TypeScriptExportVisitor.RtConstructor.cs
gogiel/react-native-unity-view
4d8d04e38bd534dfb84183dd564ec09c74321cab
[ "MIT" ]
210
2015-12-21T05:22:23.000Z
2022-03-30T21:01:31.000Z
unity/RNIntegration/unity/RNIntegration/Assets/Plugins/ReactNative/Source/Editor/Reinforced.Typings/Visitors/TypeScript/TypeScriptExportVisitor.RtConstructor.cs
gogiel/react-native-unity-view
4d8d04e38bd534dfb84183dd564ec09c74321cab
[ "MIT" ]
84
2015-11-02T04:27:36.000Z
2022-01-17T17:08:06.000Z
using System; using Reinforced.Typings.Ast; #pragma warning disable 1591 namespace Reinforced.Typings.Visitors.TypeScript { partial class TypeScriptExportVisitor { public override void Visit(RtConstructor node) { if (node == null) return; if (Context == WriterContext.Inte...
30.195122
104
0.497577
4c3ea59615c8fb46c59bb4137ec84a5c7c434ac2
438
cs
C#
ConsoleModelToBuilderClassPattern/Repositories/TextFileRepository.cs
Shuvayu/ConsoleModelToBuilderClassPattern
4246e2d71d232ffd3f78e1969eb52472c6106f61
[ "MIT" ]
null
null
null
ConsoleModelToBuilderClassPattern/Repositories/TextFileRepository.cs
Shuvayu/ConsoleModelToBuilderClassPattern
4246e2d71d232ffd3f78e1969eb52472c6106f61
[ "MIT" ]
null
null
null
ConsoleModelToBuilderClassPattern/Repositories/TextFileRepository.cs
Shuvayu/ConsoleModelToBuilderClassPattern
4246e2d71d232ffd3f78e1969eb52472c6106f61
[ "MIT" ]
null
null
null
using System; using System.IO; namespace ConsoleModelToBuilderClassPattern.Repositories { public class TextFileRepository { public static void OutputToTxtFile(string txtString) { using (var file = new StreamWriter("Output.txt")) { file.WriteLine(txtStrin...
24.333333
61
0.573059
185562c495bf34fa512c51fd5161a18d5ff46d40
1,929
cs
C#
src/Gobln.Extensions/Extensions/EnumExtension.cs
HendrickxJorn/Gobln.Extensions
eb3571935a825e8276cd76fe91ec538f6bc9810b
[ "Apache-2.0" ]
null
null
null
src/Gobln.Extensions/Extensions/EnumExtension.cs
HendrickxJorn/Gobln.Extensions
eb3571935a825e8276cd76fe91ec538f6bc9810b
[ "Apache-2.0" ]
null
null
null
src/Gobln.Extensions/Extensions/EnumExtension.cs
HendrickxJorn/Gobln.Extensions
eb3571935a825e8276cd76fe91ec538f6bc9810b
[ "Apache-2.0" ]
null
null
null
using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Gobln.Extensions { /// <summary> /// Additional extensions for Enums /// </summary> public static class EnumExtension { /// <summary> /// Get the description of the System.Enum ...
26.424658
76
0.501814
d81450971f3752cd2df4933b8df7680e34e70168
3,917
cs
C#
src/Editor/Colorer/Pattern/PatternClassifier.cs
ymg2006/vsix-regex-editor-2022
ffded44cdfa6cdd59e76c5f28fc2827274b781ea
[ "Apache-2.0" ]
6
2021-05-10T22:46:02.000Z
2021-12-22T13:45:39.000Z
src/Editor/Colorer/Pattern/PatternClassifier.cs
ymg2006/vsix-regex-editor-2022
ffded44cdfa6cdd59e76c5f28fc2827274b781ea
[ "Apache-2.0" ]
4
2020-12-22T18:52:32.000Z
2021-12-22T07:23:03.000Z
src/Editor/Colorer/Pattern/PatternClassifier.cs
ymg2006/vsix-regex-editor-2022
ffded44cdfa6cdd59e76c5f28fc2827274b781ea
[ "Apache-2.0" ]
3
2021-11-10T09:37:45.000Z
2022-03-30T11:20:01.000Z
using System; using System.Collections.Generic; using Microsoft.VisualStudio.Text; using Microsoft.VisualStudio.Text.Classification; using Losenkov.RegexEditor.Parser.Pattern; namespace Losenkov.RegexEditor.Colorer.Pattern { /// <summary> /// Implements the coloring classification. /// </summary> inter...
48.9625
166
0.668113
3a1b2959e393f721857b7ad82395531232cb7d81
1,814
cs
C#
InvokationMethodTarget.cs
Enhed/CronScheduler
bcf456d6a2f93b5a779595adfeb7f4bf9d3b3004
[ "MIT" ]
null
null
null
InvokationMethodTarget.cs
Enhed/CronScheduler
bcf456d6a2f93b5a779595adfeb7f4bf9d3b3004
[ "MIT" ]
null
null
null
InvokationMethodTarget.cs
Enhed/CronScheduler
bcf456d6a2f93b5a779595adfeb7f4bf9d3b3004
[ "MIT" ]
null
null
null
using System; using System.Reflection; using NCrontab; namespace CronScheduler { public sealed class InvokationMethodTarget { private string cron; private bool enabled; public InvokationMethodTarget(string cron, Type type, MethodInfo info, object instanse = null, bool enabl...
23.868421
83
0.521499
3a733440ded25d9d284b277aa223307918d30bf2
2,726
cs
C#
src/Input/Silk.NET.Input.Common/Interfaces/ICursor.cs
storm32600/Silk.NET
67a50bc9e43d6838e2079e9924390a237e3b5c91
[ "MIT" ]
null
null
null
src/Input/Silk.NET.Input.Common/Interfaces/ICursor.cs
storm32600/Silk.NET
67a50bc9e43d6838e2079e9924390a237e3b5c91
[ "MIT" ]
null
null
null
src/Input/Silk.NET.Input.Common/Interfaces/ICursor.cs
storm32600/Silk.NET
67a50bc9e43d6838e2079e9924390a237e3b5c91
[ "MIT" ]
null
null
null
// This file is part of Silk.NET. // // You may modify and distribute Silk.NET under the terms // of the MIT license. See the LICENSE file for details. using Silk.NET.Core; namespace Silk.NET.Input { /// <summary> /// An interface representing a mouse cursor. /// </summary> public interface ICursor ...
32.452381
107
0.538151
d29187d0bc477532bbfe35057f54dfadeb8ca19b
1,639
cs
C#
NeXt.DependsOnNestedProperty/NestedPropertyChangedRegistration.SubRegistration.cs
dracool/NeXt.DependsOnNestedProperty
7802f3d09216ab9975a1a10c7477929724ea8892
[ "MIT" ]
null
null
null
NeXt.DependsOnNestedProperty/NestedPropertyChangedRegistration.SubRegistration.cs
dracool/NeXt.DependsOnNestedProperty
7802f3d09216ab9975a1a10c7477929724ea8892
[ "MIT" ]
null
null
null
NeXt.DependsOnNestedProperty/NestedPropertyChangedRegistration.SubRegistration.cs
dracool/NeXt.DependsOnNestedProperty
7802f3d09216ab9975a1a10c7477929724ea8892
[ "MIT" ]
null
null
null
using System; using System.ComponentModel; namespace NeXt.DependsOnNestedProperty { public sealed partial class NestedPropertyChangedRegistration { private class SubRegistration : RegistrationBase { public SubRegistration(string name, RegistrationBase next, Func<INotifyPropertyChan...
29.8
131
0.550946
fdae1143e507daabe628f4c075aca241278d52e5
2,167
cs
C#
CodeEmbed.Web.Api/Controllers/GitHub/GistController.cs
aetos382/CodeEmbed
6f99f6098dccb7dc851cff33827f6dbe03cb96cf
[ "MS-PL" ]
null
null
null
CodeEmbed.Web.Api/Controllers/GitHub/GistController.cs
aetos382/CodeEmbed
6f99f6098dccb7dc851cff33827f6dbe03cb96cf
[ "MS-PL" ]
null
null
null
CodeEmbed.Web.Api/Controllers/GitHub/GistController.cs
aetos382/CodeEmbed
6f99f6098dccb7dc851cff33827f6dbe03cb96cf
[ "MS-PL" ]
null
null
null
namespace CodeEmbed.Web.Api.Controllers.GitHub { using System; using System.Diagnostics; using System.Linq; using System.Net; using System.Net.Http; using System.Threading.Tasks; using System.Web.Http; using CodeEmbed.GitHubClient; using CodeEmbed.Web.Http; [Route...
28.893333
101
0.531149
f39f6e1a6a6ada172bf97118c9bedafa743b895e
481
cs
C#
plugins/Ros/Ros/Bag/RosbagSettings.cs
KrasnovPavel/Elektronik-Tools-2.0
d7020c2155e8173e3944c481367e28a9bd1733d9
[ "MIT" ]
1
2021-02-15T15:25:37.000Z
2021-02-15T15:25:37.000Z
plugins/Ros/Ros/Bag/RosbagSettings.cs
KrasnovPavel/Elektronik-Tools-2.0
d7020c2155e8173e3944c481367e28a9bd1733d9
[ "MIT" ]
null
null
null
plugins/Ros/Ros/Bag/RosbagSettings.cs
KrasnovPavel/Elektronik-Tools-2.0
d7020c2155e8173e3944c481367e28a9bd1733d9
[ "MIT" ]
null
null
null
using System.IO; using Elektronik.Settings; using Elektronik.Settings.Bags; using UnityEngine; namespace Elektronik.RosPlugin.Ros.Bag { public class RosbagSettings : SettingsBag { [CheckForEquals, Path(PathAttribute.PathTypes.File, new []{".bag"}), Tooltip("Path to file")] public string FilePa...
24.05
101
0.632017
dafc2f386506f1814bdf74323c2626c397f0ef0c
743
cs
C#
3DBallGame/Assets/Scripts/Win.cs
rambo5x/Unity-Tutorial-Game
221b6ee6ebcf0728ef497e747d5eb80cecc39599
[ "Apache-2.0" ]
null
null
null
3DBallGame/Assets/Scripts/Win.cs
rambo5x/Unity-Tutorial-Game
221b6ee6ebcf0728ef497e747d5eb80cecc39599
[ "Apache-2.0" ]
null
null
null
3DBallGame/Assets/Scripts/Win.cs
rambo5x/Unity-Tutorial-Game
221b6ee6ebcf0728ef497e747d5eb80cecc39599
[ "Apache-2.0" ]
null
null
null
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; using UnityEngine.UI; public class Win : MonoBehaviour { public Text wintxt; public GameObject player; // Start is called before the first frame update void Start() { } ...
19.051282
71
0.615074
aa1d6ed4f1f440b3ca65755021db2c741de05430
513
cs
C#
tracer/src/Datadog.Trace.Tools.Runner/CIName.cs
jasoncouture/dd-trace-dotnet
62f5a3e6cf85296d65d3994093980afeb69f579b
[ "Apache-2.0" ]
13
2018-09-15T07:51:10.000Z
2018-11-18T13:48:22.000Z
tracer/src/Datadog.Trace.Tools.Runner/CIName.cs
jasoncouture/dd-trace-dotnet
62f5a3e6cf85296d65d3994093980afeb69f579b
[ "Apache-2.0" ]
38
2018-08-17T16:12:02.000Z
2018-11-19T23:30:25.000Z
tracer/src/Datadog.Trace.Tools.Runner/CIName.cs
jasoncouture/dd-trace-dotnet
62f5a3e6cf85296d65d3994093980afeb69f579b
[ "Apache-2.0" ]
7
2018-09-11T13:04:27.000Z
2018-11-13T17:18:14.000Z
// <copyright file="CIName.cs" company="Datadog"> // Unless explicitly stated otherwise all files in this repository are licensed under the Apache 2 License. // This product includes software developed at Datadog (https://www.datadoghq.com/). Copyright 2017 Datadog, Inc. // </copyright> namespace Datadog.Trace.Tools.R...
23.318182
113
0.711501
3f02339ec04d8a7c04b74bf94c64c5f854eff82f
1,023
cs
C#
src/Masuit.MyBlogs.Core/Common/TrackData.cs
xingx001/Masuit.MyBlogs
e61292257b7c1f928ff38a6dde153b180129396e
[ "MIT" ]
3
2021-02-26T08:26:14.000Z
2021-04-19T12:01:25.000Z
src/Masuit.MyBlogs.Core/Common/TrackData.cs
tefuirZ/Masuit.MyBlogs
ceecf6ea389478233b637cb9b312ed68b9cf33e3
[ "MIT" ]
null
null
null
src/Masuit.MyBlogs.Core/Common/TrackData.cs
tefuirZ/Masuit.MyBlogs
ceecf6ea389478233b637cb9b312ed68b9cf33e3
[ "MIT" ]
null
null
null
using System; using System.Collections.Concurrent; using System.IO; using System.Linq; using System.Text; namespace Masuit.MyBlogs.Core.Common { public class TrackData { /// <summary> /// 请求日志 /// </summary> public static ConcurrentDictionary<string, int> RequestLogs { get; } =...
31.96875
155
0.568915
1b91a8fd33dbab17d279efb510056bcc6be68dc4
2,844
cs
C#
CP77.CR2W/Types/cp77/PerksMainGameController.cs
MasterScott/CP77Tools
c0c397ea57217451364c75acefc288ce93559296
[ "MIT" ]
1
2021-01-27T18:03:13.000Z
2021-01-27T18:03:13.000Z
CP77.CR2W/Types/cp77/PerksMainGameController.cs
MasterScott/CP77Tools
c0c397ea57217451364c75acefc288ce93559296
[ "MIT" ]
null
null
null
CP77.CR2W/Types/cp77/PerksMainGameController.cs
MasterScott/CP77Tools
c0c397ea57217451364c75acefc288ce93559296
[ "MIT" ]
null
null
null
using System.IO; using CP77.CR2W.Reflection; using FastMember; using static CP77.CR2W.Types.Enums; namespace CP77.CR2W.Types { [REDMeta] public class PerksMainGameController : gameuiMenuGameController { [Ordinal(0)] [RED("activeScreen")] public CEnum<CharacterScreenType> ActiveScreen { get; set; } [...
76.864865
149
0.751055
d652e8b309c47cf09ac395a87f508c2fe3999d9a
224,879
cs
C#
Examples/CodeResource.Designer.cs
GrapeCity/Spread.Services-for-.NET
a9bfccf052edd2a6b4bf41d63ce0eed8036114bf
[ "ADSL" ]
1
2021-04-13T17:13:11.000Z
2021-04-13T17:13:11.000Z
Examples/CodeResource.Designer.cs
GrapeCity/Spread.Services-for-.NET
a9bfccf052edd2a6b4bf41d63ce0eed8036114bf
[ "ADSL" ]
null
null
null
Examples/CodeResource.Designer.cs
GrapeCity/Spread.Services-for-.NET
a9bfccf052edd2a6b4bf41d63ce0eed8036114bf
[ "ADSL" ]
null
null
null
//------------------------------------------------------------------------------ // <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-generate...
58.822652
249
0.545956
6e330bbac71206e2b335e79faca74aa2c4632acb
4,427
cs
C#
ConvUtils.cs
blockchainhelppro/Blockchain-Mediscience
74e6870af886ed4174dc05ade0516121a251e844
[ "MIT" ]
1
2021-08-06T14:27:18.000Z
2021-08-06T14:27:18.000Z
ConvUtils.cs
blockchainhelppro/Blockchain-Mediscience
74e6870af886ed4174dc05ade0516121a251e844
[ "MIT" ]
null
null
null
ConvUtils.cs
blockchainhelppro/Blockchain-Mediscience
74e6870af886ed4174dc05ade0516121a251e844
[ "MIT" ]
1
2020-03-24T02:41:25.000Z
2020-03-24T02:41:25.000Z
using System; using System.Collections.Generic; using System.Text; namespace csmon.Models { public static class ConvUtils { public static bool AllowNegativeTime; public static DateTime UnixTimeStampToDateTime(double unixTimeStamp) { var dtDateTime = new DateTime(1970, 1, 1...
30.321918
84
0.461938
7c9506850bacce9a93bba99be08e4963dfeb86f1
22,821
cs
C#
TessellationAndVoxelizationGeometryLibrary/TessellatedSolid/Enclosure Operations/MinimumCircleCylinder.cs
DesignEngrLab/TVGL
7fd9632350fa63ce53a0e42d66c4201f5a409d7b
[ "MIT" ]
45
2015-10-24T16:06:58.000Z
2022-02-10T13:52:45.000Z
TessellationAndVoxelizationGeometryLibrary/TessellatedSolid/Enclosure Operations/MinimumCircleCylinder.cs
DesignEngrLab/TVGL
7fd9632350fa63ce53a0e42d66c4201f5a409d7b
[ "MIT" ]
9
2016-07-21T18:21:52.000Z
2021-01-04T16:09:34.000Z
TessellationAndVoxelizationGeometryLibrary/TessellatedSolid/Enclosure Operations/MinimumCircleCylinder.cs
DesignEngrLab/TVGL
7fd9632350fa63ce53a0e42d66c4201f5a409d7b
[ "MIT" ]
18
2015-06-26T10:25:10.000Z
2022-03-08T12:37:30.000Z
// Copyright 2015-2020 Design Engineering Lab // This file is a part of TVGL, Tessellation and Voxelization Geometry Library // https://github.com/DesignEngrLab/TVGL // It is licensed under MIT License (see LICENSE.txt for details) using MIConvexHull; using System; using System.Collections.Generic; using System.Diagno...
47.842767
159
0.56023
6b360d1af496c6c0921f6a11793305dba773849e
8,198
cs
C#
src/Comformation.Tests/CreateStackTest.cs
stanb/Comformation
0a7d3bbdf035fa06885202493a7427bf96d72baa
[ "MIT" ]
17
2018-05-27T07:34:39.000Z
2021-11-25T10:30:34.000Z
src/Comformation.Tests/CreateStackTest.cs
stanb/Comformation
0a7d3bbdf035fa06885202493a7427bf96d72baa
[ "MIT" ]
2
2019-01-16T14:19:20.000Z
2019-12-11T23:42:44.000Z
src/Comformation.Tests/CreateStackTest.cs
stanb/Comformation
0a7d3bbdf035fa06885202493a7427bf96d72baa
[ "MIT" ]
3
2018-05-28T08:30:25.000Z
2021-03-14T23:37:18.000Z
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Amazon; using Amazon.CloudFormation; using Amazon.CloudFormation.Model; using Amazon.S3; using Amazon.S3.Model; using Comformation.IntrinsicFunctions; using Comformation.S3.Bucket; using Xunit; namespace Comformatio...
38.130233
134
0.422054
614031aea78cec51b46eb98aa8f1c5c3c4417ae6
4,269
cs
C#
HedgeModManager/src/UpdateForm.cs
WamWooWam/HedgeModManager
5da485bcd2aa4e62865f1bfef4f962d06932d7b7
[ "MIT" ]
1
2020-02-18T22:30:19.000Z
2020-02-18T22:30:19.000Z
HedgeModManager/src/UpdateForm.cs
WamWooWam/HedgeModManager
5da485bcd2aa4e62865f1bfef4f962d06932d7b7
[ "MIT" ]
null
null
null
HedgeModManager/src/UpdateForm.cs
WamWooWam/HedgeModManager
5da485bcd2aa4e62865f1bfef4f962d06932d7b7
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.IO; using System.IO.Compression; using System.Linq; using System.Net; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Window...
40.273585
145
0.534083
f711e4e4addbb111d74070c8327bb33c62076d0b
327
cs
C#
Env/Assets/RoboGymEnvironment/TrainEnv/Scripts/Holders.cs
AIX2/RoboGym
c7b4b076f0b3859ea71df6ef5b4ba1b50f294d79
[ "MIT" ]
2
2019-10-13T01:55:56.000Z
2019-11-01T22:34:50.000Z
Env/Assets/RoboGymEnvironment/TrainEnv/Scripts/Holders.cs
ahassanzadeh/RoboGym
c7b4b076f0b3859ea71df6ef5b4ba1b50f294d79
[ "MIT" ]
6
2019-10-27T18:11:32.000Z
2022-02-10T00:31:04.000Z
Env/Assets/RoboGymEnvironment/TrainEnv/Scripts/Holders.cs
AIX2/RoboGym
c7b4b076f0b3859ea71df6ef5b4ba1b50f294d79
[ "MIT" ]
3
2019-11-18T05:27:31.000Z
2020-09-10T06:35:47.000Z
using UnityEngine; namespace Holders { class PositionRotation { public Vector3 Position { get; set; } public Vector3 Rotation { get; set; } public PositionRotation(Vector3 position, Vector3 rotation) { Position = position; Rotation = rotation; } ...
20.4375
67
0.584098
f71e408c4bcb4526d82a11833e545c7fbd43d432
371
cs
C#
PlugSharp/Data/Score.cs
Levi--G/PlugSharp
5055cd2ed9134f33d8f728fa98280692c4f7153f
[ "MIT" ]
null
null
null
PlugSharp/Data/Score.cs
Levi--G/PlugSharp
5055cd2ed9134f33d8f728fa98280692c4f7153f
[ "MIT" ]
null
null
null
PlugSharp/Data/Score.cs
Levi--G/PlugSharp
5055cd2ed9134f33d8f728fa98280692c4f7153f
[ "MIT" ]
null
null
null
namespace PlugSharp.Data { public struct Score { public int grabs; // Amount of grabs public int listeners; // Amount of listeners public int negative; // Amount of mehs public int positive; // Amount of woots public int skipped; // ...
33.727273
82
0.571429
16b1f688b9c0c2c88e947b9cb6743e707f778a4b
3,759
cshtml
C#
www/JN.Web/obj/Release/Package/PackageTmp/Areas/UserCenter/Views/Finance/BonusTotal.cshtml
fisherLB/NX1222
6c47a72facc06daeb6b2ffe762656cacc6169e0d
[ "MIT" ]
1
2019-07-09T10:04:08.000Z
2019-07-09T10:04:08.000Z
www/JN.Web/obj/Release/Package/PackageTmp/Areas/UserCenter/Views/Finance/BonusTotal.cshtml
fisherLB/NX1222
6c47a72facc06daeb6b2ffe762656cacc6169e0d
[ "MIT" ]
null
null
null
www/JN.Web/obj/Release/Package/PackageTmp/Areas/UserCenter/Views/Finance/BonusTotal.cshtml
fisherLB/NX1222
6c47a72facc06daeb6b2ffe762656cacc6169e0d
[ "MIT" ]
null
null
null
@using Webdiyer.WebControls.Mvc @using System.Data @model PagedList<System.Data.DataRow> @{ Layout = "~/Areas/UserCenter/Views/Shared/_Layout" + JN.Services.Tool.ConfigHelper.GetConfigString("Theme") + ".cshtml"; } <!-- PAGE CONTENT BEGINS --> <div class="row"> <div class="col-xs-12"> <...
46.9875
200
0.26523
16d74f47d9f363efa1c57fbdad427772fd1b4316
7,263
cs
C#
EBNF.Compiler/Program.cs
furesoft/Ebnf.Compiler
7e059da7f851ce4950bbf2d24760475e489c3bd7
[ "MIT" ]
1
2018-11-13T10:07:20.000Z
2018-11-13T10:07:20.000Z
EBNF.Compiler/Program.cs
furesoft/Ebnf.Compiler
7e059da7f851ce4950bbf2d24760475e489c3bd7
[ "MIT" ]
8
2018-11-13T10:29:11.000Z
2021-03-17T11:16:26.000Z
EBNF.Compiler/Program.cs
furesoft/Ebnf.Compiler
7e059da7f851ce4950bbf2d24760475e489c3bd7
[ "MIT" ]
1
2018-11-13T10:07:30.000Z
2018-11-13T10:07:30.000Z
using System; using System.CodeDom.Compiler; using System.IO; namespace Ebnf.Compiler { internal class Program { /// <summary> /// The entry point for the program. /// </summary> /// <param name="args">The command line arguments supplied.</param> private static void Mai...
38.026178
105
0.485612
7381b47e1574159622fda46dbde2f3b6c611d854
1,118
cs
C#
app/Pomona/Documentation/Xml/Serialization/XDocContentNode.cs
Pomona/Pomona
69adb72ec8c9673436f88accb877cd614a3037c6
[ "MIT" ]
17
2016-04-02T19:46:38.000Z
2021-08-03T04:10:40.000Z
app/Pomona/Documentation/Xml/Serialization/XDocContentNode.cs
Pomona/Pomona
69adb72ec8c9673436f88accb877cd614a3037c6
[ "MIT" ]
64
2016-04-18T08:03:32.000Z
2017-10-19T07:48:39.000Z
app/Pomona/Documentation/Xml/Serialization/XDocContentNode.cs
Pomona/Pomona
69adb72ec8c9673436f88accb877cd614a3037c6
[ "MIT" ]
4
2016-04-18T08:02:36.000Z
2020-04-20T20:37:11.000Z
#region License // Pomona is open source software released under the terms of the LICENSE specified in the // project's repository, or alternatively at http://pomona.io/ #endregion using System; using System.Xml.Linq; namespace Pomona.Documentation.Xml.Serialization { public abstract class XDocConte...
27.95
91
0.517889
e5f2ff52f36209b9ddfe07506a199b76741a5980
25,136
cs
C#
Samples/SimpleImaging/cs/Scenario1.xaml.cs
dujianxin/Windows-universal-samples
d4e95ff0ac408c5d4d980bb18d53fb2c6556a273
[ "MIT" ]
2,504
2019-05-07T06:56:42.000Z
2022-03-31T19:37:59.000Z
Samples/SimpleImaging/cs/Scenario1.xaml.cs
dujianxin/Windows-universal-samples
d4e95ff0ac408c5d4d980bb18d53fb2c6556a273
[ "MIT" ]
314
2019-05-08T16:56:30.000Z
2022-03-21T07:13:45.000Z
Samples/SimpleImaging/cs/Scenario1.xaml.cs
dujianxin/Windows-universal-samples
d4e95ff0ac408c5d4d980bb18d53fb2c6556a273
[ "MIT" ]
2,219
2019-05-07T00:47:26.000Z
2022-03-30T21:12:31.000Z
//********************************************************* // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the MIT License (MIT). // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A P...
45.701818
128
0.568865
dd63dc6b86473c87a02e066686991c2ecd1f97d1
527
cs
C#
Ed-Fi.Credential.Business/Models/ApiKeyErrorCountAndDate.cs
Ed-Fi-Exchange-OSS/Credential-Manager
3190aca9cf2581e13ae945ea55b9e8d7027cd219
[ "Apache-2.0" ]
1
2020-12-08T19:14:29.000Z
2020-12-08T19:14:29.000Z
Ed-Fi.Credential.Business/Models/ApiKeyErrorCountAndDate.cs
Ed-Fi-Exchange-OSS/Credential-Manager
3190aca9cf2581e13ae945ea55b9e8d7027cd219
[ "Apache-2.0" ]
null
null
null
Ed-Fi.Credential.Business/Models/ApiKeyErrorCountAndDate.cs
Ed-Fi-Exchange-OSS/Credential-Manager
3190aca9cf2581e13ae945ea55b9e8d7027cd219
[ "Apache-2.0" ]
null
null
null
using System; namespace Ed_Fi.Credential.Business.Models { public class ApiKeyErrorCountAndDate { public int ApiClientId { get; set; } public short SchoolYear { get; set; } public string ApiKey { get; set; } public int L1RuleId { get; set; } public string AggregateName...
26.35
50
0.605313
c2aaffdd0799f41b8bce8cbe86ef1cac03fb0820
7,673
cs
C#
identity-server/Startup.cs
rosered11/identity-server-heroku
8db9d6882cb4e0f5683b6452ed3f498b80e19de0
[ "MIT" ]
null
null
null
identity-server/Startup.cs
rosered11/identity-server-heroku
8db9d6882cb4e0f5683b6452ed3f498b80e19de0
[ "MIT" ]
null
null
null
identity-server/Startup.cs
rosered11/identity-server-heroku
8db9d6882cb4e0f5683b6452ed3f498b80e19de0
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Net.Http; using System.Net.Http.Headers; using System.Reflection; using System.Security.Claims; using System.Security.Cryptography.X509Certificates; using System.Text.Json; using IdentityModel; using IdentityServer.Database; using IdentityServer4; ...
45.402367
163
0.596116
6c0725f7a9f6f6d6b84f1f036717add341a622f1
38,365
cs
C#
Services/Cats.Services.Hub/DispatchAllocationService.cs
nathnael/cats
964104a561ee5bdfeaf80e713ef98dc718b6856f
[ "Apache-2.0" ]
84
2017-10-25T15:49:21.000Z
2021-11-28T21:25:54.000Z
data/test/csharp/6c0725f7a9f6f6d6b84f1f036717add341a622f1DispatchAllocationService.cs
vassalos/deep-learning-lang-detection
cbb00b3e81bed3a64553f9c6aa6138b2511e544e
[ "MIT" ]
5
2018-03-29T11:50:46.000Z
2021-04-26T13:33:18.000Z
data/test/csharp/6c0725f7a9f6f6d6b84f1f036717add341a622f1DispatchAllocationService.cs
vassalos/deep-learning-lang-detection
cbb00b3e81bed3a64553f9c6aa6138b2511e544e
[ "MIT" ]
24
2017-11-22T08:31:00.000Z
2022-03-27T01:22:31.000Z
 using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using Cats.Data.Hub.UnitWork; using Cats.Data.Hub.UnitWork; using Cats.Models.Hubs; using Cats.Models.Hubs.ViewModels; using Cats.Models.Hubs.ViewModels.Common; using Cats.Models.Hubs.ViewModels.Dispatch; namespace Ca...
44.766628
152
0.544846
0927a31dfd1a485312e7144928fbc23d2d334c97
694
cs
C#
Programing C#/C # Part I/06. Loops/12. Decimal-To-Binary/DecimalToBinary.cs
dushka-dragoeva/TelerikSeson2016
ecddeea2e02755f2096d580de653aa10ceb72bcd
[ "MIT" ]
5
2016-04-14T20:24:43.000Z
2017-01-17T07:37:19.000Z
Programing C#/C # Part I/06. Loops/12. Decimal-To-Binary/DecimalToBinary.cs
dushka-dragoeva/TelerikSeson2016
ecddeea2e02755f2096d580de653aa10ceb72bcd
[ "MIT" ]
null
null
null
Programing C#/C # Part I/06. Loops/12. Decimal-To-Binary/DecimalToBinary.cs
dushka-dragoeva/TelerikSeson2016
ecddeea2e02755f2096d580de653aa10ceb72bcd
[ "MIT" ]
18
2016-04-15T18:18:39.000Z
2020-03-04T17:57:51.000Z
/*Using loops write a program that converts an integer number to its binary representation. The input is entered as long. The output should be a variable of type string. Do not use the built-in .NET functionality.*/ using System; using System.Text; public class DecimalToBinary { public static void Main() { ...
28.916667
92
0.661383
095e56ab71f7fefa2e743b8ebf39011af2219964
1,568
cs
C#
MeasureDeflection/MarkerScannerTest/Utils/TestImageHelper.cs
Gustice/DeflectionMeasure
fd8d476eead3ee0bf87f7f981eefcc01df8db434
[ "MIT" ]
null
null
null
MeasureDeflection/MarkerScannerTest/Utils/TestImageHelper.cs
Gustice/DeflectionMeasure
fd8d476eead3ee0bf87f7f981eefcc01df8db434
[ "MIT" ]
null
null
null
MeasureDeflection/MarkerScannerTest/Utils/TestImageHelper.cs
Gustice/DeflectionMeasure
fd8d476eead3ee0bf87f7f981eefcc01df8db434
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media.Imaging; namespace MarkerScannerTest.Utils { class TestImageHelper { static string Path2Exe; static string Path2Proj; s...
26.576271
97
0.597577
f56c073552537d0ffe5eb6d58859c7a3c6c3660f
3,175
cs
C#
population/CsvReader.cs
guthb/sharpnado
e28f2e09e50d21266d96b6eae417d7dc761be498
[ "MIT" ]
null
null
null
population/CsvReader.cs
guthb/sharpnado
e28f2e09e50d21266d96b6eae417d7dc761be498
[ "MIT" ]
null
null
null
population/CsvReader.cs
guthb/sharpnado
e28f2e09e50d21266d96b6eae417d7dc761be498
[ "MIT" ]
null
null
null
using System; namespace population { public class CsvReader { private string _csvFilePath; public CsvReader (string csvFilePath) { this._csvFilePath = csvFilePath; } public Dictionary<string, Country> ReadAllCountries() { var countries = ...
29.12844
88
0.447559
f5a97b910737dc4643e35dd05eb2cff7ac8ba729
1,417
cs
C#
src/KorDevAus.Orm/Configurations/BaseEntityConfiguration.cs
TeamKDA/KorDevAus-Database
c4663a2895f69498f9c8415d4bbd05c1c90f6bd4
[ "MIT" ]
null
null
null
src/KorDevAus.Orm/Configurations/BaseEntityConfiguration.cs
TeamKDA/KorDevAus-Database
c4663a2895f69498f9c8415d4bbd05c1c90f6bd4
[ "MIT" ]
null
null
null
src/KorDevAus.Orm/Configurations/BaseEntityConfiguration.cs
TeamKDA/KorDevAus-Database
c4663a2895f69498f9c8415d4bbd05c1c90f6bd4
[ "MIT" ]
null
null
null
using KorDevAus.Entities; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace KorDevAus.Orm.Configurations { /// <summary> /// This represents the configuration entity for <see cref="TEntity"/>. This MUST be inherited. /// </summary> /// <typeparam na...
39.361111
123
0.642202
eb54402525326e0a1b5a6d6696ed8d84c5e1b175
585
cs
C#
src/RumahScarlett/RumahScarlett.Domain/Models/Laporan/LabaRugiModel.cs
izhal27/rumah_scarlett
6cc9643dae4c6c26f9f812b39cb3bbf51eeaaca8
[ "MIT" ]
1
2021-08-16T23:48:29.000Z
2021-08-16T23:48:29.000Z
src/RumahScarlett/RumahScarlett.Domain/Models/Laporan/LabaRugiModel.cs
izhal27/rumah_scarlett
6cc9643dae4c6c26f9f812b39cb3bbf51eeaaca8
[ "MIT" ]
null
null
null
src/RumahScarlett/RumahScarlett.Domain/Models/Laporan/LabaRugiModel.cs
izhal27/rumah_scarlett
6cc9643dae4c6c26f9f812b39cb3bbf51eeaaca8
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RumahScarlett.Domain.Models.Laporan { public class LabaRugiModel : ILabaRugiModel { public decimal total_penjualan { get; set; } public decimal total_hpp { get; set; } ...
29.25
57
0.709402
68cfda0af7ef44cbb1e236c7a719e8487a841692
296
cs
C#
EntityRelations/P01_StudentSystem/DataValidation.cs
villdimova/SoftUni-EntityFramework
26d65475f3c77f2c5e9bf00454006b3865d0967b
[ "MIT" ]
null
null
null
EntityRelations/P01_StudentSystem/DataValidation.cs
villdimova/SoftUni-EntityFramework
26d65475f3c77f2c5e9bf00454006b3865d0967b
[ "MIT" ]
null
null
null
EntityRelations/P01_StudentSystem/DataValidation.cs
villdimova/SoftUni-EntityFramework
26d65475f3c77f2c5e9bf00454006b3865d0967b
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Text; namespace P01_StudentSystem { public class DataValidation { public const int CourseName = 80; public const int ResourceName = 50; public const int StudentName = 100; } }
16.444444
44
0.635135
28088c01ae39fc64a06a8fa2d2be6051730a9cc7
1,178
cs
C#
bin/projects/dbatools/dbatools/Utility/SizeStyle.cs
NReilingh/dbatools
df8cb1f8451cebffa9c0d5a3d3e635a678637bf1
[ "MIT" ]
3
2020-05-20T18:34:08.000Z
2021-06-29T04:13:58.000Z
bin/projects/dbatools/dbatools/Utility/SizeStyle.cs
NReilingh/dbatools
df8cb1f8451cebffa9c0d5a3d3e635a678637bf1
[ "MIT" ]
3
2019-04-23T17:39:17.000Z
2019-06-19T17:04:09.000Z
bin/projects/dbatools/dbatools/Utility/SizeStyle.cs
NReilingh/dbatools
df8cb1f8451cebffa9c0d5a3d3e635a678637bf1
[ "MIT" ]
2
2020-05-20T18:34:10.000Z
2020-07-14T07:01:20.000Z
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sqlcollaborative.Dbatools.Utility { /// <summary> /// How size objects should be displayed /// </summary> public enum SizeStyle { /// <summary> /// The size...
23.56
76
0.533107
28751260f72f32e0093cc6fc12713a4486d17df2
4,105
cs
C#
AlgoTraining/AlgoTraining/Codeforces/CFMarathon/OnlineExamRound1.cs
dzholmukhanov/CFTraining
fefb44f4d4bea83d7966ffcc92c62c0d8427a952
[ "MIT" ]
null
null
null
AlgoTraining/AlgoTraining/Codeforces/CFMarathon/OnlineExamRound1.cs
dzholmukhanov/CFTraining
fefb44f4d4bea83d7966ffcc92c62c0d8427a952
[ "MIT" ]
null
null
null
AlgoTraining/AlgoTraining/Codeforces/CFMarathon/OnlineExamRound1.cs
dzholmukhanov/CFTraining
fefb44f4d4bea83d7966ffcc92c62c0d8427a952
[ "MIT" ]
null
null
null
using CFTraining.Helpers; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AlgoTraining.Codeforces.CFMarathon { class OnlineExamRound1 { private static Random random = new Random(); private static cha...
34.208333
108
0.369549
28a43258ba53b75450d5be7013fae1d8fb8bb748
2,813
cs
C#
src/Sphere10.Framework.Windows.Forms/Controls/Buttons/PadLockButton.cs
Sphere10/Framework
5f6d9ed67dd6ec3b938d9d24223aa92ca21d9e2e
[ "MIT" ]
1
2020-05-22T00:02:56.000Z
2020-05-22T00:02:56.000Z
src/Sphere10.Framework.Windows.Forms/Controls/Buttons/PadLockButton.cs
Sphere10/Framework
5f6d9ed67dd6ec3b938d9d24223aa92ca21d9e2e
[ "MIT" ]
null
null
null
src/Sphere10.Framework.Windows.Forms/Controls/Buttons/PadLockButton.cs
Sphere10/Framework
5f6d9ed67dd6ec3b938d9d24223aa92ca21d9e2e
[ "MIT" ]
1
2020-12-22T02:37:51.000Z
2020-12-22T02:37:51.000Z
//----------------------------------------------------------------------- // <copyright file="PadLockButton.cs" company="Sphere 10 Software"> // // Copyright (c) Sphere 10 Software. All rights reserved. (http://www.sphere10.com) // // Distributed under the MIT software license, see the accompanying file // LICENSE or v...
24.675439
83
0.665126
5dd92d670d247104387d95fd14c8c2c807a8671b
3,058
cs
C#
Homework3/Program1/Program.cs
BrangPakdring/CSharpHomework
dd8389406e58ef1bb2ea14ae262a7aed8ac6d5af
[ "Apache-2.0" ]
null
null
null
Homework3/Program1/Program.cs
BrangPakdring/CSharpHomework
dd8389406e58ef1bb2ea14ae262a7aed8ac6d5af
[ "Apache-2.0" ]
null
null
null
Homework3/Program1/Program.cs
BrangPakdring/CSharpHomework
dd8389406e58ef1bb2ea14ae262a7aed8ac6d5af
[ "Apache-2.0" ]
null
null
null
using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.Design; using System.Drawing; using System.Numerics; namespace Program1 { public class RandomGenerator { private static Random random; public static double Get() { if (random == null) random = new Random(); return ra...
19.1125
67
0.61707
dee9f8aee56ce75d32a23a5a87090e306baaedde
205
cs
C#
Working with Abstraction - Lab/HotelReservation/DiscountType.cs
drapperr/CSharp-OOP
21de9e9db6bef0bb21b8968e14014cab5c6f6735
[ "MIT" ]
1
2019-11-16T13:10:30.000Z
2019-11-16T13:10:30.000Z
Working with Abstraction - Lab/HotelReservation/DiscountType.cs
drapperr/CSharp-OOP
21de9e9db6bef0bb21b8968e14014cab5c6f6735
[ "MIT" ]
null
null
null
Working with Abstraction - Lab/HotelReservation/DiscountType.cs
drapperr/CSharp-OOP
21de9e9db6bef0bb21b8968e14014cab5c6f6735
[ "MIT" ]
null
null
null
using System; using System.Collections.Generic; using System.Text; namespace HotelReservation { public enum DiscountType { VIP=20/100, SecondTime= 10/100, None=0, } }
14.642857
33
0.634146
04e99e1c7d17bbe901a00909b0fe43562b0c8b91
9,218
cs
C#
src/Bicep.Core.IntegrationTests/ScenarioTests.cs
Saglodha/bicep
5c772ef96fefb9dc3e3d90c7e0fa05ec7eda4382
[ "MIT" ]
null
null
null
src/Bicep.Core.IntegrationTests/ScenarioTests.cs
Saglodha/bicep
5c772ef96fefb9dc3e3d90c7e0fa05ec7eda4382
[ "MIT" ]
1
2021-02-23T23:05:29.000Z
2021-02-23T23:05:29.000Z
src/Bicep.Core.IntegrationTests/ScenarioTests.cs
Saglodha/bicep
5c772ef96fefb9dc3e3d90c7e0fa05ec7eda4382
[ "MIT" ]
null
null
null
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Collections.Generic; using Bicep.Core.Diagnostics; using Bicep.Core.UnitTests.Assertions; using Microsoft.VisualStudio.TestTools.UnitTesting; using FluentAssertions; using System; using Bicep.Core.UnitTests.Utils; using Newtonsoft.J...
28.5387
258
0.622586
a540a1e20237824f102a61fbb286aafd6766799f
14,571
cs
C#
IFC Geometry/SolidModelMaker.cs
SemiMegami/ExpressFileReader
b96336b33b506648cc5ff5ce1b2410ad79a36148
[ "MIT" ]
null
null
null
IFC Geometry/SolidModelMaker.cs
SemiMegami/ExpressFileReader
b96336b33b506648cc5ff5ce1b2410ad79a36148
[ "MIT" ]
null
null
null
IFC Geometry/SolidModelMaker.cs
SemiMegami/ExpressFileReader
b96336b33b506648cc5ff5ce1b2410ad79a36148
[ "MIT" ]
null
null
null
using IFC_Geometry.IFCGeoReader; using IFC4; using System; using System.Collections.Generic; using System.Linq; using System.Numerics; using System.Text; using System.Threading.Tasks; using ThreeDMaker.Geometry; using ThreeDMaker.Geometry.Dimension2; namespace IFC_Geometry { public class SolidModelMaker { ...
38.547619
146
0.562075