content stringlengths 23 1.05M |
|---|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zadaca_nagradna
{
class Program
{
static void Main(string[] args)
{
List<Ucenik> listaUcenika = new List<Ucenik>
{
new Ucenik("I... |
#region Using
using System.Collections.Generic;
using Sandbox.Common;
using Sandbox.Game.Entities;
using Sandbox.Game.Multiplayer;
using VRage.Generics;
using VRageMath;
using VRage.Game.Components;
using Sandbox.Engine.Multiplayer;
using Sandbox.Game.World;
using VRage.Network;
#endregion
namespace Sandbox.Game
{... |
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
using YiSA.Markup.Common;
namespace YiSA.Markup.Converters
{
/// <summary>
/// Boolから任意の型にデータを変換します。
/// </summary>
public class BoolToAnyConverter : IValueConverter
{
public object True { get; set; ... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class cameraMove : MonoBehaviour
{
public Transform player;
public float speed;
void FixedUpdate()
{
transform.position = new Vector3(player.position.x, player.position.y, transform.position.z);
if... |
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DotNetAsyncExamples.BruteForce.Server
{
public class ServerConfig : ConfigurationSection
{
#region Constants
private const string UserNameP... |
using Scripts.UI;
using UnityEngine;
namespace Scripts.UI
{
public class HideableElement : MonoBehaviour
{
CanvasGroup canvasGroup;
Menu menu;
void OnEnable()
{
canvasGroup = GetComponent<CanvasGroup>();
menu = GetComponent<Menu>();
}
p... |
namespace ViennaNET.Orm.Seedwork
{
/// <summary>
/// Интерфейс-маркер сущности доменной модели. Сущности должны реализовывать <see cref="IEntityKey{TKey}"/>.
/// </summary>
/// <remarks>Используется для ограничений в объявлениях методов (где нельзя использовать generic-интерфейс)</remarks>
public interface I... |
using Corpo.Skeleton.Features.Categories;
namespace Corpo.Skeleton.Tests.Features.Categories;
public class CategoryShowTest : FeatureTest
{
[Test]
public async Task Can_show_categories()
{
// arrange
var category = _.MakeSaving<Category>();
// act
var response ... |
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
namespace Cle.Compiler.UnitTests
{
public class TestingSourceFileProvider : ISourceFileProvider
{
private readonly Dictionary<string, List<string>> _moduleFiles = new Dictionary<string, List<string>>();
p... |
using CodeComposerLib.Irony.Semantic.Command;
using CodeComposerLib.Irony.Semantic.Expression;
using CodeComposerLib.Irony.Semantic.Expression.Basic;
using CodeComposerLib.Irony.Semantic.Expression.ValueAccess;
namespace GMac.Engine.Compiler.Semantic.ASTInterpreter.HighLevel
{
internal static class HlUtils
{
... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Kanyon.Core
{
public interface IPolicy
{
void Evaluate(IManifestObject manifestObject, Dictionary<string, string> configuration);
}
}
|
using System.IO;
using System.Xml.Serialization;
using StartTileBackgroundColor.Data;
namespace StartTileBackgroundColor {
public class StartLayoutEditor {
private readonly XmlSerializer serializer = new XmlSerializer(typeof(LayoutModificationTemplate));
public LayoutModificationTempl... |
using Abstraction.Models;
using System.Threading.Tasks;
namespace Abstraction.Repositories
{
public interface ISignInRepository
{
public Task<ApplicationUser?> SignIn(string credential, string password);
public Task SignOut();
}
}
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using System.Windows.Forms;
using RE = System.Text.RegularExpressions;
namespace WLW.Twitter.Bitly.Plugin
{
p... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Reflection;
namespace SharpRaven.Utilities {
public static class SystemUtil {
/// <summary>
/// Return all loaded modules.
/// </summary>
/// <returns></returns>
public static... |
@using Microsoft.AspNetCore.Mvc.Localization
@{
/* Localization: This view is using the IViewLocalizer which is based on the IHtmlLocalizer which will prevent
Razor from HTML encoding the localized strings inside the html markup. By default the resources will be
looked fo... |
using LightInject;
using SnotelService.Interfaces;
using SnotelService.Implementations;
namespace SnotelService
{
public class IocRegistration : ICompositionRoot
{
public void Compose(IServiceRegistry serviceRegistry)
{
serviceRegistry.RegisterSingleton<ISnotelWebClient, ... |
using System;
using Logging;
namespace InputSystem {
public class InputLock : IInputLock {
public event Action InputLockAcquired;
public event Action InputLockReleased;
public bool IsLocked {
get {
lock (this) {
return _owner != null;
... |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Windows.Input;
using OpenNetMeter.Models;
using OpenNetMeter.ViewModels.DataUsageDetailedPagesVM;
namespac... |
using System;
using System.IO;
using Topshelf;
namespace XmlDB_Service
{
class Program
{
static void Main(string[] args)
{
var exitCode = HostFactory.Run(x =>
{
Directory.SetCurrentDirectory(System.AppDomain.CurrentDomain.BaseDirectory);
... |
using FMOD;
namespace SupersonicSound.Exceptions
{
public class FmodSubsoundsException
: FmodException
{
public FmodSubsoundsException()
: base(RESULT.ERR_SUBSOUNDS)
{
}
}
public class FmodSubsoundAllocatedException
: FmodException
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SocialNetwork.Data.Common
{
public interface IRepository<T>
where T : class
{
IEnumerable<T> All(); // ne e nai dobria variant da vzimame vsichko na kup ot bazata
... |
using UnityEngine;
using System.Collections;
using UnityEngine.Audio;
using Cysharp.Threading.Tasks;
#nullable enable
namespace TSKT.MusicManagers
{
public readonly struct State
{
public readonly MusicManager player;
public readonly Music? currentMusic;
public readonly float position;
... |
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Zxw.Framework.NetCore.Models;
namespace Zxw.Framework.Website.Models
{
[Serializable]
public class TutorClassType:IBaseModel<int>
{
[Key]
[Column("TutorClassTypeId")]
... |
using EdutonPetrpku.Data;
using EdutonPetrpku.Shared;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace EdutonPetrpku... |
using Android.Content;
using Android.Views;
using Android.Widget;
using AndroidViewAnimations;
using AndroidSwipeLayout;
using AndroidSwipeLayout.Adapters;
namespace AndroidSwipeLayoutSample.Adapters
{
public class ListViewAdapter : BaseSwipeAdapter
{
private Context context;
public ListViewAdapter (Context co... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using AutoMapper;
using Conduit.Domain;
using Conduit.Infrastructure;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace Conduit.Features.Users
{
public class AllList
{
p... |
using Microsoft.Extensions.Caching.Distributed;
using Microsoft.Extensions.Caching.StackExchangeRedis;
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Logging;
using System;
using System.Text;
using Microsoft.Extensions.Options;
namespace Microsoft.UsEduCsu.Saas.Services
{
public class CacheHel... |
using System;
using System.Collections.Generic;
using System.Text;
namespace ChromeRemoteSharp.ConsoleDomain
{
public partial class ConsoleDomain : BaseDomain
{
/// <summary>
/// This domain is deprecated - use Runtime or Log instead.
/// <see cref="https://chromedevtools.github.io/devt... |
using System;
using System.Collections.Generic;
using System.Text;
namespace Rinsen.DatabaseInstaller.Tests
{
public static class TestHelper
{
public static InstallerOptions GetInstallerOptions()
{
return new InstallerOptions
{
ConnectionString = string.... |
using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using Swashbuckle.Swagger.Annotations;
namespace ApiTestServer.Controllers
{
/// <summary>
/// Misc operations
/// </summary>
[RoutePrefix("api/misc")]
public class MiscController : ApiController
{... |
@*
//**********************************************************************************
//* テンプレート
//**********************************************************************************
// 以下のLicenseに従い、このProjectをTemplateとして使用可能です。Release時にCopyright表示してSublicenseして下さい。
// https://github.com/OpenTour... |
using Refit;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
namespace Camunda.Api.Client.History
{
internal interface IHistoricJobLogRestService
{
[Get("/history/job-log/{id}")]
Task<HistoricJobLog> Get(string id);
[Post("/history/job-log")]
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using DasContract.Editor.Entities.Processes.Factories.Exceptions;
using DasContract.Editor.Entities.Processes.Process;
using DasContract.Editor.Entities.Processes.Process.Activities;
using DasContract.Editor.En... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RoomTemplates : MonoBehaviour
{
public GameObject[] bottomRooms;
public GameObject[] topRooms;
public GameObject[] leftRooms;
public GameObject[] rightRooms;
public GameObject closedRoom;
public L... |
@{
ViewBag.Title = "About";
}
<h2>Sobre</h2>
<p>Agenda de contatos desenvolvida em .Net para a disciplina "Desenvolvimento Web".</p> |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using S... |
// Copyright (c) Duende Software. All rights reserved.
// See LICENSE in the project root for license information.
using Duende.IdentityServer.Models;
namespace DuendeIdentity.Pages.Error;
public class ViewModel
{
public ViewModel()
{
}
public ViewModel(string error)
{
Error = new Error... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotionProfile.Spline
{
class ControlPointSegment
{
public List<SplinePoint> points = new List<SplinePoint>();
public int PathNum;
public float velocity;
}
... |
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Telegram.Bot;
namespace Common.WebApiCore.Controllers
{
/// <summary>
/// This controller is for managing bot
/// </summary>
[Route("Account")]
public class AccountController : ControllerBase
{... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace KeyCrawler
{
public enum UpgradeKind
{
levelUp
}
public class UpgradeItem : Item
{
public KeyFunction KeyFunction;
public UpgradeKind upgradeKind;
private void Start()
... |
#region Apache License
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to you under the Apache License, Version 2.... |
using System.Threading.Tasks;
using Evlog.Domain.EventAggregate;
namespace Evlog.Domain.EventAggregate.Queries
{
public interface IEventQuery
{
Task<EventPost> QueryAsync(string slug);
}
}
|
using Brilliancy.Soccer.Common.Dtos.Configuration;
namespace Brilliancy.Soccer.Common.Contracts.Providers
{
public interface IFtpClientFactory
{
IFtpClient CreateFtpClient(ConfigurationDto dto);
}
}
|
using System;
using SyncTool.Cli.Output;
namespace SyncTool.Cli.Commands
{
public abstract class CommandBase
{
public IOutputWriter OutputWriter { get; }
protected CommandBase(IOutputWriter outputWriter)
{
OutputWriter = outputWriter ?? throw new ArgumentNullExcep... |
using System.Diagnostics.CodeAnalysis;
using System.Dynamic;
using System.IO;
using System.Text.RegularExpressions;
namespace Sudoku.Bot.Resources
{
/// <summary>
/// Indicates the text resources getter.
/// </summary>
internal sealed class TextResources : DynamicObject
{
/// <summary>
/// Indicates the sing... |
@{
ViewBag.Title = "Home Page";
}
<div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="~/Images/IIUIslider01.PNG" alt="First slide">
... |
using System;
using System.Collections.Generic;
using Microsoft.Maui.Controls;
using Microsoft.Maui.Controls.Core.UnitTests;
using NUnit.Framework;
namespace Microsoft.Maui.Controls.Xaml.UnitTests
{
public abstract class Gh3260MyGLayout<T> : Controls.Compatibility.Layout<T> where T : View
{
protected override void... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace BookStoreAdmin.Filters
{
public class CustomAuthAttribute : AuthorizeAttribute
{
protected override bool AuthorizeCore(HttpContextBase httpContext)
{
return httpCon... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;
using UnityEditor;
using UnityEngine.UI;
public class SnapItem : MonoBehaviour
{
public TMP_Text snapItemText;
[SerializeField]
private Pushpin snapshot;
public GameObject pinButton;
public GameObject dele... |
namespace Voltcode.AkkaNetPersistenceSamples.Accounting.Messages
{
public class MessageQueued<T>
{
public MessageQueued(T message)
{
Message = message;
}
public T Message { get; }
}
}
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using Photon;
public class SetSkillR : Photon.MonoBehaviour
{
public Toggle R1;
public Toggle R1a;
public Toggle R1b;
public Toggle R2;
public Toggle R2a;
public Toggle R2b;
public Toggle R... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using ColorType = ColorController.ColorType;
public class InteractWall : MonoBehaviour
{
[SerializeField] private ColorType colorName = ColorType.NoColor;
private Collider playerCollider;
private bool isInteracting;
privat... |
using Canducci.GraphQLQuery.Interfaces;
namespace Canducci.GraphQLQuery
{
public sealed class QueryType : IQueryType
{
public string Name { get; } = null;
public string Alias { get; } = null;
public Fields Fields { get; } = null;
public Arguments Arguments { get; } = null;
public Fr... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using DemoSolidCli.CommandLineParser;
using DemoSolidCli.Domain;
using DemoSolidCli.Domain.Contracts;
using NUnit.Framework;
namespace DemoSolidCli.Tests
{
[TestFixture]
public class CommandParserTests
{
[Test]
... |
using System.Linq;
using System.Security.Claims;
using System.Security.Principal;
namespace Pygma.Services.Users.Extensions
{
public static class IdentityExtensions
{
public static string GetEmail(this IIdentity identity)
{
var claimsIdentity = identity as ClaimsIdentity;
... |
using UnityEngine;
using System.Collections;
public class DrawIconTest : MonoBehaviour {
void OnDrawGizmos()
{
Gizmos.DrawIcon(transform.position, "ExampleAsset Icon.jpg", true);
}
}
|
using System;
using System.Web.Mvc;
using System.ComponentModel.DataAnnotations;
using Kesco.DataAccess;
using BLToolkit.Reflection;
namespace Kesco.Persons.Controls.ComponentModel
{
public class DropDownAttribute : UIHintAttribute, IMetadataAware
{
public const string AdditionalValuesKey = "DropDown";
/// <su... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.DesignScript.Runtime;
namespace SpeckleDynamo.Functions
{
/// <summary>
/// AssociativeNodes do not support objects, this is a dirty workaround to pass data from
/// this project to... |
private void button1_Click(System.Object sender, System.EventArgs e)
{
ServiceReference1.Service1Client client = new
ServiceReference1.Service1Client();
string returnString;
returnString = client.GetData(textBox1.Text);
label1.Text = retur... |
using CuttingEdge.Conditions;
using VDS.RDF;
namespace ZimmerBot.Core.ConfigParser
{
public class RdfZPropertyValue : RdfValue
{
public string Name { get; protected set; }
public RdfZPropertyValue(string name)
{
Condition.Requires(name, nameof(name)).IsNotNullOrEmpty();
Name =... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Water_Overflow // !!!!!!!!!
{
class Program
{
static void Main(string[] args)
{
byte n = byte.Parse(Console.ReadLine());
byte sum = 0;
... |
// Copyright 2018 yinyue200.com
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agre... |
namespace MR.QueryBuilder.Metadata
{
public static class MetadataService
{
private static DefaultMetadataService _instance;
static MetadataService()
{
_instance = new DefaultMetadataService();
}
public static DefaultMetadataService Default => _instance;
}
}
|
using System;
using System.Linq.Expressions;
using NSubstitute;
using TestStack.Seleno.PageObjects.Actions;
using TestStack.Seleno.Tests.TestObjects;
using FluentAssertions;
namespace TestStack.Seleno.Tests.Configuration.SelenoApplication
{
class When_navigating_to_mvc_controller : SelenoApplicationSpeci... |
using SGS.Framework.FunK;
using System;
using System.Linq.Expressions;
namespace FPKatas.Validations
{
using static F;
public static class Guard
{
public static Maybe<T> NotNull<T>(object value)
{
if (value is null)
{
return Nothing;
}
... |
using SFeed.Core.Models.Follower;
using System.Collections.Generic;
namespace SFeed.Core.Infrastructure.Caching
{
public interface IFollowerCacheRepository
{
void FollowUser(string userId, string followerId);
void UnfollowUser(string userId, string followerId);
void FollowGroup(string ... |
using System;
using System.Collections.Generic;
using System.Text;
namespace EncryptionModule.Test.TestClasses
{
class PersonWithCustomConfig : Person
{
protected override Configuration GetConfiguration()
{
return new Configuration("Test123", 128, 128, 500);
}
}
}
|
using System;
using System.IO;
using System.Text;
using System.Xml.Linq;
namespace Gloson.Xml.Linq {
//---------------------------------------------------------------------------
//
/// <summary>
/// XDocument extensions
/// </summary>
//
//--------------------------------------------------------------... |
// ------------------------------------------------------------------------------
// <autogenerated>
// This code was generated by a tool.
// Mono Runtime Version: 4.0.30319.1
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </autogenerat... |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SharePointPnP.DeveloperTools.VisualStudio.Helpers
{
public static class TypeHelper
{
public static T GetPropertyValue<T>(this object source, string propertyName... |
using System.Collections.Generic;
using CefSharp;
namespace AgileBrowser
{
public class SimpleClass
{
public IJavascriptCallback Callback { get; set; }
public string TestString { get; set; }
public IList<SimpleSubClass> SubClasses { get; set; }
}
}
|
namespace OtobüsBiletRezarvasyon.Formlar
{
public partial class FrmRapor : DevExpress.XtraEditors.XtraForm
{
public FrmRapor()
{
InitializeComponent();
}
}
} |
// Copyright 2015-2020 Serilog Contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law o... |
using System.Collections.Generic;
using GhostGen;
using UnityEngine;
using UnityEngine.SceneManagement;
public class TriggerSystem : NotificationDispatcher, IGameSystem
{
private List<Trigger> _triggerList;
// For quick lookup
private HashSet<Trigger> _triggerSet;
public int prio... |
using Fiddler;
namespace RequestObfuscator.Api.Parameters
{
internal abstract class Parameter
{
internal abstract Session Transform(Session session);
internal abstract bool IsMet(Session session);
}
}
|
using System;
using System.Drawing;
using System.Windows.Forms;
namespace minesweeper.net
{
public partial class Custom : Form
{
public Point localLocation;
public Custom()
{
InitializeComponent();
}
private void Custom_Load(object s... |
// Copyright (c) 2019 Jon P Smith, GitHub: JonPSmith, web: http://www.thereformedprogrammer.net/
// Licensed under MIT license. See License.txt in the project root for license information.
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using GenericEventRunner.DomainParts;
[assembly: I... |
using Midi;
using Midi.Devices;
using System;
using System.Collections.Generic;
namespace Launchpad.Devices
{
public interface ILaunchpadDevice
{
ILaunchpadButton this[int x, int y] { get; }
IEnumerable<ILaunchpadButton> Buttons { get; }
bool DoubleBuffered { get; set; }
bool ... |
namespace Proligence.Orchard.Testing.Mocks
{
using System;
using System.Collections.Generic;
using Moq;
using global::Orchard;
using global::Orchard.Security;
using global::Orchard.Settings;
public class WorkContextMock : WorkContext
{
private readonly Dictionary<string, object>... |
using Microsoft.Crm.Sdk.Messages;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Tooling.Connector;
using System;
namespace PowerApps.Samples
{
public partial class SampleProgram
{
// TODO Define some class members
public static Guid _vanId;
public static Guid _groupId;
public st... |
//
// Copyright 2019 Google LLC
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Ver... |
using DailyPoetryX.Services;
using System.Threading.Tasks;
using TabbedTemplate.Models;
using TabbedTemplate.Views;
using Xamarin.Forms;
namespace TabbedTemplate.Services
{
/// <summary>
/// 内容页导航服务。
/// </summary>
public class ContentNavigationService : IContentNavigationService
{
// ****... |
/******************************************************************************
* Spine Runtimes Software License v2.5
*
* Copyright (c) 2013-2016, Esoteric Software
* All rights reserved.
*
* You are granted a perpetual, non-exclusive, non-sublicensable, and
* non-transferable license to use, install, execute, ... |
namespace Manufaktura.Controls.Model.Assertions
{
public class SafetySettings
{
public bool AllowBindingToMultipleControls { get; set; }
public object BoundControl { get; set; }
}
} |
using UnityEngine;
#if WINDOWS_UWP
using DSLink.Nodes;
#endif
namespace DSHoloLens
{
public class LightSwitch : ConnectedObject
{
public GameObject LightSwitchButton;
public bool State;
private bool needsRotate;
#if WINDOWS_UWP
private Node stateNode;
#endif
public ov... |
using System;
using System.Collections.Generic;
namespace Akeneo.Model
{
public class Product : ModelBase
{
/// <summary>
/// Product identifier, i.e. the value of the only `pim_catalog_identifier` attribute
/// </summary>
public string Identifier { get; set; }
/// <summary>
/// Whether the product i... |
using MessagePack;
namespace Milvaneth.Common
{
[MessagePackObject]
public class ApiConfig
{
[Key(0)]
public string[] Endpoints;
[Key(1)]
public string Prefix;
[Key(2)]
public string Mime;
}
}
|
namespace Machete.X12Schema.V5010.Maps
{
using X12;
using X12.Configuration;
using X12.Values.Converters;
public class LDTMap :
X12SegmentMap<LDT, X12Entity>
{
public LDTMap()
{
Id = "LDT";
Name = "Lead Time";
Value(x => x.Le... |
using System;
using System.Collections.Generic;
// Intermediate format added to follow the Forge-Convert-Utils logic
// Not used for now
// The Unity loader import from the ISvfContent
namespace PiroCIE.IMF
{
public abstract class IScene
{
public abstract IMetadata getMetadata();
public abstr... |
using System.Collections;
using System.Xml;
namespace ZYCommon
{
public class StringDataFormat
{
private ArrayList myItems = new ArrayList();
private string strLastTestResult = null;
public string LastTestResult => strLastTestResult;
public ArrayList Items => myItems;
public StringDataFormatItem this[i... |
using System;
using System.Collections.Generic;
using UnityEngine;
namespace PmxLib
{
// Token: 0x02000040 RID: 64
public class VmdLight : VmdFrameBase, IBytesConvert, ICloneable
{
// Token: 0x170000AC RID: 172
// (get) Token: 0x0600034C RID: 844 RVA: 0x00017C98 File Offset: 0x00015E98
public int ByteCount
... |
<form action="/types/new" method="post">
<label for="animal_type">Animal Type</label>
<input id="animal_type" name="animal_type" type="text">
<button type="submit">Add</button>
</form>
|
using Daridakr.ProgGuru.Entities.Base;
using JetBrains.Annotations;
using System;
namespace Daridakr.ProgGuru.Entities.Users.Skills
{
/// <summary>
/// Common user skill.
/// </summary>
public class UserCommonSkill : UserSkillEntity
{
/* CreatorId, Name */
/******* Initialization ... |
using System;
// ReSharper disable InconsistentNaming
namespace Feature.Labels
{
/// <summary>
///
/// </summary>
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class LabelAttribute : Attribute
{
/// <summary>
/// Indicates that the annotated class is a Label ViewModel.
... |
using Discord;
using Discord.Interactions;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NiallVR.Shared.Hosting.Hosting;
namespace NiallVR.Shared.Discord.Hosting.Services;
/// <summary>
/// Bridges the Discord.Net and Microsoft logging systems.
///... |
using System;
using System.Runtime.InteropServices;
namespace LiveSplit.ApeOut {
[StructLayout(LayoutKind.Explicit, Size = 8, Pack = 1)]
public struct Vector2 {
public static Vector2 ZERO = new Vector2() { X = 0, Y = 0 };
public static Vector2 INVALID = new Vector2() { X = float.MinValue, Y = f... |
using System.Collections.Generic;
using Com.Ericmas001.Diagrams.Demo.ViewModels.Interfaces;
using Com.Ericmas001.Diagrams.Models;
using Com.Ericmas001.Diagrams.Models.Interfaces;
using Com.Ericmas001.Diagrams.Xaml.Models;
using Com.Ericmas001.Diagrams.Xaml.ViewModels;
using GalaSoft.MvvmLight.CommandWpf;
namespace Co... |
namespace Param_RootNamespace
{
public sealed partial class App : PrismUnityApplication
{
//^^
//{[{
private LaunchActivatedEventArgs _lastActivationArgs;
//}]}
public App()
{
}
protected override void ConfigureContainer()
{
var identit... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.