text stringlengths 13 6.01M |
|---|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace LuckyGitlabStatWebAPI.Models
{
public class Member
{
/// <summary>
/// 用户名
/// </summary>
public string username { set; get; }
/// <summary>
/// 登陆密码
/// </sum... |
using System;
namespace Requestrr.WebApi.RequestrrBot.Notifications.TvShows
{
public class SeasonNotification : TvShowNotification
{
public SeasonNotification(string userId, int tvShowId, int seasonNumber)
: base(userId, tvShowId, seasonNumber)
{
}
public override bool ... |
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using UnityThreading;
public class ThreadingUnityCallsExample : MonoBehaviour
{
private bool isCalculating = false;
private System.Random random = new System.Random();
private float startTime;
private int createdElements;
vo... |
using EP.CrudModalDDD.Domain.Commands.Results;
using EP.CrudModalDDD.Domain.Interfaces;
namespace EP.CrudModalDDD.Domain.Commands.Handlers
{
public interface ICommandHandler<T> where T : ICommand
{
ICommandResult Handle(T command);
}
}
|
namespace NightlifeEntertainment
{
using System;
using System.Collections.Generic;
using System.Linq;
public abstract class Performance : IPerformance
{
private string name;
private decimal basePrice;
private IVenue venue;
private IList<ITicket> tickets;
pu... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using Negocio;
namespace WebAppExercicio
{
public partial class frmLogin : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void b... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sudoku_Designer
{
class SudokuLevel
{
protected int size;
protected Cell[] cells;
public Line[] rows;
public Line[] cols;
public Box[] boxes;
... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TriggerManager : MonoBehaviour
{
private SpriteRenderer spriteRenderer;
private int pressedCount;
public delegate void OnPressedTriggerHandler(bool isPressed);
public event OnPressedTriggerHandler OnPressedTr... |
using System;
using System.Collections.Generic;
using Entities;
using DataAccess;
using System.Threading.Tasks;
namespace BusinessLayer
{
public class MedicoBL
{
public static List<Medico> ListaMedicos;
public async Task<List<Medico>> GetMedicosAsync()
{
MedicoDAL dal = new... |
#region using statements
using DataAccessComponent.DataManager.Readers;
using DataAccessComponent.StoredProcedureManager.DeleteProcedures;
using DataAccessComponent.StoredProcedureManager.FetchProcedures;
using DataAccessComponent.StoredProcedureManager.InsertProcedures;
using DataAccessComponent.StoredProcedureMana... |
using OmniSharp.Extensions.JsonRpc.Generation;
namespace OmniSharp.Extensions.DebugAdapter.Protocol.Models
{
[StringEnum]
public readonly partial struct InvalidatedAreas
{
public static InvalidatedAreas All { get; } = new InvalidatedAreas("all");
public static InvalidatedAreas Stacks { get;... |
using MetroFramework;
using MetroFramework.Forms;
using PDV.CONTROLER.Funcoes;
using PDV.UTIL;
using PDV.VIEW.Forms.Cadastro.MDFe;
using System;
using System.Data;
using System.Windows.Forms;
namespace PDV.VIEW.Forms.Consultas.MDFe
{
public partial class FCO_Condutor : DevExpress.XtraEditors.XtraForm
{
... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
public class Test : MonoBehaviour
{
float[][][][] tabChromosome;
int[] layers = { 30, 25, 25, 30 };
float[] notes;
[SerializeField]
Transform spawn;
[SerializeField]
Transform end;
[Seri... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using DotNetCoreDemos.Models;
using Microsoft.AspNetCore.Mvc;
namespace DotNetCoreDemos.Controllers
{
public class HomeController : Controller
{
public string Index()
{
return "Hello .n... |
using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
namespace Nancy.Markdown.Blog
{
public class Post : IEquatable<Post>, IComparable<Post>
{
private string _title;
private string _html;
private int _hash;
public Date... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Web.Mvc;
using System.Web.Security;
namespace Proyek_Informatika.Models
{
public class SejarahDosenContainer
{
public int id { get; set; }
[Display(Name = "Per... |
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Xml;
namespace Erwine.Leona... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DirectionalArrow : MonoBehaviour
{
[SerializeField] Transform reactorToPoint;
private void FixedUpdate()
{
if (reactorToPoint == null)
Destroy(gameObject);
else
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RNNSharp
{
public class SentencePair
{
public Sentence srcSentence;
public Sentence tgtSentence;
}
}
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="HasManyConvention.cs" company="CGI">
// Copyright (c) CGI. All rights reserved.
// </copyright>
// ------------------------------------------------------------------------------... |
namespace Alarmy.Common
{
internal interface IImporter
{
void Import(ImportContext context);
}
}
|
/*
Copyright © 2005 - 2017 Annpoint, s.r.o.
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 agreed to in wr... |
using System.Collections.Generic;
namespace Whale.Shared.Models.DirectMessage
{
public class ReadAndUnreadMessagesDTO
{
public IEnumerable<DirectMessageDTO> ReadMessages { get; set; }
public IEnumerable<DirectMessageDTO> UnreadMessages { get; set; }
}
}
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class SidescrollerEndingScript : MonoBehaviour
{
[SerializeField]
private GameObject m_fireWorksPrefab;
[SerializeField]
private float m_xOffset = 1f;
[SerializeField]
private float m_yOffset = 1f;
privat... |
using Xamarin.Forms;
namespace RenderTest.Renderers
{
public class UnderlineLabel : Label
{
public UnderlineLabel()
{
}
public static readonly BindableProperty IsUnderlineProperty = BindableProperty.Create(nameof(IsUnderline), typeof(bool), typeof(UnderlineLabel), true);
... |
using System;
using CallCenter.Common.Entities;
namespace CallCenter.Client.SqlStorage.Entities
{
public class ChatTopic:IChatTopic
{
public virtual int Id { get; set; }
public virtual DateTime Date { get; set; }
public virtual string Topic { get; set; }
public virtua... |
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using EkspozitaPikturave.Data;
using EkspozitaPikturave.Models;
using EkspozitaPikturave.ViewModels;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace PatrickW_Document
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Document\n");
Console.... |
using System;
using System.Configuration;
using System.Data.SqlClient;
using System.Xml;
using NopSolutions.NopCommerce.BusinessLogic.Audit;
using NopSolutions.NopCommerce.BusinessLogic.Caching;
using NopSolutions.NopCommerce.BusinessLogic.Tasks;
using OpenPOP.MIME;
using OpenPOP.POP3;
using System.Collections.Generi... |
using Hotel.Data.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Hotel.Web.Areas.ModulAdministracija.ViewModels
{
public class PrikazDetaljaZaCheckINVM
{
public List<RezervisanSmjestaj> RezervisanSmjestaj { set; get; }
public L... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Framework.Remote
{
/// <summary>
/// Base page for error pages.
/// </summary>
public class CxErrorPage : System.Web.UI.Page
{
/// <summary>
/// Raises the <see cref="E:System.Web.UI.Page.LoadComplete"/>... |
using Microsoft.Owin.StaticFiles.ContentTypes;
namespace IntegrityServer
{
/// <summary>
/// Get rid of error in Chrome
/// </summary>
public class CustomContentTypeProvider : FileExtensionContentTypeProvider
{
public CustomContentTypeProvider()
{
Mappings.Add(".woff2",... |
using LeanBatchLauncher.Util;
using Newtonsoft.Json;
using QuantConnect;
using QuantConnect.Configuration;
using QuantConnect.Lean.Engine;
using QuantConnect.Logging;
using QuantConnect.Util;
using System;
using System.Collections.Generic;
using System.IO;
using static LeanBatchLauncher.Launcher.Configuration;
using s... |
using AutoMapper;
using DEMO_DDD.APPLICATION.ViewModels;
using DEMO_DDD.DOMAIN.Entidades;
namespace DEMO_DDD.APPLICATION.AutoMapper
{
public class AutoMapperConfig : Profile
{
//Criando o mapeamento das classes de dominio para as classes de apresentação.
public AutoMapperConfig()
{
... |
using System.Collections.Generic;
using GaleService.DomainLayer.Managers.Models;
using GaleService.DomainLayer.Managers.Models.Response;
using GaleService.DomainLayer.Managers.Services.Fitbit.ResourceModels;
using GaleService.DomainLayer.Managers.Services.Mappers;
using GaleService.DomainLayer.Managers.Services.Resour... |
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Threading;
using System.Threading.Tasks;
using Sisc.Api.Common.Helpers;
namespace Sisc.Api.Lib.Managers
{
public interface IBaseManager<TEntity> where TEntity : class
{
TEntity Get(object[] keys);
Task<... |
#region Usings
using Zengo.WP8.FAS.WebApi.Responses;
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
#endregion
namespace Zengo.WP8.FAS.Controls
{
public partial class VotingHistoryControl : UserControl
{
#region Properties
#endregion
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Threading.Tasks;
using Autodesk.DesignScript.Runtime;
using Dynamo.Controls;
using Dynamo.Graph.Nodes;
using Dynamo.UI.Commands;
using Dynamo.Wpf;
using ProtoCore.AST.AssociativeAST;
using Newtonsof... |
using System;
using System.Collections.Generic;
using System.Timers;
using DataStructures.SortingAlgorithms;
namespace DataStructures
{
class Program
{
static void Main(string[] args)
{
//var arr = new int[] { 6, 4, 7, 1, 8, 5 };
//var qs = new QuickSort();
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WpfAppAbit2.Models
{
//образовательные программы
public class InstitutionProgram
{
public Guid UID { get; set; }
public string Name { get; set; }
public str... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GunFollowMouse : MonoBehaviour
{
public Vector3 mousePos;
public Vector3 gunPos;
public float angle;
// Update is called once per frame
void Update()
{
mousePos = Input.mousePosition;
... |
using System;
using System.Collections.Generic;
using Xamarin.Forms;
namespace EQIQ
{
public partial class Steps : ContentPage
{
public Steps ()
{
InitializeComponent ();
}
void OnStep1Clicked(object sender, EventArgs e)
{
Navigation.PushAsync(new HomePage(), false);
}
void... |
using System;
using NaughtyAttributes;
[Serializable]
public class SaveData
{
public string key;
[ReadOnly]
public string dataValue;
public string googleFormID = "";
}
|
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace PmSoft.Repositories
{
/// <summary>
/// 用于处理Entity持久化操作
/// </summary>
/// <typeparam name="TEntity"></typeparam>
public interface IRepository<TEntity> where TEntity : class, IEntity
{
/// <summary... |
/** 版本信息模板在安装目录下,可自行修改。
* OPERATION_LOG.cs
*
* 功 能: N/A
* 类 名: OPERATION_LOG
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2014-6-27 14:30:09 N/A 初版
*
* Copyright (c) 2012 Maticsoft Corporation. All rights reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Reflection;
using System.Collections.Concurrent;
namespace TestKeePassUtility
{
class Program
{
static void Main(string[] args)
{
Assembly as... |
using System;
using Lykke.AzureStorage.Tables;
using Lykke.AzureStorage.Tables.Entity.Annotation;
using Lykke.AzureStorage.Tables.Entity.ValueTypesMerging;
using Lykke.Service.SmsSender.Core.Domain;
using Lykke.Service.SmsSender.Core.Domain.SmsRepository;
namespace Lykke.Service.SmsSender.AzureRepositories.SmsReposit... |
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 System.Globalization;
using System.Media;
namespace Kursach
{
public partial class Form1 : Form
{
DateTime local... |
using System;
using System.Net;
namespace cs_github_wallpaper
{
class Program
{
static void Main(string[] args)
{
var gitHubEvents = new GitHubEvents("maxlorenz");
try
{
foreach (var evt in gitHubEvents.getEvents())
... |
using System.Collections.Generic;
using CloneDeploy_Common.Enum;
using CloneDeploy_Entities;
using CloneDeploy_Entities.DTOs;
using RestSharp;
namespace CloneDeploy_ApiCalls
{
public class ImageProfileTemplateAPI : BaseAPI
{
private readonly ApiRequest _apiRequest;
public ImageProfileTemplate... |
using Framework.Db;
using Framework.Remote;
using Framework.Web.Utils;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Web.Mvc;
namespace App.Server.Controllers
{
public partial class HomeController
{
[Authorize]
public ActionR... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
public class VideoHandlerScript : MonoBehaviour
{
VideoPlayer video1;
VideoPlayer video2;
VideoPlayer video3;
VideoPlayer staticVideo;
GameObject staticImage;
// Start is called before the... |
using System;
namespace Aqueduct.Configuration
{
public class Setting
{
protected bool _isProcessed;
protected string _key;
protected string _raw;
protected Type _type;
protected object _value;
/// <summary>
/// Initializes a new instance o... |
using Cloudies.Web.Models;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace Cloudies.Web.Controllers.Labs
{
public class MyLabsController : Controller
{
private IjepaiEntities ... |
//
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
//
#region Usings
using System;
using DotNetNuke.Common;
using DotNetNuke.Common.Utilities;
using DotNetNuke.Entities.Modules;
#endregion
namespace DotNet... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using InstagramMVC.Models;
using InstagramMVC.Models.AccountModels;
using InstagramMVC.DataManagers;
using InstagramMVC.Globals;
using System.Web.Security;
namespace InstagramMVC.Controllers
{
public cla... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Size : MonoBehaviour
{
public float sensitivity = 100;
public float loudness = 0;
AudioSource _audio;
Renderer rend;
float newDesity;
float n=1;
Shader shader_moln;
Shader shader_fire;
//... |
using System.Collections.Generic;
public class HeroCommand : AbstractCommand
{
public HeroCommand(IList<string> args, IHeroManager heroManager)
: base(args, heroManager)
{
}
public override string Excute()
{
return this.HeroManager.AddHero(this.Args);
}
} |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Data;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using Sys... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
namespace Fonlow.Testing
{
public static class DirFunctions
{
public static DirectoryInfo GetSlnDir(string dir)
{
var d = new DirectoryInfo(dir);
... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using Ast.Models;
using System.Linq.Expressions;
using SyntacticSugar;
namespace Ast.Dal
{
public class DbContextFactory
{
public SqlSugarClient DB;
public DbCo... |
using System;
using System.Security.Cryptography;
using System.Text;
using MapControl;
namespace GoogleForZamelMap
{
internal class GoogleMapsTileSource : TileSource
{
public override Uri GetUri(int x, int y, int zoomLevel)
{
var language = "en";
string sec1 = string.E... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QualificationExaming.IServices
{
using Entity;
public interface IAdminService
{
/// <summary>
/// 显示
/// </summary>
/// <returns></returns>
... |
using AsyncDelegates.Examples;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AsyncDelegates
{
class Program
{
static void Main(string[] args)
{
var exampleToRun = ExamplesEnumeration.IsComplited;
... |
namespace RiverCrossPuzzle
{
public class Fox : Occupant
{
}
} |
using System.Runtime.InteropServices;
namespace MemoryModule.FASM
{
public class Internals
{
[DllImport("FASM.DLL", SetLastError = true)]
public static extern int fasm_GetVersion();
[DllImport("FASM.DLL", SetLastError = true)]
public static extern unsafe int fasm_Assemble([In]... |
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Domen
{
[Serializable]
public class OblikLeka : IEntity
{
public int OblikLekaId { get; set; }
public string NazivOblika { get; set; }
... |
#pragma warning disable SA1602 // Enumeration items should be documented
namespace CarWash.Bot.CognitiveModels
{
/// <summary>
/// Types of LUIS entities for recognizing information entities in the user's messages.
/// </summary>
internal enum LuisEntityType
{
Service,
DateTime,
... |
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Linq;
using Microsoft.Practices.Prism.Logging;
using Microsoft.Practices.Prism.ViewModel;
using Torshify.Radio.Framework;
namespace Torshify.Radio.Core
{
[Export("CorePlayer", typeof(ITrackPlayer))]... |
using Kit.Model;
namespace Kit.Services.Interfaces
{
public interface IViewModel<T> : ICrossWindow where T : ModelBase
{
public T Model
{
get;
set;
}
}
}
|
namespace StudentGroups
{
using System;
using System.Collections.Generic;
using System.Text;
public class Student
{
private string fName;
private string lName;
private string fnumber;
private string phoneNumber;
private string mail;
private List<int>... |
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoinBazaar.Infrastructure.MessageQueue
{
public interface IChannel:IDisposable
{
Dictionary<string, Type> Topics { get; set; }
Task BindAllConsumers();
... |
namespace NDDDSample.Domain.Shared
{
/// <summary>
/// A value object, as described in the DDD book.
/// </summary>
public interface IValueObject<T>
{
/// <summary>
/// Value objects compare by the values of their attributes,
/// they don't have an identity.
/// </su... |
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Configs;
using StructLinq;
using System;
using System.Linq;
using System.Threading.Tasks;
namespace NetFabric.Hyperlinq.Benchmarks
{
[GroupBenchmarksBy(BenchmarkLogicalGroupRule.ByCategory)]
[CategoriesColumn]
public class CountBenchmarks : RandomBenc... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.EntityFrameworkCore;
using Sasarman_Andra_Proiect1.Data;
using Sasarman_Andra_Proiect1.Models;
namespace Sasarman_Andra_Proiect1.P... |
using System;
using System.Collections.Generic;
using System.Text;
namespace FastSQL.Sync.Core.Enums
{
[Flags]
public enum MessageType
{
None = 0,
Information = 1,
Error = 2,
Report = 4,
Exception = 8
}
}
|
using System;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace MindLink.Recruitment.MyChat
{
public abstract class FilterOptions : ConversationOptions
{
public abstract List<Message> Filter(List<Message> messages, string filterTarget);
}
public class FilterByN... |
/********************************************************************
* FulcrumWeb RAD Framework - Fulcrum of your business *
* Copyright (c) 2002-2010 FulcrumWeb, ALL RIGHTS RESERVED *
* *
* THE SOURCE CODE CONTAINED WITHIN THI... |
using System.Drawing;
namespace cg_lr3
{
struct Polygon3D
{
public PointF3D[] Outline { get; set; }
public Polygon3D(PointF3D[] _outline)
{
Outline = _outline;
}
public PointF[] ProjectDimetric()
{
return Affinity3D.ProjectDimetric(Outl... |
namespace Recuperatorio
{
public class Zombie : Personaje
{
public override bool Vive()
{
return false;
}
public override string Come()
{
return "Come Cerebros Humanos!";
}
public override string Camina()
{
... |
// Copyright 2020 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... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DjikstraTest
{
class Program
{
static void GetShortestPath(List<Node> nodes, Node start, Node goal)
{
nodes.Sort();
if(start.Point ... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Admin_Is_ResponseUser : System.Web.UI.Page
{
public string t_rand = "";
/****--下一步ID--***/
string content_nextstepId = "";
/****--当前任务ID--***/... |
using System.Collections.Generic;
namespace DownloadExtractLib.Interfaces
{
public interface IParse
{
void ParseFile(string fileName, string url = null);
void LocaliseFile(string fileName, Dictionary<string, string> remaps, string url = null);
}
}
|
namespace Methods
{
public enum FormattingOptions
{
RoundNumber,
ConvertDoubleToPercent,
PadRight
}
}
|
using UnityEngine;
using System.IO;
public class OsuFileTester : MonoBehaviour {
public OsuFile osuFile;
void Start() {
string path = Application.persistentDataPath;
var dirs = Directory.GetDirectories(path);
foreach (var dir in dirs) {
print(dir);
var files = Directory.GetFiles(dir);
foreach (var... |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Assets.Scripts
{
public class BulletScript : MonoBehaviour
{
// Used to damage enemy
[SerializeField]
int damage = 25;
private void OnCollisionEnter(Collision collision) {
i... |
using Swashbuckle.AspNetCore.Yaml.Application;
using YamlDotNet.Serialization;
using YamlDotNet.Serialization.NamingConventions;
namespace Swashbuckle.AspNetCore.Swagger.Yaml
{
public class SwaggerYamlSerializerFactory
{
public static Serializer Create(SwaggerYamlOptions swaggerYamlOptions)
{
... |
namespace Core.Captcha {
public interface ICaptcha {
CaptchaServiceType Type { get; }
}
} |
using System.Diagnostics;
using System.Threading;
using System.Threading.Tasks;
namespace OpcClient
{
using static OpcConfiguration;
using static Program;
/// <summary>
/// Class to enable output to the console.
/// </summary>
public static class Diagnostics
{
/// <summary>
... |
using System;
using System.Collections.Generic;
using System.Text;
using ENTITY;
//<summary>
//Summary description for RemainderInfo
//</summary>
namespace ENTITY
{
public class ReminderInfo
{
private decimal _reminderId;
private DateTime _fromDate;
private Da... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace CoreDemoModels.DomainModels
{
public class Employee
{
[Key]
public int EmployeeId { get; set; }
public string Name { get; set; }
public int DepertmentId { g... |
namespace NorthwesternLabs.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("Test")]
public partial class Test
{
[Key]
[Colum... |
using System;
namespace Nmli.Mkl
{
class Blas : IBlas
{
#region Single
#region Level 1
public int imin(int n, float[] x, int incX) { return Externs.cblas_isamin(n, x, incX); }
public int imax(int n, float[] x, int incX) { return Externs.cblas_isamax(n, x, incX);... |
using System;
using System.Windows.Markup;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Data;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using statistics;
using System.... |
using Newtonsoft.Json;
using Npgsql.BackendMessages;
using Npgsql.PostgresTypes;
using Npgsql.TypeHandlers;
using Npgsql.TypeHandling;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Npgsql.CrateDb
{
class Crate... |
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Speak;
namespace LeetsSpeak.Tests
{
[TestClass]
public class LeetsSpeakTests
{
[TestMethod]
public void ReplaceLetters_WillReplaceEveryLetter_true()
{
Generator newOneInstance = new Generator();
Assert... |
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace userManager
{
public class user
{
[Key]
public string Wxid { set; get; }
public int MsId { set; get; }
publi... |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace Security.Core
{
//https://tomrucki.com/posts/aes-encryption-in-csharp/
public class EncryptionService
{
private const int AesBlockByteSi... |
using System;
namespace Torshify.Radio.Framework
{
public interface ITrackPlayer : IDisposable
{
#region Events
event EventHandler IsPlayingChanged;
event EventHandler IsBufferingChanged;
event EventHandler<TrackBufferingEventArgs> BufferingProgressChanged;
event E... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.