content stringlengths 23 1.05M |
|---|
namespace Merchello.Bazaar.Models
{
using System.ComponentModel.DataAnnotations;
/// <summary>
/// The model for the RedeemCouponOffer partial view.
/// </summary>
public partial class RedeemCouponOfferForm
{
/// <summary>
/// Gets or sets the Bazaar theme name.
/// </s... |
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Merchant.Todont.Domain.Habits
{
public interface IHabitsService
{
Task<Habit> GetHabitById(Guid id);
Task<IReadOnlyList<Habit>> GetHabitsByUserId(Guid userId);
Task<Habit> SaveHabit(Habit habit);
... |
using System;
using System.Collections.Generic;
namespace Checkout.Reconciliation
{
public class StatementData
{
public string Id { get; set; }
public DateTime? Date { get; set; }
public IList<PayoutStatement> Payouts { get; set; }
public DateTime? PeriodEnd { get; set; }
... |
using System.Collections.Generic;
using Bitmex.Client.Websocket.Messages;
namespace Bitmex.Client.Websocket.Responses
{
/// <summary>
/// Base message for every response
/// </summary>
public class ResponseBase : MessageBase
{
/// <summary>
/// The type of the message. Types:
... |
namespace WinterIsComing.Core.Commands
{
using Contracts;
public class WinterCameCommand : AbstractCommand
{
public WinterCameCommand(IEngine engine)
: base(engine)
{
}
public override void Execute(string[] commandArgs)
{
this.Engine.Stop();... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace CollisionSound
{
public class SoundCollider : MonoBehaviour {
[Header("General")]
[Tooltip("Name of the material. There must be a folder with this exact name in the FMOD Studio project, " +
... |
using UnityEngine;
using UnityEngine.SceneManagement;
public class ExitFromNest : MonoBehaviour
{
public string mondoEsterno;
void OnTriggerEnter()
{
SceneManager.LoadScene(mondoEsterno);
}
}
|
using System;
using System.Windows;
using System.Windows.Threading;
namespace GitHubFolderDownloader.Toolkit
{
public static class DispatcherHelper
{
public static void DispatchAction(Action action,
DispatcherPriority dispatcherPriority = DispatcherPriority.Background)
{
... |
namespace Cuku.Terrain
{
using Cuku.ScriptableObject;
using Sirenix.OdinInspector;
using System.IO;
public class TerrainCommonConfig : SerializedScriptableObject
{
[PropertySpace(20), Title("Id"), InfoBox("Used to separate tile names.", InfoMessageType.None)]
public string IdSeparator = "_";
... |
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Caber.Util;
namespace Caber.UnitTests.TestHelpers
{
public class ConcurrentOperations
{
/// <summary>
/// Run the specified action at a requested degree of concurrency.
/// </summar... |
namespace Akka.Interfaced.SlimSocket.Client
{
public class SlimTaskFactory : ISlimTaskFactory
{
public ISlimTaskCompletionSource<TResult> Create<TResult>() => new SlimTaskCompletionSource<TResult>();
}
}
|
namespace Bet.Extensions.Walmart.Models;
public enum OrderShipMethodEnum
{
Standard,
Express,
OneDay,
Freight,
WhiteGlove,
Value
}
|
using System;
namespace Umbraco.Cms.Core.Events
{
public class EventDefinition : EventDefinitionBase
{
private readonly EventHandler _trackedEvent;
private readonly object _sender;
private readonly EventArgs _args;
public EventDefinition(EventHandler trackedEvent, object sende... |
using LoanProcessManagement.Application.Responses;
using MediatR;
using System;
namespace LoanProcessManagement.Application.Features.Events.Queries.GetEventDetail
{
public class GetEventDetailQuery : IRequest<Response<EventDetailVm>>
{
public string Id { get; set; }
}
}
|
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class InstanceManager : MonoBehaviour
{
public static InstanceManager Instance;
private Dictionary<Type, object> instancesDictionary;
private void Awake()
{
Instance = this;
instancesDi... |
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class SpecialAbility : GUIComponent
{
[SerializeField]
private List<SpecialAbilitySlot> _slots = new List<SpecialAbilitySlot>();
[SerializeField]
private List<SpecialAbilityListUnit> _specialAbilitylist =... |
using System.Collections.Generic;
using NUnit.Framework;
using Hsm;
namespace UnitTesting {
[TestFixture]
class StateMachineTests : AssertionHelper {
[Test]
public void InstantiateEmpty() {
var statemachine = new StateMachine();
Expect(statemachine, Is.InstanceOf<StateMachine>());
Expect(statemachin... |
using System;
using System.Threading.Tasks;
using Uintra.Features.Groups.Models;
namespace Uintra.Features.Groups.Helpers
{
public interface IGroupHelper
{
GroupHeaderViewModel GetHeader(Guid groupId);
Task<GroupHeaderViewModel> GetHeaderAsync(Guid groupId);
GroupViewModel GetGroupView... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Networking;
using Newtonsoft.Json;
public class APImannager : MonoBehaviour {
private Info info;
private string api = "http://127.0.0.1:8012/Spy_Game/";
// Use this for initialization
void Start () {
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Schedule.ModelInterfaces
{
public interface ISchedule
{
public Models.Schedule GetSchedule(int id);
public IEnumerable<Models.Schedule> GetSchedules { get; }
public void AddSche... |
using System;
using Backend.DDD.Sample.Contracts.Issues;
using GoldenEye.Backend.Core.Entity;
using GoldenEye.Shared.Core.Objects.General;
namespace Backend.DDD.Sample.Issues
{
internal class Issue: IEntity
{
public Issue()
{
}
public Issue(Guid id, IssueType type, string title... |
using RabbitMQ.Client;
using System;
namespace Msh.EasyRabbitMQ.ServiceBus.ServiceBusConnection
{
public interface IConnectionManager : IDisposable
{
IModel Channel { get; }
void Connect();
void TryConnect();
}
}
|
namespace EnvironmentAssessment.Common.VimApi
{
public class HostSnmpConfigSpec : DynamicData
{
protected bool? _enabled;
protected int? _port;
protected string[] _readOnlyCommunities;
protected HostSnmpDestination[] _trapTargets;
protected KeyValue[] _option;
public bool? Enabled
{
get
{
retu... |
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Umbraco.Core.Models;
using Umbraco.Core.Models.PublishedContent;
using Umbraco.Web;
using Umbraco.Web.Models;
namespace Our.Umbraco.NonProfitFramework.Core.Custom
{
public class TypedPictureElement : PictureElement
{
public ... |
using HTTPlease;
using System;
namespace KubeClient
{
using Models;
/// <summary>
/// Exception raised when an error result is returned by the Kubernetes API.
/// </summary>
#if NETSTANDARD20
[Serializable]
#endif // NETSTANDARD20
public class KubeApiException
: KubeClientException... |
using System;
namespace BlazorX.NavigationState
{
public interface INavigationParameter<T>
{
public T Value { get; set; }
public IObservable<T> ValueStream { get; }
}
public interface IQueryParameter<T> : INavigationParameter<T>
{
}
} |
using System;
//struct holding x and y coordinates
public struct Point
{
public int X, Y;
public Point(int x, int y)
{
X = x;
Y = y;
}
// override object.Equals
public override bool Equals(object obj)
{
//
// See the full list of guidelines at
... |
using Volo.Abp.Localization;
namespace EasyAbp.EShop.Plugins.Baskets.Localization
{
[LocalizationResourceName("EShopPluginsBaskets")]
public class BasketsResource
{
}
}
|
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using Xunit;
namespace Test.Utility
{
public static class ExceptionUtility
{
public static void AssertMicrosoftAssumesExc... |
using UnityEngine;
namespace Production.Scripts.Items
{
public class OnItem : MonoBehaviour
{
public UntilDeathBoolItem untilDeathBool;
public DurationBoolItem durationBoolItem;
public SpecialEffectItem specialEffectItem;
public InstantFloatItem instantFloatItem;
}
} |
using System;
using Arbor.App.Extensions;
using Xunit;
namespace Milou.Deployer.Web.Tests.Unit
{
public class DisposeTest
{
private class TestDisposable : IDisposable
{
public void Dispose()
{
}
}
[Fact]
public void DisposeDisposable... |
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Create a Custom Postcard!</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
</h... |
using System;
using System.Collections.Generic;
using System.Linq;
namespace Count_Same_Values_In_Array
{
class Program
{
static void Main(string[] args)
{
var numbers = Console.ReadLine().Split().Select(double.Parse);
var doubles = new Dictionary<double, int>();
... |
using BusinessEngine.Operating;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace BusinessEngine.Sales
{
public abstract class IProduct: INotifyPropertyChanged
{
private string name;
... |
using Cordonez.BubbleInvasion.DataModels;
namespace Cordonez.BubbleInvasion.Models
{
public interface IBullet
{
SO_BulletData BulletData { get; set; }
void Shoot();
}
} |
// InBuffer.cs
using System.IO;
namespace SevenZip.Buffer
{
public class InBuffer
{
private readonly byte[] _mBuffer;
private readonly uint _mBufferSize;
private uint _mLimit;
private uint _mPos;
private ulong _mProcessedSize;
private Stream _mStream;
pr... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Security.Policy;
using System.Web;
namespace Marcusca10.Samples.BuildingAccessNet.Web.Models
{
public class ManageUserViewModel
{
public string Id { get; set; }
[EmailAd... |
// Copyright 2016 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicabl... |
#region
/*
* Author: Jackalsoft Games
* Date: February 2018
* Project: Presto! (#MonoGameJam2018 entry)
*
* This code is provided as-is under the MIT license,
* with no warranty express or implied.
*/
using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework... |
namespace UCP.Patching
{
public abstract class BinElement
{
public virtual int Length => 0;
int rawAddr, virtAddr;
public int RawAddress => rawAddr;
public int VirtAddress => virtAddr;
public virtual void Initialize(int rawAddr, int virtAddr, byte[] original)
... |
@model List<InventoryManager.Models.InventoryItem>
<h1>Inventory</h1>
<table class="table">
<tr>
<th>Name</th>
<th>Upc</th>
<th>Unit</th>
<th>Cost</th>
<th>Category</th>
<th>Vendor</th>
<th>Quantity</th>
</tr>
@foreach (var item in Model)
... |
using System.Linq;
using System.Xml.Linq;
namespace FeedlyOpmlExport.Functions
{
public static class OpmlLabeler
{
public static string LabelOpmlFile(string opmlXml)
{
var opmlDoc = XElement.Parse(opmlXml);
var firstLevelChildren = opmlDoc.DescendantNodes().Where(x => x... |
// Licensed under the MIT license.
// See LICENSE file in the project root directory for full information.
// Copyright (c) 2018 Jacob Schlesinger
// File authors (in chronological order):
// - Jacob Schlesinger <schlesinger.jacob@gmail.com>
using System;
using System.Linq;
using jsc.commons.behaving.interfaces;
us... |
using Stratis.Bitcoin.Consensus.Rules;
using Stratis.Bitcoin.Features.Consensus.CoinViews;
using Stratis.Bitcoin.Utilities;
namespace Stratis.Bitcoin.Features.Consensus.Rules
{
/// <summary>
/// Rules that provide easy access to the <see cref="CoinView"/> which is the store for a PoW system.
/// </summary>... |
using Panosen.CodeDom.Tag.Vue;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Panosen.CodeDom.Vue
{
/// <summary>
///
/// </summary>
public class VueRoute
{
/// <summary>
/// Path
/// </summary>... |
namespace ForumSystem.Web.Controllers
{
using System;
using System.Linq;
using System.Web.Mvc;
using ForumSystem.Data.Common.Repository;
using ForumSystem.Data.Models;
using ForumSystem.Web.ViewModels.Feedbacks;
using Microsoft.AspNet.Identity;
public class FeedbackController : Control... |
using System.Windows.Input;
using Syncfusion.ListView.XForms;
using Xamarin.Forms;
using ItemTappedEventArgs = Syncfusion.ListView.XForms.ItemTappedEventArgs;
namespace ShoppingCart.Behaviors
{
/// <summary>
/// This class extends the behavior of the SfListView to invoke a command when an event occurs.
//... |
namespace Abp.TestBase.SampleApplication
{
public static class SampleApplicationConsts
{
public const string LocalizationSourceName = "SampleApplication";
}
} |
namespace Epi.DataPersistence.Constants
{
public struct RecordStatus
{
public const int PhysicalDelete = int.MinValue;
public const int RecoverLastRecordVersion = -2;
public const int New = -1;
public const int Deleted = 0;
public const int InProcess = 1;
public const int Saved = ... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KeyforgeDownloader
{
/// <summary>
/// Utilities for formatting console input/output
/// </summary>
static class ConsoleHelper
{
/// <summary>
/// Print an exceptio... |
namespace KsWare.Presentation.Testing {
public class TestBase {
public virtual void TestInitialize() { }
public virtual void TestCleanup() { }
}
public class TestBase<TSubject>:TestBase {
}
}
|
using System;
using System.Diagnostics;
namespace Testing.TestClasses
{
public class ShimMe
{
public ShimMe()
{
var text = "Constructor";
//Debug.WriteLine(text);
}
public ShimMe(string parameter)
{
var text = $"Constructor: {paramet... |
namespace PiaSharp.Core.Objects
{
public class PaletteCluster
{
public int First { get; }
public int Second { get; }
public int Length { get; }
public PaletteCluster(int first)
{
First = first;
Second = int.MaxValue;
Length = 1;
... |
using System.Drawing;
namespace RicardoGaefke.QrCode
{
public interface ICode
{
Bitmap GetImage(string link);
}
}
|
using Newtonsoft.Json;
namespace PddOpenSdk.Models.Response.Voucher
{
public partial class AddVoucherVirtualCardBatchResponseModel : PddResponseModel
{
/// <summary>
/// 响应体
/// </summary>
[JsonProperty("response")]
public ResponseResponseModel Response { get; set; }
... |
using System;
namespace MyLab3
{
public class Reader
{
public virtual int reader_id { get; set; }
public virtual string ReaderName { get; set; }
public virtual string ReaderAddress { get; set; }
public virtual DateTime ReaderDob { get; set; }
}
public c... |
using System;
using System.Collections.Generic;
namespace CnGalWebSite.DataModel.ExamineModel
{
public class EntryImages
{
public List<EntryImage> Images { get; set; }
}
public class EntryImage
{
public string Url { get; set; }
public string Note { get; set; }
pu... |
using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace Supreme.Forms
{
public partial class FormKeyDetect : Form
{
public IContract contrato { get; set; }
public FormKeyDetect()
{
InitializeComponent();
TopMost = true;
... |
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC;
namespace BestHTTP.SecureProtocol.Org.BouncyCast... |
namespace BallsGame.Models.Balls {
[System.Serializable]
public class BallSetup {
public SpeedRange speed;
public DamageRange damage;
public SizeRange size;
public PriceRange price;
}
[System.Serializable]
public class SpeedRange {
public float min = 1;
public float max = 2;
public float acclera... |
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Text;
namespace Gameye.Sdk
{
public class StatisticsStore
{
private StatisticsState statisticsState;
/// <summary>
/// Triggered when a statistics subsciption receieves new events
/// </su... |
using GalaSoft.MvvmLight.Messaging;
using SIL.Cog.Domain;
namespace SIL.Cog.Application.ViewModels
{
public class PerformingComparisonMessage : MessageBase
{
private readonly VarietyPair _varietyPair;
public PerformingComparisonMessage(VarietyPair varietyPair = null)
{
_varietyPair = varietyPair;
}
p... |
// <auto-generated> This file has been auto generated by EF Core Power Tools. </auto-generated>
using Microsoft.EntityFrameworkCore.Metadata.Builders;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore;
using System;
using VRT.Resume.Domain.Entities;
using VRT.Resume.Persistence.Data;
#... |
using System.Threading.Tasks;
using Apocryph.Dao.Bot.Message;
using Apocryph.Dao.Bot.Tests.Fixtures;
using Apocryph.Dao.Bot.Validators;
using FluentAssertions;
using FluentValidation.TestHelper;
using Nethereum.Web3;
using NUnit.Framework;
namespace Apocryph.Dao.Bot.Tests.Validators
{
[TestFixture]
public cla... |
using System;
using Wisej.Web;
using MvvmFx.Bindings.Data;
using MvvmFx.Bindings.Input;
//using BoundCommand = MvvmFx.Bindings.Input.BoundCommand;
//using Binding = MvvmFx.Bindings.Data.Binding;
namespace EventBinding.WisejWeb
{
public partial class MainForm : Form
{
private BoundCommand _saveCommandB... |
using CRM.Common.Models;
using System;
using System.Collections.Generic;
using System.Text;
namespace CRM.Common.Interfaces
{
public interface ICRMRepository
{
IEnumerable<ClientType> GetClientTypes();
void AddClient(Client client);
Client GetClientById(string Id);
IEnumerab... |
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using log4net;
namespace DSIS.Utils
{
public class Disposables : IDisposable
{
private readonly List<IDisposable> myDisposables = new List<IDisposable>();
private static readonly ILog LOG = LogManager.GetLogger(typeof(Di... |
using InfixExpressionCalculator.Library;
Console.WriteLine("When done, enter 'exit' to quit the calculator.");
while (true)
{
string output;
try
{
Console.Write("Enter an infix expression: ");
string input = Console.ReadLine();
if (input.ToLower().Equals("exit"))
break;
output = Calculator.EvaluateInf... |
using Wyam.Common.Execution;
using Wyam.Common.Modules;
using Wyam.Core.Modules.IO;
namespace Wyam.Web.Pipelines
{
/// <summary>
/// Processes any Sass stylesheets and outputs the resulting CSS files.
/// </summary>
public class Sass : Pipeline
{
/// <summary>
/// Create the pipelin... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Komaci.Core.Util
{
internal static class ErrorMessages
{
internal static readonly string LoopsNotAllowed = "loops are not allowed";
internal static readonly string Ver... |
#if LEGACY
using Excel;
#endif
namespace ExcelDataReader.Portable.Core.BinaryFormat
{
/// <summary>
/// Represents Dimensions of worksheet
/// </summary>
internal class XlsBiffDimensions : XlsBiffRecord
{
private bool isV8 = true;
internal XlsBiffDimensions(byte[] bytes, uint offset, ExcelBinaryReader reader)... |
using System;
namespace Aggregates.Exceptions
{
/// <summary>
/// Used by conflict resolvers to indicate that the resolution has failed and the command needs to be retried
/// </summary>
public class AbandonConflictException :Exception
{
public AbandonConflictException() { }
public... |
using System.Runtime.CompilerServices;
using Xunit;
namespace Snapper.Tests
{
public class SnapperInlineSnapshotTests
{
[Fact]
[MethodImpl(MethodImplOptions.NoInlining)]
public void SnapshotsMatch_PassInObject()
{
var snapshot = new
{
Test... |
using System.ComponentModel;
namespace LinqAn.Google.Metrics
{
/// <summary>
/// The number of AdSense ads viewed. Multiple ads can be displayed within an Ad Unit.
/// </summary>
[Description("The number of AdSense ads viewed. Multiple ads can be displayed within an Ad Unit.")]
public class AdsenseAdsViewed: Met... |
namespace AwgTestFramework
{
public partial class CPi70KCmds
{
// glennj 7/23/2013
/// <summary>
/// Using GPIBUsb:SETADDress set the address of the GPIB adapter device<para>
/// Note: Set command differs from Query, uses SETADDress instead of ADDress@n</para>
/// </sum... |
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Panoukos41.Helpers.Services
{
public partial class PermissionsService : IPermissionsService
{
private Task<bool> PlatformHasPermission(string permission) =>
throw new PlatformNotSupportedException(".Net... |
using MelonLoader;
namespace Bitzophrenia
{
namespace Actions
{
public class KillSpaceMonkey : Bitzophrenia.Actions.AbstractAction
{
private Bitzophrenia.Twitch.TwitchIRCClient ircClient;
public KillSpaceMonkey(Bitzophrenia.Phasma.Global phasmophobia, Bitzophrenia.Twitch.TwitchIRCClient withIRCClient)
... |
using System;
namespace Game.Online
{
[Serializable]
public class Player
{
public string Username { get; }
public uint Id { get; } //TODO: List of players in ConnProvider;
public bool IsLocal { get; }
public Player(string username, uint id, bool isLocal)
{
... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Ceras.ImmutableCollections
{
using System.Collections.Immutable;
using Formatters;
using Resolvers;
public sealed class ImmutableCollectionFormatterResolver : IFormatterResolver
{
readonly Dictionary<Type, Type> _typeToFormatterType ... |
namespace Nest
{
public partial interface INodesInfoRequest { }
public partial class NodesInfoRequest { }
[DescriptorFor("NodesInfo")]
public partial class NodesInfoDescriptor { }
}
|
using Logshark.Config;
using System;
namespace Logshark.RequestModel.Config
{
/// <summary>
/// Contains configuration information for various Logshark Local MongoDB options.
/// </summary>
public class LogsharkLocalMongoOptions
{
public bool AlwaysUseLocalMongo { get; protected set; }
... |
using System.Threading.Tasks;
using FakeItEasy;
using MailCheck.Common.Contracts.Messaging;
using MailCheck.Common.Messaging.Abstractions;
using MailCheck.Spf.Contracts.Entity;
using MailCheck.Spf.Contracts.Scheduler;
using MailCheck.Spf.Scheduler.Config;
using MailCheck.Spf.Scheduler.Dao;
using MailCheck.Spf.Schedule... |
using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
namespace JabbR_Core.Data.Models
{
public partial class JabbrContext : IdentityDbContext<ChatUser>
{
public JabbrContext(DbContextOptions<JabbrConte... |
namespace WebApi.Models
{
public class PetItem
{
public int Id { get; set; }
public string Nome { get; set; }
public string Raca { get; set; }
public string Tipo { get; set; }
public string Porte { get; set; }
public string Alergias { get; set; }
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Mono.Cecil;
using NUnit.Framework;
namespace NRoles.Engine.Test {
public abstract class AssemblyReadonlyFixture {
static AssemblyAccessor _assembly = new AssemblyAccessor();
static AssemblyReadonlyFixture... |
namespace InputDevicesSimulator.Native
{
internal enum KeyboardMessages
{
WM_KEYDOWN = 0x0100,
WM_KEYUP = 0x0101,
WM_SYSKEYDOWN = 0x0104,
WM_SYSKEYUP = 0x0105
}
}
|
using AdminWebsite.AcceptanceTests.Helpers;
using FluentAssertions;
using TechTalk.SpecFlow;
namespace AdminWebsite.AcceptanceTests.Steps
{
[Binding]
public class TestHelperSteps
{
private readonly TestContext _c;
private readonly QuestionnaireSteps _questionnaireSteps;
public Tes... |
namespace AgileObjects.AgileMapper.UnitTests.SimpleTypeConversion
{
using System;
using Common;
using TestClasses;
#if !NET35
using Xunit;
#else
using Fact = NUnit.Framework.TestAttribute;
[NUnit.Framework.TestFixture]
#endif
public class WhenConvertingToDateTimes
{
[Fact]
... |
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NSubstitute;
using Stripe.Client.Sdk.Clients;
using Stripe.Client.Sdk.Clients.Subscriptions;
using Stripe.Client.Sdk.Models;
using Stripe.Client.Sdk.Models.Arguments;
using Stripe.Client.Sdk.Models.Filters;
using System.Threading;
using ... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Rca.EzoDeviceLib.Specific.Ph
{
public enum CalPoint
{
/// <summary>
/// Midrage calibration point.
/// Default value is 7.00 pH
/// </summary>
M... |
using System.Text.Json.Serialization;
namespace Essensoft.Paylink.Alipay.Domain
{
/// <summary>
/// InvoiceElementStatusSyncOpenModel Data Structure.
/// </summary>
public class InvoiceElementStatusSyncOpenModel : AlipayObject
{
/// <summary>
/// 同步申请id,每次发起同步时生成,isv每次请求需要保证唯一
... |
namespace Weikio.ApiFramework.SDK.DatabasePlugin.CodeGeneration
{
public class DtoBase
{
public object this[string propertyName]
{
get { return GetType().GetProperty(propertyName).GetValue(this, null); }
set { GetType().GetProperty(propertyName).SetValue(this, value, null... |
using AllOverIt.Assertion;
using AllOverIt.Evaluator.Variables.Extensions;
using System;
namespace AllOverIt.Evaluator.Variables
{
/// <summary>A delegate based variable that is re-evaluated each time the <see cref="Value"/> is read.</summary>
/// <remarks>For a delegate based variable that is only evaluated t... |
//
// ShipController.cs
// Midnight Blue
//
// --------------------------------------------------------------
//
// Created by Jacob Milligan on 4/10/2016.
// Copyright (c) Jacob Milligan All rights reserved
//
using System;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsof... |
// Decompiled with JetBrains decompiler
// Type: BlueStacks.BlueStacksUI.AppRecommendationSection
// Assembly: Bluestacks, Version=4.250.0.1070, Culture=neutral, PublicKeyToken=null
// MVID: 99F027F6-79F1-4BCA-896C-81F7B404BE8F
// Assembly location: C:\Program Files\BlueStacks\Bluestacks.exe
using Newtonsoft.Json;
us... |
using System.Collections.Generic;
namespace Autodash.Core.UI.Models
{
public class ProjectsVm
{
public List<ProjectSuiteRunVm> Projects { get; set; }
}
public class ProjectSuiteRunVm
{
public Project Project { get; set; }
public List<ProjectSuiteRunDetail> SuiteRuns { get;... |
using System;
using TopAct.Domain.Contracts;
namespace TopAct.Domain.Commanding
{
public record DeleteContactCommand(Guid ContactId) : CommandBase;
}
|
using System.Collections.Generic;
namespace ColladaSharp.Models
{
public partial class PrimitiveData
{
public bool HasSkinning => _utilizedBones == null ? false : _utilizedBones.Length > 0;
public List<IDataBuffer> Buffers { get => _buffers; set => _buffers = value; }
public InfluenceD... |
using System;
namespace VsCodeProOne.Patterns.CompositeEntityPattern
{
public static class CompositeEntityPatternDemo
{
public static void Run()
{
Console.WriteLine("组合实体模式测试...");
var client = new Client();
client.SetData("Test", "John");
client... |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnosti... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.