max_stars_repo_path stringlengths 3 255 | max_stars_repo_name stringlengths 5 116 | max_stars_count int64 0 107k | id stringlengths 1 7 | content stringlengths 63 1.05M |
|---|---|---|---|---|
ProntuarioUnico.Business/Entities/Prontuario.cs | dev-lucasbatista/ProntuarioUnico | 0 | 7035186 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProntuarioUnico.Business.Entities
{
public class Prontuario
{
public Int32 NumeroAtendimento { get; set; }
public Int32 CodigoPessoaFisica { get; set; }
public ... |
ADSD/Crypto/CanonicalXmlComment.cs | i-e-b/ADSD | 0 | 7035187 | using System.Security.Cryptography;
using System.Text;
using System.Xml;
namespace ADSD.Crypto
{
internal class CanonicalXmlComment : XmlComment, ICanonicalizableNode
{
public CanonicalXmlComment(
string comment,
XmlDocument doc,
bool defaultNodeSetInclus... |
Chapter24/NoteTaker/NoteTaker/NoteTaker/NoteFolder.cs | Tonymmm/xamarin-forms-book-preview-2 | 250 | 7035188 | using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using PlatformHelpers;
namespace NoteTaker
{
public class NoteFolder
{
public NoteFolder()
{
this.Notes = new ObservableCollection<Note>();
GetFilesAsync();
... |
src/HandiworkShop.Web/Views/Orders/Outgoing.cshtml | teachmeskills-dotnet/TMS-DotNet03-Yermolayeva | 0 | 7035189 | @using HandiworkShop.Common.Resourses
@using HandiworkShop.Common.Enums
@using HandiworkShop.Common.Constants
@model List<HandiworkShop.Web.ViewModels.OrderViewModel>
@{ ViewData["Title"] = string.Format(PageTitleResource.StringFormat, PageTitleResource.SiteName, PageTitleResource.OutgoingOrders); }
<form method="ge... |
src/BFSettings/BFSettings/FBSetting.cs | Olga-Sh1/jsm-ars | 0 | 7035190 | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace BFSettings
{
/// <summary>Настройки БФ</summary>
public class FBSetting
{
public GeneralSettings Settings { get; set; }
/// <summary>Массив настроек по признакам</sum... |
src/Sitko.Core.Queue.InMemory/ChannelExtensions.cs | IgorAlymov/Sitko.Core | 41 | 7035191 | using System.Collections.Generic;
using System.Runtime.CompilerServices;
using System.Threading;
using System.Threading.Channels;
namespace Sitko.Core.Queue.InMemory
{
public static class ChannelExtensions
{
public static async IAsyncEnumerable<T> ReadAllAsync<T>(this ChannelReader<T> reader,
... |
JexusManager.Features.Handlers/HandlersFeature.cs | microbian-systems/JexusManager | 222 | 7035192 | // Copyright (c) <NAME>. All rights reserved.
//
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
/*
* Created by SharpDevelop.
* User: lextm
* Time: 11:06 AM
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace Je... |
Src/Otter/Colliders/BoxCollider.cs | holymoo/OtterSpaceInvaders | 1 | 7035193 | <reponame>holymoo/OtterSpaceInvaders<gh_stars>1-10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Otter {
/// <summary>
/// Rectangle Collider.
/// </summary>
public class BoxCollider : Collider {
#region Constructors
/// <summary>
... |
test/Test/MainTest.cs | kerryjiang/Plot4Net | 5 | 7035194 | using System;
using System.IO;
using Plot4Net;
using SkiaSharp;
using Xunit;
namespace Test
{
public class MainTest
{
[Fact]
public void TestBarChart()
{
var entries = new[]
{
new Entry()
{
Y = 200,
... |
NetVampiro/java/io/BufferedReader.cs | bastie/NetVampire | 2 | 7035195 | <filename>NetVampiro/java/io/BufferedReader.cs
/*
* 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 applica... |
Samples/simple-prompt/MyBot.cs | starlord-daniel/dialog-gen | 0 | 7035196 | <reponame>starlord-daniel/dialog-gen<gh_stars>0
using Microsoft.Bot;
using Microsoft.Bot.Builder;
using Microsoft.Bot.Schema;
using Microsoft.Bot.Builder.Dialogs;
using System.Threading;
using System.Threading.Tasks;
using System.Linq;
using System;
using Microsoft.Extensions.Options;
using Microsoft.Bot.Builder.Integr... |
pwiz_tools/Skyline/ToolsUI/PythonInstaller.cs | austinkeller/pwiz | 0 | 7035197 | <reponame>austinkeller/pwiz
/*
* Original author: <NAME> <killeent .at. u.washington.edu>,
* MacCoss Lab, Department of Genome Sciences, UW
*
* Copyright 2013 University of Washington - Seattle, WA
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use thi... |
src/SoundFingerprinting/IModelService.cs | goranzr85/Synechron | 1 | 7035198 | <gh_stars>1-10
namespace SoundFingerprinting
{
using System.Collections.Generic;
using SoundFingerprinting.Configuration;
using SoundFingerprinting.DAO;
using SoundFingerprinting.DAO.Data;
using SoundFingerprinting.Data;
public interface IModelService
{
IList<SubFingerprintData> Re... |
Assets/Scripts/FileUtils/AsyncFileUtils.cs | waterspamer/CameraTrackingRecorder | 0 | 7035200 | using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace FileUtils
{
public static class AsyncFileUtils
{
private const int DefaultBufferSize = 4096;
private const FileOptions DefaultOptions = FileOptions.Asynchronous | ... |
src/InlineIL.Tests.UnverifiableAssemblyToProcess/StandAloneMethodSigTestCases.cs | ltrzesniewski/InlineIL.Fody | 180 | 7035201 | <gh_stars>100-1000
using System;
using System.Diagnostics.CodeAnalysis;
using System.Reflection;
using System.Runtime.InteropServices;
using static InlineIL.IL.Emit;
namespace InlineIL.Tests.UnverifiableAssemblyToProcess
{
[SuppressMessage("ReSharper", "UnusedType.Global")]
[SuppressMessage("ReSharper", "Unus... |
pointmatcherTests/SamplingSurfaceNormalTest.cs | ceptontech/pointmatcher.net | 26 | 7035202 | <filename>pointmatcherTests/SamplingSurfaceNormalTest.cs<gh_stars>10-100
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using pointmatcher.net;
namespace pointmatcherTests
{
[TestClass]
public class SamplingSurfaceN... |
BTCPayServer/Services/Altcoins/Stripe/StripeService.cs | XPayServer/btcpayserver | 3 | 7035203 | using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using BTCPayServer.Client.Models;
using BTCPayServer.Data;
using BTCPayServer.Events;
using BTCPayServer.HostedServices;
using BTCPayServer.Logging;
using BTCPayServer.Payments;
using BTCPayServer.Services.Altcoins.Stripe.Payments;
u... |
src/System/Runtime/Serialization/DataMemberAttribute.cs | lovecruel/hprose1.x-dotnet | 0 | 7035204 | <reponame>lovecruel/hprose1.x-dotnet
/* DataMemberAttribute class.
* This library is free. You can redistribute it and/or modify it.
*/
#if UNITY_WEBPLAYER
using System;
namespace System.Runtime.Serialization {
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, Inherited = false, AllowMultip... |
src/Common/src/TypeSystem/Common/MethodDesc.cs | ZZHGit/corert | 0 | 7035205 | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Diagnostics;
using System.Runtime.CompilerServices;
using Internal.NativeFormat;
namespace Internal.TypeSystem
{
[Flags]
public enu... |
src/EditorFeatures/Core/Extensibility/Completion/ICustomCommitCompletionProvider.cs | stark-lang/stark-roslyn | 13 | 7035206 | <reponame>stark-lang/stark-roslyn
// 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 StarkPlatform.CodeAnalysis.Completion;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Text.Editor;
... |
pvblocks-api/pvblocks-api/IPvBlocksManager.cs | rerasolutions/pvblocks | 0 | 7035207 | using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using pvblocks_api.Exceptions;
using pvblocks_api.Helpers;
using pvblocks_api.Model;
namespace pvblocks_api
{
public interface IPvBlocksManager
{
/// <summary>
/// Check is Api V! is available
/// </summary>... |
source/soap-to-json-adapter/source/Energinet.DataHub.SoapAdapter.Application/Converters/RsmConverter.cs | mhejle/geh-market-roles | 0 | 7035208 | <reponame>mhejle/geh-market-roles<filename>source/soap-to-json-adapter/source/Energinet.DataHub.SoapAdapter.Application/Converters/RsmConverter.cs
// Copyright 2020 Energinet DataHub A/S
//
// Licensed under the Apache License, Version 2.0 (the "License2");
// you may not use this file except in compliance with the Li... |
src/Infrastructure/Maya.FormsConstructionKit.Spa.UI/Components/Views/EntityForms/View.razor.cs | mayaleh/Maya.FormsConstructionKit | 1 | 7035209 | <filename>src/Infrastructure/Maya.FormsConstructionKit.Spa.UI/Components/Views/EntityForms/View.razor.cs<gh_stars>1-10
using Havit.Blazor.Components.Web.Bootstrap;
using Maya.FormsConstructionKit.Spa.Library.Contract.UI.ViewModels.EntityForms;
using Microsoft.AspNetCore.Components;
namespace Maya.FormsConstructionKit... |
Assets/Plugins/Utils/MagicLeapUtils.cs | ryo0ka/MLTwitterHandleDetection | 6 | 7035210 | <filename>Assets/Plugins/Utils/MagicLeapUtils.cs
using System;
using UniRx;
using UniRx.Async;
using UnityEngine;
using UnityEngine.XR.MagicLeap;
namespace Utils
{
public static class MagicLeapUtils
{
public static async UniTask WaitAllGranted(this PrivilegeRequester p, bool usingZi)
{
if (Application.isEdito... |
Assets/Scripts/Editor/TankDataEditor.cs | MouradZzz/TankArena | 0 | 7035211 | using Data;
using UnityEditor;
using UnityEngine;
namespace Entities.Editor {
[CustomEditor(typeof(TankSetting))]
public class TankDataEditor : UnityEditor.Editor {
public override void OnInspectorGUI() {
DrawDefaultInspector();
TankSetting tankSetting = (TankSetting) t... |
PropertiesAndMethods/PropertiesAndMethods/Address.cs | FastTrackIT-WON-2/oop-properties-and-methods | 0 | 7035212 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PropertiesAndMethods
{
public class Address
{
public string City { get; set; } = string.Empty;
public string Street { get; set; } = string.Empty;
public strin... |
NBAStats/NBAStats/Models/Players.cs | set123ed/NBA-Stats | 0 | 7035213 | <filename>NBAStats/NBAStats/Models/Players.cs<gh_stars>0
using System.Collections.Generic;
using System.ComponentModel;
using System.Text.Json.Serialization;
namespace NBAStats.Models
{
public class TeamSitesOnlyPlayers
{
[JsonPropertyName("playerCode")]
public string PlayerCode { get; set; }... |
test/Migrator.DataAccess.Tests/TemplateSourceProviderTests.cs | Kentico/newsletter-migrator | 0 | 7035214 | using System;
using System.Configuration;
using System.Linq;
using Migrator.Core;
using NUnit.Framework;
using NSubstitute;
namespace Migrator.DataAccess.Tests
{
public class TemplateSourceProviderTests
{
[TestFixture]
public class GetTemplates : TestWithRestoredDb
{
priv... |
TestForm/Form1.cs | ephebe/netbpm | 9 | 7035215 | <reponame>ephebe/netbpm
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using NetBpm.Test.Workflow.Example;
namespace TestForm
{
public partial class Form1 : Form
{
p... |
aspnet-core/services/LY.MicroService.identityServer/IdentityResources/CustomIdentityResources.cs | icxldd/abp-vue-admin-element-typescript | 389 | 7035216 | using IdentityServer4.Models;
using LINGYUN.Abp.Identity;
namespace LY.MicroService.IdentityServer.IdentityResources;
public class CustomIdentityResources
{
public class AvatarUrl : IdentityResource
{
public AvatarUrl()
{
Name = IdentityConsts.ClaimType.Avatar.Name;
... |
PC.PowerApps/PC.PowerApps.Plugins/Contexts/PostCreateUpdatePluginContext.cs | Pilseta-cilvekiem/Participant-Management | 0 | 7035217 | using Microsoft.Xrm.Sdk;
using PC.PowerApps.Common.Extensions;
using PC.PowerApps.Plugins.Enumerations;
using System;
using System.Linq;
namespace PC.PowerApps.Plugins.Contexts
{
internal class PostCreateUpdatePluginContext<TEntity> : CreateUpdatePluginContext<TEntity> where TEntity : Entity
{
public ... |
blockchain/csharp/core/Models/PullAuthWebpageVcResponse.cs | alipay/antchain-openapi-prod-sdk | 6 | 7035218 | <filename>blockchain/csharp/core/Models/PullAuthWebpageVcResponse.cs<gh_stars>1-10
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace AntChain.SDK.BLOCKCHAIN.Models
{
public class PullAuthWebpageVcResponse : TeaModel {
... |
lib/Secucard.Connect/Product/Service/Model/services/idresult/ContactData.cs | insperedia/secucard-connect-net-sdk | 1 | 7035219 | namespace Secucard.Connect.Product.Service.Model.services.idresult
{
using System.Runtime.Serialization;
[DataContract]
public class ContactData
{
[DataMember(Name = "mobile")]
public string Mobile { get; set; }
[DataMember(Name = "email")]
public string Email { get; se... |
tests/log4net.AsyncAppender.IntegrationTests/Helpers/TestConfigurator.cs | tommasobertoni/log4net.Elasticsearch.Async | 1 | 7035220 | <filename>tests/log4net.AsyncAppender.IntegrationTests/Helpers/TestConfigurator.cs
using log4net.AsyncAppender;
namespace IntegrationTests.Helpers
{
public class TestConfigurator : IAsyncAppenderConfigurator
{
public void Configure(AsyncAppender appender)
{
}
}
}
|
src/Common/BlockEntity/BETradingPost.cs | mrflamegoat/traderoutesdeluxe | 2 | 7035221 | using System;
using TradeRoutesDeluxe.Common.Items;
using TradeRoutesDeluxe.Common.Network;
using Vintagestory.API.Server;
using Vintagestory.API.Common;
using Vintagestory.API.Config;
using Vintagestory.API.Datastructures;
using Vintagestory.GameContent;
using TradeRoutesDeluxe.Common.Utils;
namespace TradeRoutesDelu... |
IntWeb/IntWeb/Defaults/NodeDefaults.cs | IntWebCom/IntWeb | 0 | 7035222 | namespace IntWeb.Framework.Defaults
{
public static class NodeDefaults
{
public static readonly string IdentifierLabelPrefix = "node";
public static readonly string IdentifierAttribute = "id";
public static readonly string ClassAttribute = "class";
}
}
|
9SuperComicLib.XPatch/Patch/Public/PublicPatchInfo.cs | ekfvoddl3536/0SuperComicLibs | 5 | 7035223 | using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;
namespace SuperComicLib.XPatch
{
public struct PublicPatchInfo : IDisposable
{
private PatchManager instance;
internal PublicPatchInfo(PatchManager instance) => this.instance = in... |
src/SqlDbTests/Requests/Rows/RequestInsertTests.cs | SemyonDmt/WebApi | 0 | 7035224 | //using System;
//using System.Data;
//using System.Data.SqlClient;
//using System.Linq;
//using AutoFixture;
//using FluentAssertions;
//using NUnit.Framework;
//using SqlDb.Requests.Rows;
//using SqlDbTests.FixtureData;
//
//namespace SqlDbTests.Requests.Rows
//{
// public class RequestInsertTests
// {
// ... |
tests/FaasUtils.Tests/FunctionExpressionTreeBuilderOutputTest.cs | Daniel15/fdk-dotnet | 12 | 7035226 | <reponame>Daniel15/fdk-dotnet<filename>tests/FaasUtils.Tests/FunctionExpressionTreeBuilderOutputTest.cs
using System.Threading.Tasks;
using FaasUtils.Extensions;
using Microsoft.Extensions.DependencyInjection;
using Xunit;
namespace FaasUtils.Tests
{
public class FunctionExpressionTreeBuilderOutputTest
{
private ... |
Knockback Extravaganza/Game/Game1.cs | Sunikee/Knockback-extravaganza | 1 | 7035227 | using Microsoft.Xna.Framework.Graphics;
using ECS_Engine;
using Game.Source.Scenes;
namespace Game
{
public class Game1 : ECSEngine
{
SpriteFont startFont;
Texture2D startBackground;
Texture2D pauseBackground;
public Game1() : base()
{
}
... |
PdfSharpCore.Charting/PdfSharp.Charting.Renderers/ColumnLikeChartRenderer.cs | aavilaco/PdfSharpCore | 0 | 7035228 | #region PDFsharp Charting - A .NET charting library based on PDFsharp
//
// Authors:
// <NAME> (mailto:<EMAIL>)
//
// Copyright (c) 2005-2009 empira Software GmbH, Cologne (Germany)
//
// http://www.PdfSharpCore.com
// http://sourceforge.net/projects/pdfsharp
//
// Permission is hereby granted, free of charge, to an... |
src/CDAPackage/CertificateVerifier.cs | andrew-hardy/clinical-document-packaging-library-dotnet | 2 | 7035230 | /*
* Copyright 2011 NEHTA
*
* Licensed under the NEHTA Open Source (Apache) License; you may not use this
* file except in compliance with the License. A copy of the License is in the
* 'license.txt' file, which should be provided with this work.
*
* Unless required by applicable law or agreed to in writing, so... |
InformedProteomics.TopDown/Scoring/Ms1FtFilter.cs | javamng/GitHUB | 0 | 7035232 | using System;
using System.Collections.Generic;
using System.Linq;
using InformedProteomics.Backend.Data.Spectrometry;
using InformedProteomics.Backend.MassSpecData;
using InformedProteomics.Backend.Utils;
namespace InformedProteomics.TopDown.Scoring
{
public class Ms1FtFilter : ISequenceFilter
{
... |
Dev/AlphaTest/Assets/Scripts/Data/FenceData.cs | VontineDev/ProjectA | 0 | 7035234 | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FenceData
{
public int id;
public string name;
public int maxHp;
public int reinforceMaxLv;
public string prefab_name;
}
|
Nba Store/NbaStore.Tests/Mocks/MockDbContext.cs | YordanYordanov97/Softuni | 0 | 7035236 | using Microsoft.EntityFrameworkCore;
using NbaStore.Data;
using System;
using System.Collections.Generic;
using System.Text;
namespace NbaStore.Tests.Mocks
{
public static class MockDbContext
{
public static NbaStoreDbContext GetContext()
{
var options = new DbContextOptionsBuilder... |
SharePoint/Source/MS-SITESS/Adapter/MS-SITESSAdapter.cs | v-lugao/Interop-TestSuites | 29 | 7035237 | <filename>SharePoint/Source/MS-SITESS/Adapter/MS-SITESSAdapter.cs
namespace Microsoft.Protocols.TestSuites.MS_SITESS
{
using System;
using System.Net;
using System.Web.Services.Protocols;
using Microsoft.Protocols.TestSuites.Common;
using Microsoft.Protocols.TestTools;
/// <summary>
... |
Jwt.Sample/Program.cs | gstr-unidevel/jwt | 0 | 7035238 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Newtonsoft.Json.Serialization;
using Unidevel.Jwt;
using Newtonsoft.Json;
namespace Jwt.Sample
{
public class Program
{
public static void Main(string[] args)
{
var tokenService =... |
src/Runtime/Runtime/OpenSilver/Internal/Xaml/RuntimeHelpers.cs | dvs99/OpenSilver | 0 | 7035239 | <filename>src/Runtime/Runtime/OpenSilver/Internal/Xaml/RuntimeHelpers.cs
/*===================================================================================
*
* Copyright (c) Userware/OpenSilver.net
*
* This file is part of the OpenSilver Runtime (https://opensilver.net), which is
* licensed under the ... |
Assets/Plugins/Editor/Vexe/GUIs/BaseGUI/Controls/Texts.cs | drakmirv/VFW | 537 | 7035240 | using UnityEngine;
namespace Vexe.Editor.GUIs
{
public abstract partial class BaseGUI
{
public string Text(string value)
{
return Text(string.Empty, value);
}
public string Text(string label, string value)
{
return Text(label, value, Layout.Auto);
}
public string Text(string value, Layout opti... |
Molten.DX11/Shaders/Materials/MaterialPassCompileResult.cs | Syncaidius/MoltenEngine | 79 | 7035241 | <gh_stars>10-100
using SharpDX.D3DCompiler;
using Molten.Graphics.Shaders;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Molten.Graphics
{
internal class MaterialPassCompileResult
{
internal MaterialPassCompileResult(Mater... |
Assets/Scripts/Renderer/Shaders/DrawAutomaticUniforms/CameraLightPositionUniformFactory.cs | Shakenbake158/Earth | 0 | 7035243 | namespace Earth.Renderer
{
internal class CameraLightPositionUniformFactory : DrawAutomaticUniformFactory
{
#region DrawAutomaticUniformFactory Members
public override string Name
{
get { return "og_cameraLightPosition"; }
}
public override DrawAutomaticUni... |
src/Rocket.Chat.Net/Models/User.cs | andy840119/Rocket.Chat.Net | 33 | 7035244 | namespace Rocket.Chat.Net.Models
{
using Newtonsoft.Json;
public class User
{
/// <summary>
/// User Id
/// </summary>
[JsonProperty(PropertyName = "_id")]
public string Id { get; set; }
/// <summary>
/// Username
/// </summary>
publ... |
Calculation.Tests/HouseholdElements/CalcPersonTests.cs | vitorbellotto/LoadProfileGenerator | 0 | 7035245 | //-----------------------------------------------------------------------
// <copyright>
//
// Copyright (c) TU Chemnitz, Prof. Technische Thermodynamik
// Written by <NAME>.
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are me... |
web-api/platypus/platypus/DataAccess/Repositories/TenantRepositories/SettingRepository.cs | yonetatuu/kamonohashi | 0 | 7035246 | using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Microsoft.IdentityModel.Tokens;
using Nssol.Platypus.DataAccess.Core;
using Nssol.Platypus.DataAccess.Repositories.Interfaces;
using Nssol.Platypus.Infrastructure;
using Nssol.Platypus.Infrastructure.Options;
using Nssol.Platypus.Models;
usi... |
src/Machete.HL7Schema/Generated/V26/Components/Maps/ICDMap.cs | amccool/Machete | 47 | 7035247 | // This file was automatically generated and may be regenerated at any
// time. To ensure any changes are retained, modify the tool with any segment/component/group/field name
// or type changes.
namespace Machete.HL7Schema.V26.Maps
{
using V26;
/// <summary>
/// ICD (ComponentMap) - Insurance Certificat... |
engine/wwtlib/Layers/SpreadSheetLayer.cs | imbasimba/wwt-webgl-engine | 8 | 7035248 | using System;
using System.Collections.Generic;
using System.Html;
using System.Xml;
using System.Html.Media.Graphics;
using System.Html.Data.Files;
namespace wwtlib
{
// public enum PointScaleTypes { Linear=0, Power=1, Log=2, Constant=3, StellarMagnitude=4 };
public class SpreadSheetLayer : Layer
{
... |
C#/Trees/AVLTree/AVLTree.cs | halls7588/Data_Structures_in_15_Languages | 8 | 7035249 | <gh_stars>1-10
/*******************************************************
* AvlTree.cs
* Created by <NAME> on 11/20/17.
* Copyright (c) 2017 <NAME>. All rights reserved.
* AVL Tree implementation in C#
********************************************************/
using System;
namespace DataStructures.Tr... |
unity-renderer/Assets/DCLPlugins/EmoteAnimations/Tests/EmoteAnimationsTrackerShould.cs | dcl-glb/unity-renderer | 0 | 7035250 | using System.Threading;
using AvatarSystem;
using Cysharp.Threading.Tasks;
using DCL.Helpers;
using NSubstitute;
using NUnit.Framework;
using UnityEngine;
namespace DCL.Emotes
{
public class EmoteAnimationsTrackerShould
{
private EmoteAnimationsTracker tracker;
private DataStore_Emotes dataStor... |
src/Senparc.Weixin/Senparc.Weixin/MessageHandlers/Async/MessageHandlerAsync.cs | yoke66/WeiXinMPSDK | 3 | 7035251 | <reponame>yoke66/WeiXinMPSDK<filename>src/Senparc.Weixin/Senparc.Weixin/MessageHandlers/Async/MessageHandlerAsync.cs
#region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2018 <NAME> & Suzhou Senparc Network Technology Co.,Ltd.
Licensed under the Apache Licen... |
src/cscs/Utils/SocketExtensions.cs | adusak/cs-script.core | 0 | 7035253 | <gh_stars>0
using System;
using System.Net.Sockets;
using System.Text;
public static class SocketExtensions
{
public static byte[] GetBytes(this string data) => Encoding.UTF8.GetBytes(data);
public static string GetString(this byte[] data) => Encoding.UTF8.GetString(data);
public static byte[] ReadAllByt... |
Controls/Chart/Chart.UWP/AutomationPeers/Annotations/CartesianGridLineAnnotationAutomationPeer.cs | Zofware/UI-For-UWP | 1,338 | 7035254 | using System;
using System.Globalization;
using Telerik.UI.Xaml.Controls.Chart;
using Windows.UI.Xaml.Automation;
using Windows.UI.Xaml.Automation.Peers;
using Windows.UI.Xaml.Automation.Provider;
namespace Telerik.UI.Automation.Peers
{
/// <summary>
/// AutomationPeer class for <see cref="CartesianGridLineAn... |
Transportes_Canas/Information/CityInformation.cs | JosafatZG/TransporteCanas | 0 | 7035255 | <filename>Transportes_Canas/Information/CityInformation.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Transportes_Canas.Information
{
public class CityInformation
{
private int id;
private string city;
... |
PriseBot/Modules/GeneralModule.cs | Cobralion/PriseBot | 0 | 7035256 | using Discord.Commands;
using Infrastructure;
using Infrastructure.Enities;
using Microsoft.Extensions.Logging;
using PriseBot.Helper;
using PriseBot.Worker;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Victoria;
namespace PriseBot.Modules
{... |
Project-Aurora/Profiles/GTA5/GameEvent_GTA5.cs | snichola/Aurora | 0 | 7035257 | using System;
using System.Collections.Generic;
using Aurora.EffectsEngine;
using Aurora.Profiles.GTA5.GSI;
using System.Drawing;
using Aurora.Settings;
namespace Aurora.Profiles.GTA5
{
public class GameEvent_GTA5 : LightEvent
{
private static PlayerState curr_state = PlayerState.Undefined;
pr... |
Cryptography/CafeLib.Cryptography.BouncyCastle/Math/Field/IFiniteField.cs | kronoverse-inc/CafeLib | 0 | 7035258 | <gh_stars>0
namespace CafeLib.Cryptography.BouncyCastle.Math.Field
{
public interface IFiniteField
{
BigInteger Characteristic { get; }
int Dimension { get; }
}
}
|
SniffCore.Navigation/Dialogs/OpenFileData.cs | devicenator/SniffCore.Navigation | 1 | 7035259 | //
// Copyright (c) <NAME>. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
using System.ComponentModel;
namespace SniffCore.Navigation.Dialogs
{
/// <summary>
/// Provides the data to be used for the open file dialog.
/// ... |
src/HotChocolate/Core/src/Types/Types/Relay/RelayOptions.cs | HonzaBejvl/hotchocolate | 26 | 7035260 | <reponame>HonzaBejvl/hotchocolate
using System;
namespace HotChocolate.Types.Relay
{
/// <summary>
/// Represents relay options.
/// </summary>
public class RelayOptions
{
/// <summary>
/// If set to <c>true</c> the mutation payloads are rewritten to provide access to
/// th... |
src/Workspaces/Core/Portable/Simplification/AbstractReducer.cs | GrahamTheCoder/roslyn | 0 | 7035261 | <reponame>GrahamTheCoder/roslyn
// 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 Microsoft.CodeAnalysis.Options;
using Microsoft.CodeAnalysis.PooledObjects;
namespace Microsoft.CodeAnalysis.Simplific... |
MainIoTApp/MainIoTApp/MainPage.xaml.cs | tkopacz/2016windowsiot-iothub-workshopV1_2 | 2 | 7035262 | <reponame>tkopacz/2016windowsiot-iothub-workshopV1_2
using Microsoft.Azure.Devices.Client;
using Microsoft.IoT.AdcMcp3008;
using Newtonsoft.Json;
using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Windows.Devices.Adc;
using Windows.Devices.Enumeration;
using Windows.Devices.Gpio;
using Windows... |
src/Microsoft.Graph/Generated/model/OverallPrintUsageSummary.cs | ScriptBox99/msgraph-beta-sdk-dotnet | 71 | 7035263 | <filename>src/Microsoft.Graph/Generated/model/OverallPrintUsageSummary.cs
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// -------... |
DumpMiner/Infrastructure/Mef/OperationViewAttribute.cs | dudikeleti/DumpMiner | 58 | 7035264 | <filename>DumpMiner/Infrastructure/Mef/OperationViewAttribute.cs
using System;
using System.ComponentModel.Composition.Hosting;
using System.Linq;
using System.Reflection;
using DumpMiner.Common;
namespace DumpMiner.Infrastructure.Mef
{
public class OperationViewAttribute : ViewAttribute
{
//private s... |
MZcms.Core/plugins/Message/StatusEnum.cs | MiZoneRom/MiZoneAdminManager | 3 | 7035265 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MZcms.Core.Plugins.Message
{
/// <summary>
/// 每个消息操作的状态
/// </summary>
public enum StatusEnum
{
Open = 1,
Close = 2,
Disable = 3
}
}
|
Fishing Legends/Assets/Scripts/CanvasTiendaRanking/CanvasTienda.cs | PolyPlus/FishingLegends | 0 | 7035266 | <gh_stars>0
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class CanvasTienda : MonoBehaviour
{
public GameObject productos;
public GameObject piscipedia;
public GameObject clubPesca;
public GameObject panelPrincipal;
public GameObject ca... |
DiscordMafia/Config/Lang/AchievementMessages.cs | Taumer/DiscordMafia | 7 | 7035267 | using System;
using System.Xml.Serialization;
using DiscordMafia.Lib;
namespace DiscordMafia.Config.Lang
{
[Serializable]
[XmlRoot("Messages")]
public class AchievementMessages : MessageDictionary<AchievementMessages, string, AchievementMessages.AchievementMessage>
{
[Serializable]
[Xm... |
bundle/omnisharp-vim/omnisharp-roslyn/src/OmniSharp/Models/AspNet5Project.cs | Jenkin0603/myvim | 0 | 7035268 | <reponame>Jenkin0603/myvim<filename>bundle/omnisharp-vim/omnisharp-roslyn/src/OmniSharp/Models/AspNet5Project.cs
using System.Collections.Generic;
using System.Linq;
using OmniSharp.AspNet5;
namespace OmniSharp.Models
{
public class AspNet5Project
{
public string Path { get; set; }
public stri... |
ModTMNF/Game/Classic/CString.cs | pixeltris/ModTMNF | 4 | 7035269 | <gh_stars>1-10
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace ModTMNF.Game
{
/// <summary>
/// char* (with length info, and null terminated)
/// </summary>
public unsafe struct CString
{
public int Lengt... |
lsc/lsc.Model/ModuleInfo.cs | andyshao/crm | 121 | 7035270 | using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace lsc.Model
{
/// <summary>
/// 模块
/// </summary>
[Serializable]
public class ModuleInfo
{
[Key]
public int ID { get; set; }
/// <summary>
///... |
Source/RawArgument.cs | chasse20/EventsPlus | 0 | 7035271 | <reponame>chasse20/EventsPlus
using System;
using UnityEngine;
namespace EventsPlus
{
//##########################
// Class Declaration
//##########################
/// <summary>Serializable argument data for any type supported by Unity's default inspector</summary>
[Serializable]
public class RawArg... |
main/Sample/Northwind.Entities/Models/Territory.cs | rdhainaut/URF | 153 | 7035272 | <gh_stars>100-1000
using System;
using System.Collections.Generic;
using Repository.Pattern.Ef6;
namespace Northwind.Entities.Models
{
public partial class Territory : Entity
{
public Territory()
{
this.Employees = new List<Employee>();
}
public string TerritoryID {... |
Objects and Classes - Exercises/07. AndreyAndBilliard/Program.cs | fastline32/TechModule | 1 | 7035273 | <gh_stars>1-10
using System;
using System.Collections.Generic;
using System.Linq;
namespace _07.AndreyAndBilliard
{
class Pr07AndreyAndBilliard
{
static void Main()
{
int n = int.Parse(Console.ReadLine());
Dictionary<string, decimal> infoItems = new Dictionary<string, d... |
tests/UnitTests/CommandTagFilterTests.cs | AshleighAdams/Verlite | 13 | 7035274 | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Threading.Tasks;
using FluentAssertions;
using Verlite;
using Xunit;
namespace UnitTests
{
internal struct MockCommandResult
{
public int ExitCode { get; set; }
public string S... |
src/JustineCore/Entities/UserProblem.cs | petrspelos/justine-core | 2 | 7035275 | using System;
namespace JustineCore.Entities
{
public class UserProblem
{
public ulong MessageId { get; set; }
public DateTime CreatedAt { get; set; }
}
} |
src/DynamicData/Abstractions.cs | EdonGashi/aspcore-oidc-demo | 0 | 7035276 | <filename>src/DynamicData/Abstractions.cs
using System.Collections.Generic;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace DynamicData
{
public interface IPropertyManager
{
bool AutoSave { get; set; }
Task<PropertyData> GetToken(string key);
Task<IDictionary<stri... |
Examples/GroupDocs.Parser.Cloud.Examples.CSharp/TemplateOperations/GetTemplate.cs | groupdocs-parser-cloud/groupdocs-parser-cloud-dotnet-samples | 0 | 7035277 | <reponame>groupdocs-parser-cloud/groupdocs-parser-cloud-dotnet-samples
using GroupDocs.Parser.Cloud.Sdk.Api;
using GroupDocs.Parser.Cloud.Sdk.Client;
using GroupDocs.Parser.Cloud.Sdk.Model;
using GroupDocs.Parser.Cloud.Sdk.Model.Requests;
using System;
namespace GroupDocs.Parser.Cloud.Examples.CSharp
{
/// <summa... |
ERPForServiceActivity.CommonModels/BindingModels/Users/EditUserBindingModel.cs | ALMLAMBO/ERP-for-service-activity | 0 | 7035278 | <reponame>ALMLAMBO/ERP-for-service-activity
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace ERPForServiceActivity.CommonModels.BindingModels.Users {
public class EditUserBindingModel {
public string Username { get; set; }
[DataType(DataTy... |
Assets/Scripts/LevelSelectionManager.cs | Xenation/Ludum-Dare-45 | 0 | 7035279 | using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
namespace LD45 {
public class LevelSelectionManager : Singleton<LevelSelectionManager> {
public Material whiteMat;
public Material blackMat;
public Material whiteGlowMat;
public Material blackGlowMat;
public Color text... |
SupernovaMusic/Assets/AudioImporter/Scripts/Browser.cs | DanielSR1999/SupernovaVisualizer | 28 | 7035280 | <reponame>DanielSR1999/SupernovaVisualizer
using System;
using System.Collections;
using UnityEngine;
using UnityEngine.EventSystems;
using UnityEngine.UI;
using System.IO;
using System.Collections.Generic;
/// <summary>
/// A file browser.
/// </summary>
public class Browser : MonoBehaviour
{
/// <summary>
/... |
BaseApp/View/ViewWhatsAppTutorial.xaml.cs | DIH-OST/meinschaufenster | 0 | 7035281 | <reponame>DIH-OST/meinschaufenster
// DigitalesSchaufenster (C) 2020 DIH-OST
using System;
namespace BaseApp.View
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public class ViewWhatsAppTutorial
{
public ViewWhatsAppTutorial() : this(null)
{
}
public ViewWhatsAppTuto... |
tools/generator/ApiVersionsSupport.cs | jonathanpeppers/java.interop | 167 | 7035282 | <reponame>jonathanpeppers/java.interop<filename>tools/generator/ApiVersionsSupport.cs
using System;
using System.Collections.Generic;
using Xamarin.AndroidTools.AnnotationSupport;
using System.Linq;
namespace MonoDroid.Generation
{
static class IApiAvailabilityExtensions
{
public static string AdditionalAttribute... |
src/ReleaseZero.Service/Areas/API/Models/Letter.cs | ReleaseZero/csharp-dotnet-core-2.0 | 0 | 7035283 | <reponame>ReleaseZero/csharp-dotnet-core-2.0
using System;
using System.ComponentModel.DataAnnotations;
using Newtonsoft.Json;
namespace ReleaseZero.Service.Areas.API.Models
{
/// <summary>
/// Letter object
/// </summary>
public class Letter
{
private char _character;
/// <summary... |
BlogServer/BlogServer.Common/DTO/UserDTO.cs | Juanah/BlogServer | 0 | 7035284 | <reponame>Juanah/BlogServer<filename>BlogServer/BlogServer.Common/DTO/UserDTO.cs
using System;
namespace BlogServer.Common
{
public class UserDTO
{
public string Username{ get; set; }
public string Authentification{ get; set; }
public byte[] ImageBytes{ get; set; }
}
}
|
src/Agent/NewRelic/Agent/Core/NewRelic.Agent.Core.Metric/MetricNames.cs | hsinghkalsi/newrelic-dotnet-agent | 0 | 7035285 | <filename>src/Agent/NewRelic/Agent/Core/NewRelic.Agent.Core.Metric/MetricNames.cs
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
using Grpc.Core;
using NewRelic.Agent.Core.AgentHealth;
using NewRelic.Agent.Core.Samplers;
using NewRelic.Agent.Core.Transformers.Tr... |
src/Red-Folder.Blog.Markdown/Transformers/CodeTransformer.cs | Red-Folder/red-folder.com | 0 | 7035286 | <filename>src/Red-Folder.Blog.Markdown/Transformers/CodeTransformer.cs
using Newtonsoft.Json.Linq;
using System.Net;
using System.Text.RegularExpressions;
namespace RedFolder.Blog.Markdown.Transformers
{
public class CodeTransformer: BaseTransformer
{
public CodeTransformer() : base()
{
... |
Assets/Plugins/UnityFx.Mvc/Runtime/Abstractions/Mvc/IViewControllerEvents.cs | Arvtesh/UnityFx.Mvc | 11 | 7035287 | <reponame>Arvtesh/UnityFx.Mvc
// Copyright (c) 2018-2020 <NAME>.
// Licensed under the MIT license. See the LICENSE.md file in the project root for more information.
using System;
namespace UnityFx.Mvc
{
/// <summary>
/// Defines event handlers for a <see cref="IViewController"/> implementation.
/// </summary>
/... |
src/Examples/Issues/Issue174cs.cs | szehetner/protobuf-net | 1 | 7035288 | <gh_stars>1-10
using ProtoBuf;
using System;
using System.IO;
using Xunit;
namespace Examples.Issues
{
public class Issue174cs
{
[Fact]
public void TestDynamic()
{
Program.ExpectFailure<InvalidOperationException>(() =>
{
var myVal =... |
Homeinns.Common/Data/Serializer/DataSetSerializer.cs | zhouyongtao/my_aspnetmvc_learning | 0 | 7035289 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Runtime.Serialization.Formatters.Binary;
using System.Runtime.Serialization;
using System.IO;
/**
* 版权所有 All Rights Reserved
*
* @author Irving_Zhou
* @description DataSet辅助类
* @date 2012年9月9日11... |
TableauRepository.cs | bryantbhowell/Behold--Emailer | 10 | 7035290 | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Npgsql;
using System.Diagnostics;
namespace Behold_Emailer
{
/*
* TableauRepository represents a connection to the PostgreSQL repository in Tableau Server
* This class is just a convenience which builds in a conn... |
src/XUnity.AutoTranslator.Plugin.Core/Constants/KnownEvents.cs | Vimek/XUnity.AutoTranslator | 1 | 7035291 | <reponame>Vimek/XUnity.AutoTranslator
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XUnity.AutoTranslator.Plugin.Core.Constants
{
public static class KnownEvents
{
public static string OnUnableToTranslateUGUI = "OnUnableToTranslateUGUI";
public stati... |
DeadByDaylightBackup.Utility/Trigger/TriggerHandler.cs | Green7izard/DeadByDaylightBackup | 0 | 7035292 | <filename>DeadByDaylightBackup.Utility/Trigger/TriggerHandler.cs
using DeadByDaylightBackup.Logging;
using DeadByDaylightBackup.Logging.Helper;
using System;
using System.Collections.Generic;
using System.Linq;
namespace DeadByDaylightBackup.Utility.Trigger
{
/// <summary>
/// Basic implementation of the Trig... |
TIKSN.Framework.IntegrationTests/Finance/ForeignExchange/BankOfEnglandTests.cs | tiksn/TIKSN-Framework | 13 | 7035293 | <filename>TIKSN.Framework.IntegrationTests/Finance/ForeignExchange/BankOfEnglandTests.cs
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using TIKSN.Finance.ForeignExchange.Bank;
using TIKSN.Globalization;
using TIKSN.Time;
using Xunit;
namespace TIKSN.Fin... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.