Dataset Viewer
Auto-converted to Parquet Duplicate
text
stringlengths
13
6.01M
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Hoofdstuk_7_Facade { public class Projector { public void On() { Console.WriteLine("Projector has turned on"); } public void WideScreenMode...
using System; namespace UnityAtoms.BaseAtoms { /// <summary> /// Event Reference of type `float`. Inherits from `AtomEventReference&lt;float, FloatVariable, FloatEvent, FloatVariableInstancer, FloatEventInstancer&gt;`. /// </summary> [Serializable] public sealed class FloatEventReference : AtomEven...
using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled. // If you have enabled NRTs for your project, then un-comment the following l...
namespace API.Repositories { using System.Collections.Concurrent; using System.Collections.Generic; using API.Models; public class ValueRepository : IValueRepository { private readonly ConcurrentDictionary<int, Value> store = new ConcurrentDictionary<int, Value>(); public IEnumerab...
using System; using System.Collections.Generic; using System.Text; using System.Globalization; using System.Xml.Serialization; using DBDiff.Schema.Model; namespace DBDiff.Schema.Sybase.Model { public class Column : SybaseSchemaBase { private Boolean identity; private string type; privat...
using DrugMgmtSys.codes; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace DrugMgmtSys { public partial class Main : Form ...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MethodsExercise { class Program { static void Main(string[] args) { ////Method One ClassNum Dog = new ClassNum(); //int input1 = 8...
namespace DataLayer { using System; using System.Data; using System.Data.SqlClient; public class TravelManager { public DataSet SearchTravelDetails(string tr_no) { SqlParameter[] parameterArray = new SqlParameter[] { new SqlParameter("@tr_no", tr_no) }; retu...
using System; using System.Collections.Generic; using System.IO; using System.Linq; namespace FileIO { class Program { static void Main(string[] args) { string input = ""; // nuskaityk failą į input kintamąjį FindSportsmenWithLongestFullname(input); FindSpo...
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using AtendimentoProntoSocorro.Data; using AtendimentoProntoSocorro.Models; using AtendimentoProntoSocorro.Repositories; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace AtendimentoProntoSocorro....
#if UNITY_EDITOR using System; using System.Collections; using System.Collections.Generic; using System.Linq; using BP12; using DChild.Gameplay.Objects; using DChild.Gameplay.Objects.Characters.Enemies; using Sirenix.OdinInspector; using UnityEngine; namespace DChildDebug { public class DebugMinionSpawner : Singl...
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace DelftTools.Controls.Swf.Test.Table.TestClasses { public class ClassWithTwoProperties { public string Property1 { get; set; } public string Property2 { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reactive.Linq; using System.Reactive.Subjects; using System.Threading.Tasks; using cyrka.api.common.events; using MongoDB.Driver; using MongoDB.Driver.Linq; namespace cyrka.api.infra.stores.events { public c...
using System; using System.Runtime.InteropServices.ComTypes; using System.Security.Cryptography.X509Certificates; namespace assign_cab301 { class Program { //Create objects of the class that we have written private static MovieCollection movieCollectionObj; private static MemberCollect...
using System; namespace CameraClassTest { public class Program { static void Main(string[] args) { ActionResult result; Console.WriteLine("**************************************************************************************************"); Cons...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using OcTur.Model; namespace OcTur.Control { class ControlePermissaoControl { public List<string> CarregarPapeis() { return new List<string>(); } pub...
using UnityEngine; using System; using System.Collections; using GoogleMobileAds.Api; using GoogleMobileAds.Common; public class GoogleAdController : MonoBehaviour { public static GoogleAdController instance; public int instancesBetweenInterstitialAds = 3; public PhaseDelayedEventScheduler phaseDelayedEventSched...
using UnityEngine; using System.Collections; using System; using System.Security; using System.Security.Permissions; using System.IO; using System.Runtime.Serialization; using stSaveFileInfo = CSaveAndLoadTypes.stSaveFileInfo; [System.Serializable] public sealed class _SALContainer : ISaveAndLoadContainer { #re...
using System; namespace lab2 { interface IPrint { void Print(); } abstract class GeomFigure { public abstract double Area(); } class Rectangle : GeomFigure, IPrint { public double height { get; set; } public double width { get; set; } public...
using System; namespace twpx.Model { class SadminModel { public int id { get; set; } public string username { get; set; } public string password { get; set; } ...
using UnityEngine; /// <summary> /// A GUI control for configuring the solid color shader. /// This class encapsulates the underlying GUI controls /// needed to configure the shader, allowing it to present /// a simplified interface to receive the shader's configuration. /// </summary> public class SolidColorShaderCo...
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using gMediaTools.Services; using gMediaTools.Services.AviSynth; using gMediaTools.Services.AviSynth.VideoSource; namespace gMediaTools.Factories { public class AviSynthSourceFactory { p...
using Common.Data; using Common.Exceptions; using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; namespace Entity { /// <summary> /// Class for performing operations on the Staging table. /// </summary> public partial class Staging { #region Public Method...
// Copyright (c) 2018 FiiiLab Technology Ltd // Distributed under the MIT software license, see the accompanying // file LICENSE or http://www.opensource.org/licenses/mit-license.php. using System; using System.Collections.Generic; using System.Text; namespace FiiiChain.Node { public class NodeConfig { ...
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Extensions.Http; using Microsoft.Extensions.Logging; using Microsoft.WindowsAzure.Storage.Table; using Newtonsoft.Json; using System; using System.IO; using System.Linq; using System.Net.Http; u...
using System; namespace DoublePermutationMethod.Command { class HelpCommand : BaseCommand { public override string Name => "help"; public override void Execute() { Console.WriteLine("<encode> - Command to encrypt a sentence with a custom key"); Console.WriteLin...
using System; using System.Linq; using VetClinicPublic.Web.Models; namespace VetClinicPublic.Web.Interfaces { public interface ISendConfirmationEmails { void SendConfirmationEmail(AppointmentDTO appointment); } }
using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LibreriaClases { public class EjecutarQuery { static string connectionString = @"Server = YouServerName; Database=Usuarios;Trus...
using Microsoft.AspNet.Http; using SciVacancies.WebApp.ViewModels.Base; namespace SciVacancies.WebApp.ViewModels { public class ResearcherEditPhotoViewModel: PageViewModelBase { public IFormFile PhotoFile { get; set; } public string ImageName { get; set; } public long? ImageSize { get...
using UnityEngine; using System.Collections; using UnityEngine.UI; public class PlayerHealth : MonoBehaviour { public int player1Health; public int player2Health; // Access to LastManStanding script public GameObject lastManStandingGameObj; public LastManStanding lastManStandingScript; // Di...
using mec.Database.Presentees; using mec.Model; using mec.Model.Processes; using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Net.Http; using System.Web.Http; namespace mec.Cleint.Portal.Controllers { public class ProcessController : ApiController { [Htt...
using MediaProtector.App_Plugins.MediaProtector.Controllers; using Umbraco.Core; using Umbraco.Core.Composing; namespace MediaProtector.App_Plugins.MediaProtector.Components { public class Composer:IUserComposer { public void Compose(Composition composition) { //Append our component to the col...
*** Start programmer edit section *** (EduProgram.Number CustomAttributes) *** End programmer edit section *** (EduProgram.Number CustomAttributes) *** Start programmer edit section *** (EduProgram.Number Get) return null; *** End programmer edit section *** (EduProgram.Number Get) *** Start programm...
using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; namespace isukces.code.vssolutions { public sealed class FrameworkVersion : IComparable<FrameworkVersion>, IComparable { public FrameworkVersion(string shortName, string version, string profile) ...
using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using VeterinariaT1.BD; using VeterinariaT1.Modelo; namespace VeterinariaT1.Controller { class ControladorTratamiento { public List<Mod...
using System; using System.Collections.Generic; using System.Linq; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Audio; using Microsoft.Xna.Framework.Content; using Microsoft.Xna.Framework.GamerServices; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using Microsoft.Xna.Fram...
using Niusys.WebAPI.Common.Security; using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Niusys.WebAPI.Models { public class SessionObject { public string SessionKey { get; set; } public User LogonUser { get; set; } } public class User : IUse...
namespace _09._UserLogs { using System; using System.Collections.Generic; public class Startup { public static void Main() { string input = Console.ReadLine(); SortedDictionary<string, Dictionary<string, int>> users = new SortedDictionary<string, Dictionary<stri...
using PopulationFitness.Models.FastMaths; using PopulationFitness.Models.Genes.BitSet; using System; namespace PopulationFitness.Models.Genes.LocalMinima { public class AckleysGenes : NormalizingBitSetGenes { private class NormalizationRatioCalculator : IValueCalculator<Double> { public do...
public class Solution { public IList<string> FindWords(char[][] board, string[] words) { var res = new List<string>(); Trie t = new Trie(); foreach(string word in words) { t.Insert(word); } int m = board.Length, n = board[0].Length; ...
using System; using System.Runtime.Serialization; namespace Phenix.Business { /// <summary> /// 校验限制保存时异常 /// </summary> [Serializable] public class CheckSaveException : Exception { /// <summary> /// 校验限制保存时异常 /// </summary> public CheckSaveException() : base() { } /// <summary>...
namespace SOLIDPrinciples.OCP.Example1.Good { public class CalculadoraDePrecos { private readonly ITabelaDePreco tabela; private readonly IServicoDeEntrega entrega; public CalculadoraDePrecos( ITabelaDePreco tabela, IServicoDeEntrega entrega) => (thi...
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using DelftTools.Functions.Filters; using DelftTools.Functions.Generic; using DelftTools.Units; using DelftTools.Utils.Aop.NotifyPropertyChange; namespace DelftTools.Functions.Conversion { /// <summary> /// Convert a c...
using System; using System.Collections.Generic; using System.Text; namespace CarRental.API.BL.Models.Reservations { public class CreateReservationModel { public Guid ClientId { get; set; } public Guid CarId { get; set; } public DateTime RentalStartDate { get; set; } public ...
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
10