commit stringlengths 40 40 | subject stringlengths 4 1.73k | repos stringlengths 5 127k | old_file stringlengths 2 751 | new_file stringlengths 2 751 | new_contents stringlengths 1 8.98k | old_contents stringlengths 0 6.59k | license stringclasses 13
values | lang stringclasses 23
values |
|---|---|---|---|---|---|---|---|---|
65c9605019d71ee4625f1a1635ccefd66402ca4e | Implement IEquatable<T> for PlotLength #692 | zur003/oxyplot,Kaplas80/oxyplot,oxyplot/oxyplot,HermanEldering/oxyplot,objorke/oxyplot,ze-pequeno/oxyplot,GeertvanHorrik/oxyplot,GeertvanHorrik/oxyplot,DotNetDoctor/oxyplot,shoelzer/oxyplot,shoelzer/oxyplot,olegtarasov/oxyplot,Isolocis/oxyplot,olegtarasov/oxyplot,NilesDavis/oxyplot,shoelzer/oxyplot,GeertvanHorrik/oxypl... | Source/OxyPlot/Foundation/PlotLength.cs | Source/OxyPlot/Foundation/PlotLength.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="PlotLength.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Represents absolute or relative lengths in data or screen space.
/... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="PlotLength.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Represents absolute or relative lengths in data or screen space.
/... | mit | C# |
6391919281c97cbaaf96e443a806ceadf0f22fb7 | Bump version | nixxquality/GitHubUpdate | GitHubUpdate/Properties/AssemblyInfo.cs | GitHubUpdate/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[ass... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Resources;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[ass... | mit | C# |
e6b8c78b5a9176ca43af0cd06d1b3bf3db2ce669 | Add HiddenAt property in TraktSyncShowsLastActivities | henrikfroehling/TraktApiSharp | Source/Lib/TraktApiSharp/Objects/Get/Syncs/Activities/TraktSyncShowsLastActivities.cs | Source/Lib/TraktApiSharp/Objects/Get/Syncs/Activities/TraktSyncShowsLastActivities.cs | namespace TraktApiSharp.Objects.Get.Syncs.Activities
{
using Newtonsoft.Json;
using System;
/// <summary>A collection of UTC datetimes of last activities for shows.</summary>
public class TraktSyncShowsLastActivities
{
/// <summary>Gets or sets the UTC datetime, when a show was lastly rate... | namespace TraktApiSharp.Objects.Get.Syncs.Activities
{
using Newtonsoft.Json;
using System;
/// <summary>A collection of UTC datetimes of last activities for shows.</summary>
public class TraktSyncShowsLastActivities
{
/// <summary>Gets or sets the UTC datetime, when a show was lastly rate... | mit | C# |
9af06d1ea597e97ec4c70a44a4e60d85164053de | add some token types | Code-017/WindLang | Source/Tokens.cs | Source/Tokens.cs | using System;
namespace WindLang
{
namespace Lexer
{
public class RawToken
{
public RawToken(string aLexeme)
{
Lexeme = aLexeme;
}
string Lexeme {public get;private set;}
}
public enum TokenType
{
... | using System;
namespace WindLang
{
namespace Lexer
{
public class RawToken
{
public RawToken(string aLexeme)
{
Lexeme = aLexeme;
}
string Lexeme {public get;private set;}
}
public enum TokenType
{
... | mit | C# |
5917b61197d9363cd93d2a5b498850cd5add3627 | Verify that LoginCommand#Execute asks for username and password | appharbor/appharbor-cli | src/AppHarbor/Commands/LoginCommand.cs | src/AppHarbor/Commands/LoginCommand.cs | using System;
namespace AppHarbor.Commands
{
public class LoginCommand : ICommand
{
private readonly AppHarborApi _appHarborApi;
public LoginCommand(AppHarborApi appHarborApi)
{
_appHarborApi = appHarborApi;
}
public void Execute(string[] arguments)
{
Console.WriteLine("Username:");
var usern... | using System;
namespace AppHarbor.Commands
{
public class LoginCommand : ICommand
{
private readonly AppHarborApi _appHarborApi;
public LoginCommand(AppHarborApi appHarborApi)
{
_appHarborApi = appHarborApi;
}
public void Execute(string[] arguments)
{
throw new NotImplementedException();
}
}
... | mit | C# |
2347ea01b4d4eef8dc906ca8fcd015e2e75830a1 | Clean up the IAsset interface. | honestegg/cassette,damiensawyer/cassette,andrewdavey/cassette,BluewireTechnologies/cassette,andrewdavey/cassette,honestegg/cassette,honestegg/cassette,andrewdavey/cassette,damiensawyer/cassette,BluewireTechnologies/cassette,damiensawyer/cassette | src/Cassette/IAsset.cs | src/Cassette/IAsset.cs | using System.Collections.Generic;
using System.IO;
using Cassette.IO;
namespace Cassette
{
public interface IAsset
{
/// <summary>
/// The application relative path of the asset.
/// </summary>
string SourceFilename { get; }
/// <summary>
/// The ... | using System.Collections.Generic;
using System.IO;
using Cassette.IO;
namespace Cassette
{
public interface IAsset
{
void Accept(IAssetVisitor visitor);
string SourceFilename { get; }
byte[] Hash { get; }
IEnumerable<AssetReference> References { get; }
void ... | mit | C# |
ba15b1f311b9443c4975ed813f9d4a4e570678c9 | Update ValuesOut.cs | EricZimmerman/RegistryPlugins | RegistryPlugin.ProfileList/ValuesOut.cs | RegistryPlugin.ProfileList/ValuesOut.cs | using System;
using RegistryPluginBase.Interfaces;
namespace RegistryPlugin.ProfileList
{
public class ValuesOut : IValueOut
{
public ValuesOut(string keyName, string profileimagepath, DateTimeOffset? timestamp)
{
KeyName = keyName;
ProfileImagePath = profileimagepath;
... | using System;
using RegistryPluginBase.Interfaces;
namespace RegistryPlugin.ProfileList
{
public class ValuesOut : IValueOut
{
public ValuesOut(string keyName, string profileimagepath, DateTimeOffset? timestamp)
{
KeyName = keyName;
ProfileImagePath = profileimagepath;
... | mit | C# |
9ded9e4f885a54491dc4f2fe6c8f041b3787cc1f | bump version number of desktop app | PapaMufflon/StandUpTimer,PapaMufflon/StandUpTimer,PapaMufflon/StandUpTimer | StandUpTimer/Properties/AssemblyInfo.cs | StandUpTimer/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyVersion("0.7.3")]
[assembly: AssemblyFileVersion("0.7.3")]
[assembly: InternalsVisibleTo("StandUpTimer.UnitTests")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyVersion("0.7.2")]
[assembly: AssemblyFileVersion("0.7.2")]
[assembly: InternalsVisibleTo("StandUpTimer.UnitTests")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")] | mit | C# |
f7ebe4e2976358a841db34799d3846ce78cf3178 | fix for workitem https://nuget.codeplex.com/workitem/3174 | chocolatey/nuget-chocolatey,rikoe/nuget,indsoft/NuGet2,mono/nuget,mrward/NuGet.V2,jholovacs/NuGet,OneGet/nuget,oliver-feng/nuget,oliver-feng/nuget,mrward/nuget,RichiCoder1/nuget-chocolatey,xoofx/NuGet,xoofx/NuGet,GearedToWar/NuGet2,oliver-feng/nuget,jholovacs/NuGet,mrward/NuGet.V2,pratikkagda/nuget,dolkensp/node.net,jh... | src/Core/FileModifiers/Preprocessor.cs | src/Core/FileModifiers/Preprocessor.cs | using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text.RegularExpressions;
using NuGet.Resources;
using System.Text;
namespace NuGet
{
/// <summary>
/// Simple token replacement system for content files.
/// </summary>
public class Pr... | using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text.RegularExpressions;
using NuGet.Resources;
namespace NuGet
{
/// <summary>
/// Simple token replacement system for content files.
/// </summary>
public class Preprocessor : IPackag... | apache-2.0 | C# |
82fb4baa0ae041b9ffda5994371796016d64ce5b | Fix minor issue about not using UPnP with ipv6 | PowerOfCode/lidgren-network-gen3 | UnitTests/Program.cs | UnitTests/Program.cs | using System;
using System.Reflection;
using Lidgren.Network;
using System.Net;
using System.Net.Sockets;
namespace UnitTests
{
class Program
{
static void Main(string[] args)
{
NetPeerConfiguration config = new NetPeerConfiguration("unittests");
if (Socket.OSSupportsIPv6)
config.LocalAd... | using System;
using System.Reflection;
using Lidgren.Network;
using System.Net;
using System.Net.Sockets;
namespace UnitTests
{
class Program
{
static void Main(string[] args)
{
NetPeerConfiguration config = new NetPeerConfiguration("unittests");
config.EnableUPnP = true;
if (Socket.OSSup... | mit | C# |
f634ea06cfefb1341ad7da6565b6ea8bfe9c2654 | Add caching to the GetBudgetsAsync method | haefele/YnabApi,haefele/Ynab | src/YnabApi/YnabApi.cs | src/YnabApi/YnabApi.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using YnabApi.Files;
using YnabApi.Helpers;
namespace YnabApi
{
public class YnabApi
{
private readonly IFileSystem _fileSystem;
p... | using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using YnabApi.Files;
using YnabApi.Helpers;
namespace YnabApi
{
public class YnabApi
{
private readonly IFileSystem _fileSystem;
public YnabApi(... | mit | C# |
067ee3022c27b7ddcea298d3224c516721cdedd5 | Implement IMediaStore in ScrapeEngine | SnowflakePowered/snowflake,RonnChyran/snowflake,faint32/snowflake-1,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,faint32/snowflake-1,SnowflakePowered/snowflake,faint32/snowflake-1 | Snowflake.API/Core/ScrapeEngine.cs | Snowflake.API/Core/ScrapeEngine.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Snowflake.Information.Platform;
using Snowflake.Information.Game;
using Snowflake.Plugin;
using Snowflake.Constants;
using DuoVia.FuzzyStrings;
using Snowflake.Scraper;
using System.IO;
namespace ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Snowflake.Information.Platform;
using Snowflake.Information.Game;
using Snowflake.Plugin;
using Snowflake.Constants;
using DuoVia.FuzzyStrings;
using Snowflake.Scraper;
namespace Snowflake.Core
{
... | mpl-2.0 | C# |
f2b18ab8f4c6bd1eb50938af04bd5e55d6c79d9c | Bump version number | opcon/Substructio,opcon/Substructio | src/Properties/AssemblyInfo.cs | src/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Su... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Su... | mit | C# |
8ee4bebd9b9e0bcedf63359bc7eb05cf4ef19a27 | Update version to 2.5.30. Building against En Route SDK 2.13.58 | Glympse/enroute-xamarin-sdk,Glympse/enroute-xamarin-sdk,Glympse/enroute-xamarin-sdk | source/EnRouteApi/Source/Core/Config.cs | source/EnRouteApi/Source/Core/Config.cs | using System;
namespace EnRouteApi
{
public class Config
{
/**
* EnRoute Xamarin SDK version.
*/
public static readonly int ENROUTE_SDK_MAJOR = 2;
public static readonly int ENROUTE_SDK_MINOR = 5;
public static readonly int ENROUTE_SDK_BUILD = 30;
... | using System;
namespace EnRouteApi
{
public class Config
{
/**
* EnRoute Xamarin SDK version.
*/
public static readonly int ENROUTE_SDK_MAJOR = 2;
public static readonly int ENROUTE_SDK_MINOR = 5;
public static readonly int ENROUTE_SDK_BUILD = 29;
... | mit | C# |
a6e9b9fcb1efacc083f5b9893de9623ec727d05a | add claims factory to host | IdentityServer/IdentityServer3.AspNetIdentity,faithword/IdentityServer3.AspNetIdentity,sixten/IdentityServer3.AspNetIdentity | source/SelfHost/AspId/SimpleEntities.cs | source/SelfHost/AspId/SimpleEntities.cs | /*
* Copyright 2014 Dominick Baier, Brock Allen
*
* 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 la... | /*
* Copyright 2014 Dominick Baier, Brock Allen
*
* 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 la... | apache-2.0 | C# |
3ffe93cd16f3d2ed06d445e64ef7b95c4761ea6e | Put Task.Run in a single line | zulhilmizainuddin/geoip,zulhilmizainuddin/geoip | src/GeoIP/Executers/MaxMindQuery.cs | src/GeoIP/Executers/MaxMindQuery.cs | using GeoIP.Models;
using MaxMind.GeoIP2;
using MaxMind.GeoIP2.Exceptions;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GeoIP.Executers
{
public class MaxMindQuery : IQuery
{
public async Task<object> Query(string ipA... | using GeoIP.Models;
using MaxMind.GeoIP2;
using MaxMind.GeoIP2.Exceptions;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GeoIP.Executers
{
public class MaxMindQuery : IQuery
{
public async Task<object> Query(string ipA... | mit | C# |
b11e8af0b96cc10732d2aeae18e6b4970b088811 | Fix fatal bugs for OSX | plenprojectcompany/plen-MotionEditor_Unity | Assets/Script/MotionInstall.cs | Assets/Script/MotionInstall.cs | using UnityEngine;
using System.Collections;
public class MotionInstall : MonoBehaviour {
#if UNITY_STANDALONE_WIN
void Start () {
}
void Update () {
}
/// <summary>
/// モーションインストーラ呼び出しメソッド
/// </summary>
/// <param name="jsonPath">モーションインストールを行いたいJSONファイルのパス</param>
/// <param name="fileName">JSON... | using UnityEngine;
using System.Collections;
public class MotionInstall : MonoBehaviour {
#if UNITY_STANDALONE_WIN
void Start () {
}
void Update () {
}
/// <summary>
/// モーションインストーラ呼び出しメソッド
/// </summary>
/// <param name="jsonPath">モーションインストールを行いたいJSONファイルのパス</param>
/// <param name="fileName">JSON... | mit | C# |
69f8cfa503cf5fe36bab88b82340c66d2db822b0 | Add TotalTips and BusserTipout to Shift model | BillChirico/Tipage,BillChirico/Tipage | src/Tipage.Web/Models/Shift.cs | src/Tipage.Web/Models/Shift.cs | using System;
using System.ComponentModel.DataAnnotations;
namespace Tipage.Web.Models
{
public class Shift
{
/// <summary>
/// Id of the shift.
/// </summary>
public int Id { get; set; }
/// <summary>
/// User of the shift.
/// </summary>
publi... | using System;
using System.ComponentModel.DataAnnotations;
namespace Tipage.Web.Models
{
public class Shift
{
/// <summary>
/// Id of the shift.
/// </summary>
public int Id { get; set; }
/// <summary>
/// User of the shift.
/// </summary>
publi... | mit | C# |
23769228671a15867415b0a6953f1657b63fa094 | Fix assignment of Reason | aspnetboilerplate/aspnetboilerplate,fengyeju/aspnetboilerplate,aspnetboilerplate/aspnetboilerplate,Nongzhsh/aspnetboilerplate,ryancyq/aspnetboilerplate,verdentk/aspnetboilerplate,ryancyq/aspnetboilerplate,verdentk/aspnetboilerplate,luchaoshuai/aspnetboilerplate,carldai0106/aspnetboilerplate,virtualcca/aspnetboilerplate... | src/Abp/EntityHistory/ReasonOverride.cs | src/Abp/EntityHistory/ReasonOverride.cs | namespace Abp.EntityHistory
{
public class ReasonOverride
{
public string Reason { get; }
public ReasonOverride(string reason)
{
Reason = reason;
}
}
}
| namespace Abp.EntityHistory
{
public class ReasonOverride
{
public string Reason { get; }
public ReasonOverride(string reason)
{
Reason = null;
}
}
}
| mit | C# |
1168e7d41129633ff4497199c7752b6e7cfdbdcf | Initialize ConfigCommand with an ApplicationConfiguration, AppHarborClient and TextWriter | appharbor/appharbor-cli | src/AppHarbor/Commands/ConfigCommand.cs | src/AppHarbor/Commands/ConfigCommand.cs | using System;
using System.IO;
namespace AppHarbor.Commands
{
public class ConfigCommand : ICommand
{
private readonly IApplicationConfiguration _applicationConfiguration;
private readonly IAppHarborClient _appharborClient;
private readonly TextWriter _writer;
public ConfigCommand(IApplicationConfiguration... | using System;
namespace AppHarbor.Commands
{
public class ConfigCommand : ICommand
{
public void Execute(string[] arguments)
{
throw new NotImplementedException();
}
}
}
| mit | C# |
a127e2739d22b5db86ea240bc4696cfd2b33b8f6 | Add NotImplemented.ActiveIssue() method. | tijoytom/corefx,richlander/corefx,seanshpark/corefx,nbarbettini/corefx,zhenlan/corefx,dotnet-bot/corefx,twsouthwick/corefx,JosephTremoulet/corefx,the-dwyer/corefx,nbarbettini/corefx,gkhanna79/corefx,Jiayili1/corefx,ericstj/corefx,zhenlan/corefx,ravimeda/corefx,yizhang82/corefx,MaggieTsang/corefx,yizhang82/corefx,seansh... | src/Common/src/System/NotImplemented.cs | src/Common/src/System/NotImplemented.cs | // 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.
namespace System
{
//
// Support for tooling-friendly NotImplementedExceptions.
//
internal static c... | // 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.
namespace System
{
//
// This class enables one to throw a NotImplementedException using the following idiom... | mit | C# |
89dd01c41616999579fcc4f84f7448f1fafaa2a4 | Add filter property to popular shows request. | henrikfroehling/TraktApiSharp | Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Common/TraktShowsPopularRequest.cs | Source/Lib/TraktApiSharp/Requests/WithoutOAuth/Shows/Common/TraktShowsPopularRequest.cs | namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Common
{
using Base;
using Base.Get;
using Objects.Basic;
using Objects.Get.Shows;
internal class TraktShowsPopularRequest : TraktGetRequest<TraktPaginationListResult<TraktShow>, TraktShow>
{
internal TraktShowsPopularRequest(TraktCli... | namespace TraktApiSharp.Requests.WithoutOAuth.Shows.Common
{
using Base.Get;
using Objects.Basic;
using Objects.Get.Shows;
internal class TraktShowsPopularRequest : TraktGetRequest<TraktPaginationListResult<TraktShow>, TraktShow>
{
internal TraktShowsPopularRequest(TraktClient client) : ba... | mit | C# |
94b25d52585ff7d4cfe72d3cfd0df171e0417c1c | Update Utils.cs | AKouki/AspNetCore-ITrackerSPA,AKouki/AspNetCore-ITrackerSPA,AKouki/AspNetCore-ITrackerSPA | Helpers/Utils.cs | Helpers/Utils.cs | using System.IO;
using System.Linq;
using ITrackerSPA.Models.Enums;
using Microsoft.AspNetCore.Http;
namespace ITrackerSPA.Controllers
{
public class Utils
{
public static FileType GetFileType(IFormFile file)
{
string[] images = { "png", "jpg", "jpeg" };
var fileExtensio... | using System.IO;
using System.Linq;
using ITrackerSPA.Models.Enums;
using Microsoft.AspNetCore.Http;
namespace ITrackerSPA.Controllers
{
public class Utils
{
public static FileType GetFileType(IFormFile file)
{
string[] images = { "png", "jpg", "jpeg" };
var fi... | mit | C# |
5acc6e598c2ec9e77cdcff3c86fde17b5b6dd944 | Update ObjectExtensions.cs | apemost/Newq,apemost/Newq | src/Newq/Extensions/ObjectExtensions.cs | src/Newq/Extensions/ObjectExtensions.cs | namespace Newq.Extensions
{
using System;
/// <summary>
///
/// </summary>
public static class ObjectExtensions
{
/// <summary>
///
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
public static string ToSqlValue(this objec... | namespace Newq.Extensions
{
using System;
/// <summary>
///
/// </summary>
public static class ObjectExtensions
{
/// <summary>
///
/// </summary>
/// <param name="obj"></param>
/// <returns></returns>
public static string ToSqlValue(this objec... | mit | C# |
7d5c2747e0fb7535168ceed8c202d4d8055e27e1 | Use language string instead of Culture | picklesdoc/pickles,ludwigjossieaux/pickles,picklesdoc/pickles,dirkrombauts/pickles,blorgbeard/pickles,dirkrombauts/pickles,dirkrombauts/pickles,magicmonty/pickles,ludwigjossieaux/pickles,blorgbeard/pickles,dirkrombauts/pickles,magicmonty/pickles,magicmonty/pickles,blorgbeard/pickles,blorgbeard/pickles,picklesdoc/pickle... | src/Pickles/Pickles/LanguageServices.cs | src/Pickles/Pickles/LanguageServices.cs | #region License
/*
Copyright [2011] [Jeffrey Cameron]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applica... | #region License
/*
Copyright [2011] [Jeffrey Cameron]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applica... | apache-2.0 | C# |
e3e9593756c37fad226ab3a67e816164235ec962 | Write the DOCTYPE and use two-space indentation | tmds/Tmds.DBus | Introspection.cs | Introspection.cs | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.IO;
using System.Xml;
using System.Text;
namespace NDesk.DBus
{
//TODO: complete this class
public c... | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.IO;
using System.Xml;
using System.Text;
namespace NDesk.DBus
{
//TODO: complete this class
public c... | mit | C# |
04900337c7f2b36fdfb25f16de22649a8abc8d21 | Support generic CultureInfo as language culture | gavinfaux/Umbraco-CMS,Nicholas-Westby/Umbraco-CMS,sargin48/Umbraco-CMS,KevinJump/Umbraco-CMS,aaronpowell/Umbraco-CMS,abjerner/Umbraco-CMS,base33/Umbraco-CMS,mittonp/Umbraco-CMS,aadfPT/Umbraco-CMS,NikRimington/Umbraco-CMS,dawoe/Umbraco-CMS,umbraco/Umbraco-CMS,dawoe/Umbraco-CMS,WebCentrum/Umbraco-CMS,dawoe/Umbraco-CMS,ra... | src/Umbraco.Core/Models/Language.cs | src/Umbraco.Core/Models/Language.cs | using System;
using System.Globalization;
using System.Reflection;
using System.Runtime.Serialization;
using Umbraco.Core.Models.EntityBase;
namespace Umbraco.Core.Models
{
/// <summary>
/// Represents a Language
/// </summary>
[Serializable]
[DataContract(IsReference = true)]
pub... | using System;
using System.Globalization;
using System.Reflection;
using System.Runtime.Serialization;
using Umbraco.Core.Models.EntityBase;
namespace Umbraco.Core.Models
{
/// <summary>
/// Represents a Language
/// </summary>
[Serializable]
[DataContract(IsReference = true)]
pub... | mit | C# |
6300770874e81033025ebde11642344cdb7af452 | add calendarlink type | rlittletht/RWLLPracticeTool,rlittletht/RWLLPracticeTool | Rwp/Types.cs | Rwp/Types.cs |
using System;
using System.Collections.Generic;
namespace Rwp
{
public class RSRBase
{
public bool Result { get; set; }
public string Reason { get; set; }
public bool Succeeded => Result;
}
public class RSR : RSRBase
{
}
public class TRSR<T> : RSRBase
{
... |
using System;
using System.Collections.Generic;
namespace Rwp
{
public class RSRBase
{
public bool Result { get; set; }
public string Reason { get; set; }
public bool Succeeded => Result;
}
public class RSR : RSRBase
{
}
public class TRSR<T> : RSRBase
{
... | mit | C# |
7526ba7ca4b50f36cc2042005146534cd045cb09 | Fix - Ricerca utente quando l'operatore viene cancellato dalla base dati | vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf,vvfosprojects/sovvf | src/backend/SO115App.Persistence.MongoDB/GestioneUtenti/GestioneUtente/GetUtenteById.cs | src/backend/SO115App.Persistence.MongoDB/GestioneUtenti/GestioneUtente/GetUtenteById.cs | //-----------------------------------------------------------------------
// <copyright file="GetUtenteById.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public Licens... | //-----------------------------------------------------------------------
// <copyright file="GetUtenteById.cs" company="CNVVF">
// Copyright (C) 2017 - CNVVF
//
// This file is part of SOVVF.
// SOVVF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public Licens... | agpl-3.0 | C# |
21c96420381753d65f6a87f686f5f3e2aa28a4e6 | Fix application exit. | tfreitasleal/MvvmFx,MvvmFx/MvvmFx | Samples/CaliburnMicro/MasterDetailWithModel/MasterDetailWithModel.WisejWeb/MainForm.cs | Samples/CaliburnMicro/MasterDetailWithModel/MasterDetailWithModel.WisejWeb/MainForm.cs | using System;
using System.Collections.Generic;
#if WISEJ
using Wisej.Web;
#else
using System.Windows.Forms;
#endif
using MvvmFx.CaliburnMicro;
using MvvmFx.Windows.Data;
namespace MasterDetailWithModel
{
public partial class MainForm : Form, IHaveDataContext
{
private readonly BindingManager _binding... | using System;
using System.Collections.Generic;
#if WISEJ
using Wisej.Web;
#else
using System.Windows.Forms;
#endif
using MvvmFx.CaliburnMicro;
using MvvmFx.Windows.Data;
namespace MasterDetailWithModel
{
public partial class MainForm : Form, IHaveDataContext
{
private readonly BindingManager _binding... | mit | C# |
2e0f64afd277d5f1ad97b512b5778f53ffbf9b18 | Remove an extra comment | Auxes/Dogey | Dogey/Modules/InspectModule.cs | Dogey/Modules/InspectModule.cs | using Discord;
using Discord.Commands;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Dogey.Modules
{
public class InspectModule : ModuleBase
{
public string Inspect<T>(T obj, string property = null)
{
var type = obj.GetType()... | using Discord;
using Discord.Commands;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace Dogey.Modules
{
public class InspectModule : ModuleBase
{
public string Inspect<T>(T obj, string property = null)
{
var type = obj.GetType()... | apache-2.0 | C# |
7a71e1014ae4ef6b0bc4b9b9d3ee1a5e6d7a27eb | add a test wrt mutability of Hash property | milleniumbug/Taxonomy | Tests/Program.cs | Tests/Program.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Common;
using NUnit.Framework;
using TaxonomyLib;
namespace Tests
{
[TestFixture]
class ATest
{
private string projectDirec... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Common;
using NUnit.Framework;
using TaxonomyLib;
namespace Tests
{
[TestFixture]
class ATest
{
private string projectDirec... | mit | C# |
d6454174cb03cf71edb2e327355b212088bd8dec | increase version no | gigya/microdot | SolutionVersion.cs | SolutionVersion.cs | #region Copyright
// Copyright 2017 Gigya 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
//
// THIS... | #region Copyright
// Copyright 2017 Gigya 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
//
// THIS... | apache-2.0 | C# |
62381bc4388c531d76b34fa119f96469ef757fc6 | Modify for rotation test ;-) | Vytek/HazelTestUDPClientUnity | Assets/Scripts/NetworkCube.cs | Assets/Scripts/NetworkCube.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NetworkCube : MonoBehaviour {
//The ID of the client that owns this player (so we can check if it's us updating)
public ushort objectID;
public bool DEBUG = true;
Vector3 lastPosition = Vector3.zero;
Vect... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NetworkCube : MonoBehaviour {
//The ID of the client that owns this player (so we can check if it's us updating)
public ushort objectID;
public bool DEBUG = true;
Vector3 lastPosition = Vector3.zero;
Vect... | mit | C# |
884f99bb96c136b25dca3931aaba239d3c9ff628 | implement Game | generateui/YouTown | YouTown/IGame.cs | YouTown/IGame.cs | using System.Collections.Generic;
namespace YouTown
{
public interface IGame
{
IBoard Board { get; }
IGameOptions Options { get; }
IList<Chat> Chats { get; }
IActionQueue Queue { get; }
IBank Bank { get; }
IPlayerList Players { get; }
IIden... | using System.Collections.Generic;
namespace YouTown
{
public interface IGame
{
IBoard Board { get; }
IGameOptions Options { get; }
IList<Chat> Chats { get; }
IActionQueue Queue { get; }
IBank Bank { get; }
IPlayerList Players { get; }
IIden... | mit | C# |
367a4ac5d7a0e9a091ff07720ef7ed8ec9a23afd | Fix FK conflict issue for DataTypeEnum | uo-lca/CalRecycleLCA,uo-lca/CalRecycleLCA | Database/DataModel/Enum.cs | Database/DataModel/Enum.cs |
namespace LcaDataModel {
using System;
public enum DataSourceEnum {
append=1,
fragments,
scenarios
}
public enum DataTypeEnum {
Flow=1,
FlowProperty=2,
Process=3,
UnitGroup=4,
Source=5,
LCIAMethod=6,
Contact=7,
F... |
namespace LcaDataModel {
using System;
public enum DataSourceEnum {
append=1,
fragments,
scenarios
}
public enum DataTypeEnum {
Flow=1,
FlowProperty=2,
Process=3,
UnitGroup=4,
Source=5,
LCIAMethod=6,
Contact=7,
F... | bsd-2-clause | C# |
6d437b7c73d9d47aa8b252dbbc02cbe4c4029717 | Reset current level in ILMode | Dalet/140-speedrun-timer,Dalet/140-speedrun-timer,Dalet/140-speedrun-timer | 140-speedrun-timer/LevelObject/ResetHotkey.cs | 140-speedrun-timer/LevelObject/ResetHotkey.cs | using System.Reflection;
using UnityEngine;
namespace SpeedrunTimerMod
{
class ResetHotkey : MonoBehaviour
{
static FieldInfo isInChargeStateField;
float _resetTimer;
float _resetHits;
void OnLevelWasLoaded(int level)
{
if (!ModLoader.IsLegacyVersion)
{
if (isInChargeStateField == null)
is... | using System.Reflection;
using UnityEngine;
namespace SpeedrunTimerMod
{
class ResetHotkey : MonoBehaviour
{
static FieldInfo isInChargeStateField;
float _resetTimer;
float _resetHits;
void OnLevelWasLoaded(int level)
{
if (!ModLoader.IsLegacyVersion)
{
if (isInChargeStateField == null)
is... | unlicense | C# |
5b708fb8d47d6e5bb4374b6d1144ed8e89db999b | Revert "NR Improve display of version number" | jbe2277/waf | src/NewsReader/NewsReader.Presentation/Services/AppInfoService.cs | src/NewsReader/NewsReader.Presentation/Services/AppInfoService.cs | using Waf.NewsReader.Applications.Services;
using Xamarin.Essentials;
namespace Waf.NewsReader.Presentation.Services
{
public class AppInfoService : IAppInfoService
{
public AppInfoService()
{
AppName = AppInfo.Name;
VersionString = AppInfo.VersionString;
}
... | using Waf.NewsReader.Applications.Services;
using Xamarin.Essentials;
namespace Waf.NewsReader.Presentation.Services
{
public class AppInfoService : IAppInfoService
{
public AppInfoService()
{
AppName = AppInfo.Name;
VersionString = AppInfo.VersionString + "." + AppInfo... | mit | C# |
71862c47ef4e8b407b0576faa17a62277f39867d | allow controllers to be added using a Type rather than a Generic Type | Pondidum/Conifer,Pondidum/Conifer | Conifer/ConventionalRouter.cs | Conifer/ConventionalRouter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Web.Http.Controllers;
namespace Conifer
{
public class ConventionalRouter : IConventionalRouter
{
private readonly List<TypedRoute> _routes;
public ConventionalRouter()
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection;
using System.Web.Http.Controllers;
namespace Conifer
{
public class ConventionalRouter : IConventionalRouter
{
private readonly List<TypedRoute> _routes;
public ConventionalRouter()
{
... | lgpl-2.1 | C# |
5e0a9d2d75ee6c72733d22a985ed4193bf4b80cd | Change to use contains | SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments | src/CommitmentsV2/SFA.DAS.CommitmentsV2/Extensions/QueryableApprenticeshipsExtensions.cs | src/CommitmentsV2/SFA.DAS.CommitmentsV2/Extensions/QueryableApprenticeshipsExtensions.cs | using System.Linq;
using SFA.DAS.CommitmentsV2.Models;
namespace SFA.DAS.CommitmentsV2.Extensions
{
public static class QueryableApprenticeshipsExtensions
{
public static IQueryable<Apprenticeship> Filter(this IQueryable<Apprenticeship> apprenticeships,
ApprenticeshipSearchFilters filters)... | using System.Linq;
using SFA.DAS.CommitmentsV2.Models;
namespace SFA.DAS.CommitmentsV2.Extensions
{
public static class QueryableApprenticeshipsExtensions
{
public static IQueryable<Apprenticeship> Filter(this IQueryable<Apprenticeship> apprenticeships,
ApprenticeshipSearchFilters filters)... | mit | C# |
3a98991cddd6382b0404c5d18c9a6692fd8f7c01 | Simplify code. | cston/roslyn,swaroop-sridhar/roslyn,AdamSpeight2008/roslyn-AdamSpeight2008,panopticoncentral/roslyn,drognanar/roslyn,dpoeschl/roslyn,tannergooding/roslyn,tannergooding/roslyn,srivatsn/roslyn,zooba/roslyn,reaction1989/roslyn,DustinCampbell/roslyn,khyperia/roslyn,tvand7093/roslyn,CyrusNajmabadi/roslyn,AlekseyTs/roslyn,ba... | src/Workspaces/Core/Portable/Remote/RemoteHostClientExtensions.cs | src/Workspaces/Core/Portable/Remote/RemoteHostClientExtensions.cs | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Remote;
namespace Microsoft.CodeAnalysis.Re... | // Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Threading;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Remote;
namespace Microsoft.CodeAnalysis.Re... | mit | C# |
fafd44dc44387d31936c9b8cac50ba20fb54f138 | Update grammar in EmptyObjectInitializerTests.cs #839 | giggio/code-cracker,code-cracker/code-cracker,code-cracker/code-cracker,jwooley/code-cracker,carloscds/code-cracker,eriawan/code-cracker,carloscds/code-cracker | test/CSharp/CodeCracker.Test/Style/EmptyObjectInitializerTests.cs | test/CSharp/CodeCracker.Test/Style/EmptyObjectInitializerTests.cs | using CodeCracker.CSharp.Style;
using Microsoft.CodeAnalysis;
using System.Threading.Tasks;
using Xunit;
namespace CodeCracker.Test.CSharp.Style
{
public class EmptyObjectInitializerTests : CodeFixVerifier<EmptyObjectInitializerAnalyzer, EmptyObjectInitializerCodeFixProvider>
{
[Fact]
public a... | using CodeCracker.CSharp.Style;
using Microsoft.CodeAnalysis;
using System.Threading.Tasks;
using Xunit;
namespace CodeCracker.Test.CSharp.Style
{
public class EmptyObjectInitializerTests : CodeFixVerifier<EmptyObjectInitializerAnalyzer, EmptyObjectInitializerCodeFixProvider>
{
[Fact]
public a... | apache-2.0 | C# |
1a2796818f99063494ca80b2bfffa20790d91a4c | Update AssemblyInfo to match others. | ztizzlegaming/CSGOWinBig-SteamBot,Murzyneczka/CSGOWinBig-SteamBot,ztizzlegaming/CSGOWinBig-SteamBot,Wendt9222/SteamBot-1,trervorx/SteamBot,wowzone/gamerpro,stackia/SteamBot,stackia/SteamBot,MadBender/SteamBot,Banana23/Tryout,waylaidwanderer/SteamTradeOffersBot,JackHarknes/Bot1,wqbill/SteamBot,terryhau/SteamBot,MattrAus... | SteamTrade/AssemblyInfo.cs | SteamTrade/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("SteamTrade")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly... | using System.Reflection;
using System.Runtime.CompilerServices;
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
[assembly: AssemblyTitle("SteamTrade")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly... | mit | C# |
8800dfd766f4b803a4f2d7ceb1452d28cbcbc26a | make readonly | JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity | unity/EditorPlugin/ModelWithLifetime.cs | unity/EditorPlugin/ModelWithLifetime.cs | using JetBrains.DataFlow;
using JetBrains.Platform.Unity.EditorPluginModel;
namespace JetBrains.Rider.Unity.Editor
{
public class ModelWithLifetime
{
public readonly EditorPluginModel Model;
public readonly Lifetime Lifetime;
public ModelWithLifetime(EditorPluginModel model, Lifetime lifetime)
{
... | using JetBrains.DataFlow;
using JetBrains.Platform.Unity.EditorPluginModel;
namespace JetBrains.Rider.Unity.Editor
{
public class ModelWithLifetime
{
public EditorPluginModel Model;
public Lifetime Lifetime;
public ModelWithLifetime(EditorPluginModel model, Lifetime lifetime)
{
Model = model... | apache-2.0 | C# |
ce16fda7e11781d67b3fe85ad8ef9c393e803841 | update assembly info | TheAngryByrd/DataflowEx,gridsum/DataflowEx | Gridsum.DataflowEx/Properties/AssemblyInfo.cs | Gridsum.DataflowEx/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | mit | C# |
9dc702de153daa472f63529721a18ed13b945d02 | Bump version number | Harteex/OpenPackageCreator | OpenPackageCreator/Properties/AssemblyInfo.cs | OpenPackageCreator/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Op... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Op... | mit | C# |
90404ae0f36b0c28776c5a5e86188c7f3f67ad63 | Add additional test case for package versions | TheBerkin/Rant | Rant.Tests/PackageVersions.cs | Rant.Tests/PackageVersions.cs | using NUnit.Framework;
using Rant.Resources;
namespace Rant.Tests
{
[TestFixture]
public class PackageVersions
{
[TestCase("1.2.5", "1.2.4", true)]
[TestCase("0.2.5", "0.2.4", true)]
[TestCase("0.0.3", "0.0.4", false)]
[TestCase("0.3.1", "0.4.0", false)]
public void VersionGreaterThan(string v1, string ... | using NUnit.Framework;
using Rant.Resources;
namespace Rant.Tests
{
[TestFixture]
public class PackageVersions
{
[TestCase("1.2.5", "1.2.4", true)]
[TestCase("0.2.5", "0.2.4", true)]
[TestCase("0.0.3", "0.0.4", false)]
[TestCase("0.3.1", "0.4.0", false)]
public void VersionGreaterThan(string v1, string ... | mit | C# |
f32c3e507da0e04421095b6e472744c177a20a49 | FIX logger variable in PS scripts | tfsaggregator/tfsaggregator-webhooks,tfsaggregator/tfsaggregator | Aggregator.Core/Script/PsScriptEngine.cs | Aggregator.Core/Script/PsScriptEngine.cs | using System.Collections.Generic;
using System.Management.Automation.Runspaces;
using Aggregator.Core.Interfaces;
using Aggregator.Core.Monitoring;
namespace Aggregator.Core
{
/// <summary>
/// Invokes Powershell scripting engine
/// </summary>
public class PsScriptEngine : ScriptEngine
{
... | using System.Collections.Generic;
using System.Management.Automation.Runspaces;
using Aggregator.Core.Interfaces;
using Aggregator.Core.Monitoring;
namespace Aggregator.Core
{
/// <summary>
/// Invokes Powershell scripting engine
/// </summary>
public class PsScriptEngine : ScriptEngine
{
... | apache-2.0 | C# |
24fcec73d0e652e060692a3c2e032fdc4e3cf251 | Disable cancel button when matched | bunashibu/kikan | Assets/Scripts/Matching/MatchingBoard.cs | Assets/Scripts/Matching/MatchingBoard.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using Hashtable = ExitGames.Client.Photon.Hashtable;
namespace Bunashibu.Kikan {
public class MatchingBoard : Photon.PunBehaviour {
void Start() {
SetApplyMode();
}
public void SetApplyMode() {
... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using Hashtable = ExitGames.Client.Photon.Hashtable;
namespace Bunashibu.Kikan {
public class MatchingBoard : Photon.PunBehaviour {
void Start() {
SetApplyMode();
}
public void SetApplyMode() {
... | mit | C# |
67a87e09cf617f0e8c7c4916da50c610cf3cb677 | use directx11. | jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,jkoritzinsky/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,SuperJMN/Avalonia,wieslawsoltes/Perspex,wieslawsoltes/Perspex,AvaloniaUI/Avalonia,jkoritzinsky/Avalonia,AvaloniaUI/Avalonia,SuperJMN/Avalonia,AvaloniaUI/Avalonia,Perspex/Pers... | src/Avalonia.OpenGL/AngleOptions.cs | src/Avalonia.OpenGL/AngleOptions.cs | using System.Collections.Generic;
namespace Avalonia.OpenGL
{
public class AngleOptions
{
public enum PlatformApi
{
DirectX9,
DirectX11
}
public List<PlatformApi> AllowedPlatformApis = new List<PlatformApi>
{
PlatformApi.DirectX11
};
}
}
| using System.Collections.Generic;
namespace Avalonia.OpenGL
{
public class AngleOptions
{
public enum PlatformApi
{
DirectX9,
DirectX11
}
public List<PlatformApi> AllowedPlatformApis = new List<PlatformApi>
{
PlatformApi.DirectX9
};
}
}
| mit | C# |
40809bfe39b1e662a38c58728e91c72ea6abd3a8 | Remove unnecessary using statement. | boumenot/Grobid.NET | test/Grobid.Test/Extensions.cs | test/Grobid.Test/Extensions.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace Grobid.Test
{
public static class Extensions
{
public static Stream ToStream(this string s)
{
var bytes = Encoding.UTF8.GetBytes(s);
return new ... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Grobid.Test
{
public static class Extensions
{
public static Stream ToStream(this string s)
{
var bytes = Encoding.UTF8.GetByt... | apache-2.0 | C# |
f982719c19368508d259447c5f87779077cf863a | remove unused files | jianghaolu/azure-powershell,bgold09/azure-powershell,jianghaolu/azure-powershell,yadavbdev/azure-powershell,yadavbdev/azure-powershell,atpham256/azure-powershell,tonytang-microsoft-com/azure-powershell,ClogenyTechnologies/azure-powershell,nemanja88/azure-powershell,haocs/azure-powershell,dominiqa/azure-powershell,yanta... | src/ResourceManager/Commerce/Commands.UsageAggregates.Test/ScenarioTests/UsageAggregatesTests.cs | src/ResourceManager/Commerce/Commands.UsageAggregates.Test/ScenarioTests/UsageAggregatesTests.cs | // ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// 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.apa... | // ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// 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.apa... | apache-2.0 | C# |
bb7dc1b63fd4bbc2659ec6a1d9aecbf84c5c9173 | set TinySatoException as Serializable. | karronoli/tiny-sato | TinySato/TinySatoException.cs | TinySato/TinySatoException.cs | namespace TinySato
{
using System;
using System.Runtime.Serialization;
[Serializable]
public class TinySatoException : Exception
{
public TinySatoException() { }
public TinySatoException(string message)
: base(message) { }
public TinySatoException(string messag... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TinySato
{
public class TinySatoException : Exception
{
public TinySatoException() { }
public TinySatoException(string message)
: base(message) { }
... | apache-2.0 | C# |
eed46e6c194f69611599d12aebc0c08a430692ba | Update ArrayEntity.cs | dimmpixeye/Unity3dTools | Runtime/LibMisc/ArrayEntity.cs | Runtime/LibMisc/ArrayEntity.cs | // Project : ecs
// Contacts : Pix - ask@pixeye.games
using System;
using System.Runtime.CompilerServices;
using Unity.IL2CPP.CompilerServices;
namespace Pixeye.Framework
{
[Serializable]
public struct ArrayEntity
{
public int length;
public ent[] source;
public ref ent this[int index]
{
[MethodImpl(M... | // Project : ecs
// Contacts : Pix - ask@pixeye.games
using System;
using System.Runtime.CompilerServices;
using Unity.IL2CPP.CompilerServices;
namespace Pixeye.Framework
{
[Serializable]
public struct ArrayEntity
{
public int length;
public ent[] source;
public ref ent this[int index]
{
[MethodImpl(M... | mit | C# |
3e1057dd21953502fd99deaa117c2a8cc62cc943 | Update EnumerableExtensions.cs | keith-hall/Extensions,keith-hall/Extensions | src/EnumerableExtensions.cs | src/EnumerableExtensions.cs | public static EnumerableExtensions {
public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Random rng)
{ // http://stackoverflow.com/questions/1287567/is-using-random-and-orderby-a-good-shuffle-algorithm
T[] elements = source.ToArray();
for (int i = elements.Length - 1; i >= 0; i--) {
// Swap... | public static EnumerableExtensions {
public static IEnumerable<T> Shuffle<T>(this IEnumerable<T> source, Random rng)
{ // http://stackoverflow.com/questions/1287567/is-using-random-and-orderby-a-good-shuffle-algorithm
T[] elements = source.ToArray();
for (int i = elements.Length - 1; i >= 0; i--) {
// Swap... | apache-2.0 | C# |
67bf7349ed6245c34024d56d919fde02da6e617b | Make statically typed numeric generation distinct | FreecraftCore/FreecraftCore.Serializer,FreecraftCore/FreecraftCore.Serializer | src/FreecraftCore.Serializer.Compiler/Emitters/Method/RootSerializationMethodEmitter.cs | src/FreecraftCore.Serializer.Compiler/Emitters/Method/RootSerializationMethodEmitter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace FreecraftCore.Serializer
{
public class RootSerializationMethodBlockEmitter<TSerializableType> : IMethodBlockEmittable, INestedClassesEmittable
where ... | using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace FreecraftCore.Serializer
{
public class RootSerializationMethodBlockEmitter<TSerializableType> : IMethodBlockEmittable, INestedClassesEmittable
where TSerializableType :... | agpl-3.0 | C# |
2b9b8404cd83f65c00f3068ce8396c00593d5a0e | Set version to 1.1.3.0 | da2x/EdgeDeflector | EdgeDeflector/Properties/AssemblyInfo.cs | EdgeDeflector/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Edg... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Edg... | mit | C# |
d67a701208e7c10aa86f1dd2425b08a0b78cb7bf | Revert changes to MainPageViewModel in commit a79cf096d41b784c2d989bd1b2bea736cc46cf5a, breaks data binding | tjcsl/ionapp-w10,tjcsl/ionapp-w10 | Ion10/ViewModels/MainPageViewModel.cs | Ion10/ViewModels/MainPageViewModel.cs | using Template10.Mvvm;
using System.Collections.Generic;
using System;
using System.Linq;
using System.Threading.Tasks;
using Windows.Security.Authentication.Web;
using Windows.UI.Popups;
using Template10.Services.NavigationService;
using Windows.UI.Xaml.Navigation;
using Windows.Web.Http;
using Ion10.Services;
namesp... | using Template10.Mvvm;
using System.Collections.Generic;
using System;
using System.Linq;
using System.Threading.Tasks;
using Windows.Security.Authentication.Web;
using Windows.UI.Popups;
using Template10.Services.NavigationService;
using Windows.UI.Xaml.Navigation;
using Windows.Web.Http;
using Ion10.Services;
namesp... | mit | C# |
05e322fabdea42799633e2425f351c59cf9655dc | update diagnostic demo to get the service from the registry | killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity | Assets/MixedRealityToolkit.Examples/Demos/Diagnostics/Scripts/DiagnosticsDemoControls.cs | Assets/MixedRealityToolkit.Examples/Demos/Diagnostics/Scripts/DiagnosticsDemoControls.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Diagnostics;
using Microsoft.MixedReality.Toolkit.Utilities;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Exampl... | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Utilities;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Examples.Demos
{
public class DiagnosticsDemoControl... | mit | C# |
6103c386e64e2fb4029197075cdfa6ec0674b25e | Update SamplePacket.cs | cfairchi/MulticastUDP | packets/SamplePacket.cs | packets/SamplePacket.cs | namespace MulticastUDP.packets {
public class SamplePacket : Packet {
public double DoubleValue {get;set;}
public string StringValue {get;set;}
public DateTime DateTimeValue {get;set}
public override PACKETTYPE PacketType {get { return PACKETTYPE.SAMPLE; }}
... | namespace MulticastUDP.packets {
public class SamplePacket : Packet {
public double DoubleValue {get;set;}
public string StringValue {get;set;}
public DateTime DateTimeValue {get;set}
public override PACKETTYPE PacketType {get { return PACKETTYPE.SAMPLE; }}
... | mit | C# |
44f5f3c2456971f755a9ac9c85d5078b00099e94 | Add missing } | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/LukeMurray.cs | src/Firehose.Web/Authors/LukeMurray.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class LukeMurray : IAmACommunityMember
{
public string FirstName => "Luke";
public string LastNam... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class LukeMurray : IAmACommunityMember
{
public string FirstName => "Luke";
public string LastNam... | mit | C# |
928b9a45cfc2beaac320cdc688d75a5fbe7995ef | Update MattMcNabb.cs | planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell,planetpowershell/planetpowershell | src/Firehose.Web/Authors/MattMcNabb.cs | src/Firehose.Web/Authors/MattMcNabb.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MattMcNabb : IAmACommunityMember
{
public string FirstName => "Matt";
public string LastName =... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using System.Web;
using Firehose.Web.Infrastructure;
namespace Firehose.Web.Authors
{
public class MattMcNabb : IAmACommunityMember
{
public string FirstName => "Matt";
public string LastName =... | mit | C# |
9107232ca795c6bfd58de2f69cbdfed7974ce0ec | Use Many<> instead of IReadOnlyList<> for new events | bwatts/Totem,bwatts/Totem | src/Totem/Runtime/Timeline/FlowCall.cs | src/Totem/Runtime/Timeline/FlowCall.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading;
using Totem.Runtime.Map;
using Totem.Runtime.Map.Timeline;
namespace Totem.Runtime.Timeline
{
/// <summary>
/// A call to a Before or When method of a <see cref="Flow"/>
/// </summary>
public c... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Claims;
using System.Threading;
using Totem.Runtime.Map;
using Totem.Runtime.Map.Timeline;
namespace Totem.Runtime.Timeline
{
/// <summary>
/// A call to a Before or When method of a <see cref="Flow"/>
/// </summary>
public c... | mit | C# |
4c5fa8590ccd9bde80c8f8aa5ebc73b0522e9f67 | Switch to incremental versioning | jcmoyer/Yeena | Yeena/Properties/AssemblyInfo.cs | Yeena/Properties/AssemblyInfo.cs | // Copyright 2013 J.C. Moyer
//
// 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 ... | // Copyright 2013 J.C. Moyer
//
// 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 ... | apache-2.0 | C# |
86f221bb606c034235ef66edc302abdb60c80a68 | Use generic implementation | ppy/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,EVAST9919/osu-framework,peppy/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework,EVAST9919/osu-framework,smoogipooo/osu-framework,ppy/osu-framework | osu.Framework/Input/KeyEventManager.cs | osu.Framework/Input/KeyEventManager.cs | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Input.Events;
using osu.Framework.Input.States;
using osuTK.Input;
namespace osu.Fram... | // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Input.Events;
using osu.Framework.Input.States;
using osuTK.Input;
namespace osu.Fram... | mit | C# |
cf59ed120878be5e9c0c029c6d0305ac24c187a9 | Change force emulation IE10 to IE11 Изменена принудительная эмуляция IE10 на IE11 | KriBetko/KryBot | KryBot/KryBot/Program.cs | KryBot/KryBot/Program.cs | using System;
using System.IO;
using System.Windows.Forms;
using Microsoft.Win32;
namespace KryBot
{
internal static class Program
{
/// <summary>
/// Главная точка входа для приложения.
/// </summary>
[STAThread]
private static void Main()
{
Reg... | using System;
using System.IO;
using System.Windows.Forms;
using Microsoft.Win32;
namespace KryBot
{
internal static class Program
{
/// <summary>
/// Главная точка входа для приложения.
/// </summary>
[STAThread]
private static void Main()
{
Reg... | apache-2.0 | C# |
c990516f0c6063c2d92e3ed372cf46bdfc6cfcf9 | Revert "Added new property" | ravi-msi/practicegit,ravi-msi/practicegit,ravi-msi/practicegit | PracticeGit/PracticeGit/AddNewFile.cs | PracticeGit/PracticeGit/AddNewFile.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PracticeGit
{
class AddNewFile
{
public int MyProperty { get; set; }
public string Commit1 { get; set; }
public string Commit2 { get; set; }
public i... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PracticeGit
{
class AddNewFile
{
public int MyProperty { get; set; }
public string Commit1 { get; set; }
public string Commit2 { get; set; }
public i... | mit | C# |
86dde596b8b4c84f55b1e203db11344f585a3058 | Update Error.cshtml.cs | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore | src/ProjectTemplates/Web.Spa.ProjectTemplates/content/React-CSharp/Pages/Error.cshtml.cs | src/ProjectTemplates/Web.Spa.ProjectTemplates/content/React-CSharp/Pages/Error.cshtml.cs | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.Extensions.Logging;
namespace Company.WebApplication1.Pages
{
[ResponseCache(Duration = 0, Location =... | using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Company.WebApplication1.Pages
{
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore... | apache-2.0 | C# |
1f4cf62c8ba5f80bec59fa968d1fa04ccaf676d6 | add log | algolia/algoliasearch-client-csharp | Algolia.Search.Test/BaseTest.cs | Algolia.Search.Test/BaseTest.cs | using System;
using System.Collections.Generic;
namespace Algolia.Search.Test
{
public class BaseTest
{
public static string _testApplicationID = "";
public static string _testApiKey = "";
public AlgoliaClient _client;
public Index _index;
public IndexHelper<TestModel> _indexHelper;
... | using System;
using System.Collections.Generic;
namespace Algolia.Search.Test
{
public class BaseTest
{
public static string _testApplicationID = "";
public static string _testApiKey = "";
public AlgoliaClient _client;
public Index _index;
public IndexHelper<TestModel> _indexHelper;
... | mit | C# |
77f4735f1698e40236846fe5ac53533ed002f240 | fix RIDER-44139 (#1657) | JetBrains/resharper-unity,JetBrains/resharper-unity,JetBrains/resharper-unity | resharper/resharper-unity/src/Rider/UnitTesting/UnityUnitTestProjectArtifactResolverCollaborator.cs | resharper/resharper-unity/src/Rider/UnitTesting/UnityUnitTestProjectArtifactResolverCollaborator.cs | using JetBrains.ProjectModel;
using JetBrains.ReSharper.Plugins.Unity.ProjectModel;
using JetBrains.ReSharper.UnitTestFramework.Exploration;
using JetBrains.Util;
using JetBrains.Util.Dotnet.TargetFrameworkIds;
namespace JetBrains.ReSharper.Plugins.Unity.Rider.UnitTesting
{
[SolutionComponent]
public class Uni... | using JetBrains.ProjectModel;
using JetBrains.ReSharper.Plugins.Unity.ProjectModel;
using JetBrains.ReSharper.UnitTestFramework.Exploration;
using JetBrains.Util;
using JetBrains.Util.Dotnet.TargetFrameworkIds;
namespace JetBrains.ReSharper.Plugins.Unity.Rider.UnitTesting
{
[SolutionComponent]
public class Uni... | apache-2.0 | C# |
a9997a243cabbda90d7dfa7ca7e5f57393f7fda7 | Update to Cake.Issues.Recipe 0.4.0 | cake-contrib/Cake.Recipe,cake-contrib/Cake.Recipe | Cake.Recipe/Content/addins.cake | Cake.Recipe/Content/addins.cake | ///////////////////////////////////////////////////////////////////////////////
// ADDINS
///////////////////////////////////////////////////////////////////////////////
#addin nuget:?package=Cake.Codecov&version=0.9.1
#addin nuget:?package=Cake.Coveralls&version=0.10.2
#addin nuget:?package=Cake.Coverlet&version=2.4.... | ///////////////////////////////////////////////////////////////////////////////
// ADDINS
///////////////////////////////////////////////////////////////////////////////
#addin nuget:?package=Cake.Codecov&version=0.9.1
#addin nuget:?package=Cake.Coveralls&version=0.10.2
#addin nuget:?package=Cake.Coverlet&version=2.4.... | mit | C# |
6425bc5f44234bc238a0c3753bcaf1bcd697266b | Make MinValue and MaxValue from BindableDouble public | ppy/osu-framework,EVAST9919/osu-framework,naoey/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,default0/osu-framework,paparony03/osu-framework,ZLima12/osu-framework,peppy/osu-framework,smoogipooo/osu-framework,EVAST9919/osu-framework,RedNesto/osu-framework,DrabWeb/osu-framework,Tom94/osu-framework,ppy/osu-fram... | osu.Framework/Configuration/BindableDouble.cs | osu.Framework/Configuration/BindableDouble.cs | // Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
using System.Globalization;
using OpenTK;
namespace osu.Framework.Configuration
{
public class BindableDouble : Bindable<double>
... | // Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
using System;
using System.Globalization;
using OpenTK;
namespace osu.Framework.Configuration
{
public class BindableDouble : Bindable<double>
... | mit | C# |
082000e21f6c32ef61c5380c3e874cb686edd593 | Add to the details page too | ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab,ucdavis/Anlab | Anlab.Mvc/Views/Analysis/Details.cshtml | Anlab.Mvc/Views/Analysis/Details.cshtml | @model AnlabMvc.Models.Analysis.AnalysisMethodViewModel
@{
ViewBag.Title = @Model.AnalysisMethod.Title;
}
<div class="col-md-8">
<h2>@Model.AnalysisMethod.Id</h2>
<h5>@Model.AnalysisMethod.Title</h5>
@Html.Raw(Model.HtmlContent)
</div>
<div class="col-md-4">
<ul>
@foreach (var method... | @model AnlabMvc.Models.Analysis.AnalysisMethodViewModel
@{
ViewBag.Title = @Model.AnalysisMethod.Title;
}
<div class="col-md-8">
<h2>@Model.AnalysisMethod.Id</h2>
<h5>@Model.AnalysisMethod.Title</h5>
@Html.Raw(Model.HtmlContent)
</div>
<div class="col-md-4">
<ul>
@foreach (var metho... | mit | C# |
3cb31a5bfca1288bf7a88d330d77ee5fab09a07a | Indent with 4 spaces | msarchet/Bundler,msarchet/Bundler | BundlerMiddleware/IBundleResolver.cs | BundlerMiddleware/IBundleResolver.cs | namespace BundlerMiddleware
{
/// <summary>
/// Used for creating BundlerResolvers for injecting tags into the response
/// </summary>
public interface IBundlerResolver
{
/// <summary>
/// Get the HTML to be inserted into response
/// </summary>
/// <param name="bund... | namespace BundlerMiddleware
{
/// <summary>
/// Used for creating BundlerResolvers for injecting tags into the response
/// </summary>
public interface IBundlerResolver
{
/// <summary>
/// Get the HTML to be inserted into response
/// </summary>
/// <param name="bundleName">The name of the bundle</p... | mit | C# |
b9863c7ee9f1a05f6196068d7d076102b577d3f8 | Update App.xaml.cs | wieslawsoltes/Draw2D,wieslawsoltes/Draw2D,wieslawsoltes/Draw2D | src/Draw2D/App.xaml.cs | src/Draw2D/App.xaml.cs | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Avalonia;
using Avalonia.Logging.Serilog;
using Avalonia.Markup.Xaml;
using Draw2D.Editor;
using Draw2D.Views;
namespace Draw2D
{
public cl... | // Copyright (c) Wiesław Šoltés. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using Avalonia;
using Avalonia.Logging.Serilog;
using Avalonia.Markup.Xaml;
using Draw2D.Editor;
using Draw2D.Views;
namespace Draw2D
{
public cl... | mit | C# |
dafef2f256959ced350b1630cdd81ca93f172a49 | Remove usings. | grantcolley/authorisationmanager,grantcolley/authorisationmanager,grantcolley/authorisationmanager,grantcolley/authorisationmanager | Service/WebAPI/App_Start/WebApiConfig.cs | Service/WebAPI/App_Start/WebApiConfig.cs | using System.Web.Http;
namespace DevelopmentInProgress.AuthorisationManager.WebAPI
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API configuration and services
// Web API routes
config.MapHttpAttributeRo... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;
namespace DevelopmentInProgress.AuthorisationManager.WebAPI
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API configuration and services
... | apache-2.0 | C# |
caeab53a2dd80997b797727b660bff0fc2def188 | Use correct property during ConvertValue | larsbrubaker/MatterControl,mmoening/MatterControl,unlimitedbacon/MatterControl,jlewin/MatterControl,jlewin/MatterControl,mmoening/MatterControl,larsbrubaker/MatterControl,larsbrubaker/MatterControl,unlimitedbacon/MatterControl,jlewin/MatterControl,unlimitedbacon/MatterControl,unlimitedbacon/MatterControl,larsbrubaker/M... | SlicerConfiguration/UIFields/IntField.cs | SlicerConfiguration/UIFields/IntField.cs | /*
Copyright (c) 2017, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and... | /*
Copyright (c) 2017, Lars Brubaker, John Lewin
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and... | bsd-2-clause | C# |
5cb3f9c2d592041b80cb2787826f07fa47260695 | Use `DistinctUntilChanged` when capturing undoable state | Weingartner/SolidworksAddinFramework | SolidworksAddinFramework/ReactiveUndo.cs | SolidworksAddinFramework/ReactiveUndo.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using ReactiveUI;
namespace SolidworksAddinFramework
{
/// <summary>
/// An undo stack for PropertyManagerPages. The
/// target object is monitored for change notifications
... | using System;
using System.Collections.Generic;
using ReactiveUI;
namespace SolidworksAddinFramework
{
/// <summary>
/// An undo stack for PropertyManagerPages. The
/// target object is monitored for change notifications
/// amd JSON copies are written to a stack. Undo
/// writes older versions bac... | mit | C# |
dc9bb22a23603d5daf014d5e0db5302c3319fc92 | Update spacing in ScriptExecuter | jrusbatch/compilify,appharbor/ConsolR,vendettamit/compilify,appharbor/ConsolR,vendettamit/compilify,jrusbatch/compilify | Compilify/Services/ScriptExecuter.cs | Compilify/Services/ScriptExecuter.cs | using System;
using System.Collections.Generic;
using Roslyn.Compilers.CSharp;
using Roslyn.Scripting;
using Roslyn.Scripting.CSharp;
namespace Compilify.Services
{
public class ScriptExecuter : MarshalByRefObject
{
static readonly ScriptExecuter Host = new ScriptExecuter();
public string Exe... | using System;
using System.Collections.Generic;
using Roslyn.Compilers.CSharp;
using Roslyn.Scripting;
using Roslyn.Scripting.CSharp;
namespace Compilify.Services
{
public class ScriptExecuter : MarshalByRefObject
{
static readonly ScriptExecuter Host = new ScriptExecuter();
public string Exe... | mit | C# |
d134f0aeabcf5619535e3a881a5947876f6484e6 | Update DescriptionBox.cs | a312b/SteamMaster | SteamMaster/SteamUI/DescriptionBox.cs | SteamMaster/SteamUI/DescriptionBox.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DummyClassSolution
{
public class DescriptionBox : RichTextBox
{
//// Source of idea https://social.msdn.micr... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DummyClassSolution
{
public class DescriptionBox : RichTextBox
{
//// see http://social.msdn.microsoft.com/Fo... | mit | C# |
09d76bb994877ebee234fb9bf40995ea209f5d08 | add from field to notification list | ucdavis/Badges,ucdavis/Badges | Badges/Views/Notifications/Index.cshtml | Badges/Views/Notifications/Index.cshtml | @{
ViewBag.Title = "My Notifications";
}
<div class="col-md-10 mountain-view">
<span class="header-text">Your notifications</span>
</div>
<div class="recent">
<table>
<tbody>
<tr>
<th><h3>Message</h3></th>
<th><em>Recieved on</em></th>
... | @{
ViewBag.Title = "My Notifications";
}
<div class="col-md-10 mountain-view">
<span class="header-text">Your notifications</span>
</div>
<div class="recent">
<table>
<tbody>
<tr>
<th><h3>Message</h3></th>
<th colspan="2"><em>Recieved on</em></... | mpl-2.0 | C# |
95223b87de05ba2e25d1b1f06747177b749110d9 | update bio tagline (#144) | planetxamarin/planetxamarin,beraybentesen/planetxamarin,planetxamarin/planetxamarin,planetxamarin/planetxamarin,MabroukENG/planetxamarin,beraybentesen/planetxamarin,MabroukENG/planetxamarin,planetxamarin/planetxamarin,MabroukENG/planetxamarin,beraybentesen/planetxamarin | src/Firehose.Web/Authors/GeertVanDerCruijsen.cs | src/Firehose.Web/Authors/GeertVanDerCruijsen.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using Firehose.Web.Infrastructure;
namespace Firehose.Web
{
public class GeertVanDerCruijsen : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Geert";
public string LastName => "van d... | using System;
using System.Collections.Generic;
using System.Linq;
using System.ServiceModel.Syndication;
using Firehose.Web.Infrastructure;
namespace Firehose.Web
{
public class GeertVanDerCruijsen : IAmACommunityMember, IFilterMyBlogPosts
{
public string FirstName => "Geert";
public string L... | mit | C# |
76603b39dea5bc92b86c9da30855281b0cecad69 | Remove flaky test. | AlexGhiondea/OutputColorizer,AlexGhiondea/OutputColorizer | test/ConsoleWriter.Tests.cs | test/ConsoleWriter.Tests.cs | using NUnit.Framework;
using OutputColorizer;
using System;
using System.IO;
namespace UnitTests
{
public partial class ConsoleWriterTests
{
[Test]
public void TestGetForegroundColor()
{
ConsoleWriter cw = new ConsoleWriter();
Assert.AreEqual(Console.ForegroundC... | using NUnit.Framework;
using OutputColorizer;
using System;
using System.IO;
namespace UnitTests
{
public partial class ConsoleWriterTests
{
[Test]
public void TestGetForegroundColor()
{
ConsoleWriter cw = new ConsoleWriter();
Assert.AreEqual(Console.ForegroundC... | mit | C# |
db9d3d706a46da5e7575216038064612fcc71533 | allow logical OR in Search | untoldone/bloomapi.net | BloomApi/Entities/BloomApiSearchTerm.cs | BloomApi/Entities/BloomApiSearchTerm.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BloomApi.Entities
{
public enum BloomApiSearchOperation { Equals, Prefix, Fuzzy, GreaterThan, LessThan, GreaterThanEquals, LessThanEquals }
public class BloomApiSearchTerm
{
public string Key { get; se... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace BloomApi.Entities
{
public enum BloomApiSearchOperation { Equals, Prefix, Fuzzy, GreaterThan, LessThan, GreaterThanEquals, LessThanEquals }
public class BloomApiSearchTerm
{
public string Key { get; se... | mit | C# |
5b105656a97180e33b1e97b1cd36a7ac4a1d0869 | Use cell.Value instead of cell.Value2 to allow for Date formatting | TNG/xtab-opener | XtabFileOpener/TableContainer/SpreadsheetTableContainer/ExcelTableContainer/ExcelTable.cs | XtabFileOpener/TableContainer/SpreadsheetTableContainer/ExcelTableContainer/ExcelTable.cs | using System;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Office.Interop.Excel;
namespace XtabFileOpener.TableContainer.SpreadsheetTableContainer.ExcelTableContainer
{
/// <summary>
/// Implementation of Table, that manages an Excel table
/// </summary>
internal... | using System;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Office.Interop.Excel;
namespace XtabFileOpener.TableContainer.SpreadsheetTableContainer.ExcelTableContainer
{
/// <summary>
/// Implementation of Table, that manages an Excel table
/// </summary>
internal... | apache-2.0 | C# |
6d7073068561b94fa939360a9ea99ebaa513a856 | Use this qualifier | dirkrombauts/pickles,picklesdoc/pickles,picklesdoc/pickles,dirkrombauts/pickles,picklesdoc/pickles,magicmonty/pickles,ludwigjossieaux/pickles,ludwigjossieaux/pickles,blorgbeard/pickles,magicmonty/pickles,blorgbeard/pickles,dirkrombauts/pickles,picklesdoc/pickles,magicmonty/pickles,blorgbeard/pickles,ludwigjossieaux/pic... | src/Pickles/Pickles.Test/ObjectModel/Factory.cs | src/Pickles/Pickles.Test/ObjectModel/Factory.cs | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="Factory.cs" company="PicklesDoc">
// Copyright 2011 Jeffrey Cameron
// Copyright 2012-present PicklesDoc team and community contributors
//
//
// Licensed under the Apache Li... | // --------------------------------------------------------------------------------------------------------------------
// <copyright file="Factory.cs" company="PicklesDoc">
// Copyright 2011 Jeffrey Cameron
// Copyright 2012-present PicklesDoc team and community contributors
//
//
// Licensed under the Apache Li... | apache-2.0 | C# |
132241424db9f438c102f2a7aeae41675c3754ed | Apply FollowPoint alpha to inner container (should not affect legacy skins) | smoogipoo/osu,2yangk23/osu,DrabWeb/osu,ppy/osu,ZLima12/osu,naoey/osu,2yangk23/osu,ppy/osu,ZLima12/osu,NeoAdonis/osu,EVAST9919/osu,UselessToucan/osu,EVAST9919/osu,peppy/osu,ppy/osu,johnneijzen/osu,peppy/osu,UselessToucan/osu,naoey/osu,peppy/osu,smoogipoo/osu,peppy/osu-new,johnneijzen/osu,smoogipooo/osu,naoey/osu,NeoAdon... | osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs | osu.Game.Rulesets.Osu/Objects/Drawables/Connections/FollowPoint.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.F... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using OpenTK.Graphics;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.F... | mit | C# |
13b5d935fa7a50ceea62fe935bc79a0f78a1024b | Add torque to launched planets | aornelas/Tiny-Planets,aornelas/Tiny-Planets | Assets/PlanetSpawner.cs | Assets/PlanetSpawner.cs | using UnityEngine;
using System.Collections;
public class PlanetSpawner : MonoBehaviour {
public GameObject camera;
public GameObject planetPrefab;
public GravityAttractor blackHole;
// public GravityAttractor blackHole1;
// public GravityAttractor blackHole2;
public float thrust = 100f;
public float torque = 2... | using UnityEngine;
using System.Collections;
public class PlanetSpawner : MonoBehaviour {
public GameObject camera;
public GameObject planetPrefab;
public GravityAttractor blackHole;
// public GravityAttractor blackHole1;
// public GravityAttractor blackHole2;
public float force = 100f;
void Start()
{
}
... | mit | C# |
3c8759f0507a20cae1d0a9030e9a5f5d74b6cc5e | fix UT | ariesy/Bowling | Bowling.Tests/BowlingMachineTests.cs | Bowling.Tests/BowlingMachineTests.cs | using NUnit.Framework;
using Rhino.Mocks;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sirius.Bowling.Core.Tests
{
[TestFixture]
public class BowlingMachineTests
{
[Test]
public void TestThrow()
{
... | using NUnit.Framework;
using Rhino.Mocks;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sirius.Bowling.Core.Tests
{
[TestFixture]
public class BowlingMachineTests
{
[Test]
public void TestThrow()
{
... | mit | C# |
3b8b0d050125c69297f4d52e2a7713f48bd1414d | Make Tag a struct | Nezaboodka/Nevod.TextParsing,Nezaboodka/Nevod.TextParsing | Source/TextParser/Common/Tag.cs | Source/TextParser/Common/Tag.cs | namespace TextParser.Common
{
public struct Tag
{
public int TokenPosition;
public int TokenLength;
public string TagName;
}
} | namespace TextParser.Common
{
public class Tag
{
public int TokenPosition;
public int TokenLength;
public string TagName;
}
} | mit | C# |
335420283a3a26e12a5eb660ba8b5af1166bfc5e | Add stretchblt for copy and resize | mika76/mamesaver | Mamesaver/Windows/PlatformInvokeGDI32.cs | Mamesaver/Windows/PlatformInvokeGDI32.cs | using System;
using System.Runtime.InteropServices;
namespace Mamesaver.Windows
{
// This class contains the GDI32 APIs used...
public class PlatformInvokeGdi32
{
public const int SRCOPY = 13369376;
[DllImport("gdi32.dll", EntryPoint = "DeleteDC")]
public static extern IntPtr Dele... | using System;
using System.Runtime.InteropServices;
namespace Mamesaver.Windows
{
// This class contains the GDI32 APIs used...
public class PlatformInvokeGdi32
{
public const int SRCOPY = 13369376;
[DllImport("gdi32.dll", EntryPoint = "DeleteDC")]
public static extern IntPtr Dele... | mit | C# |
9ad81702ed48362a365d93117d99a477b3c35972 | Bump version | cbcrc/LinkIt.AutoMapperExtensions | RC.AutoMapper/Properties/AssemblyInfo.cs | RC.AutoMapper/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RC... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RC... | mit | C# |
daa2ca7db5ec2d1e99af66a144e0a72dd50adbbf | Test commit | ZyshchykMaksim/WCF.REST,ZyshchykMaksim/WCF.REST,ZyshchykMaksim/WCF.REST | Web.WebSocket/Views/Home/Index.cshtml | Web.WebSocket/Views/Home/Index.cshtml | @{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>WebSocket</title>
</head>
<body>
<h2>Push messages</h2>
<strong>Test</strong>
<div id="messages"></div>
<script src="@Url.Content("~/scripts/jquery-2.2.1.js")"></script>
<script src="@Url.Content("~/scripts/bootstrap.js")"></script>
... | @{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<title>WebSocket</title>
</head>
<body>
<h2>Push messages</h2>
<div id="messages"></div>
<script src="@Url.Content("~/scripts/jquery-2.2.1.js")"></script>
<script src="@Url.Content("~/scripts/bootstrap.js")"></script>
<script type="text... | mit | C# |
30f793007e92135ca597e1caaf951cec2edaf339 | Add missing copyright | StephenHodgson/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,DDReaper/MixedRealityToolkit-Unity,vladkol/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,killerantz/HoloToolkit-Unity,vladkol/MixedRealityToolkit-Unity,killerantz/HoloToolkit-Unity,vladkol/MixedRealityToolkit-Unity | Assets/MixedRealityToolkit/_Core/Inspectors/Profiles/MixedRealityDiagnosticsSystemProfileInspector.cs | Assets/MixedRealityToolkit/_Core/Inspectors/Profiles/MixedRealityDiagnosticsSystemProfileInspector.cs | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using Microsoft.MixedReality.Toolkit.Core.Definitions.Diagnostics;
using Microsoft.MixedReality.Toolkit.Core.Managers;
using UnityEditor;
using UnityEngine;
namesp... | using Microsoft.MixedReality.Toolkit.Core.Definitions.Diagnostics;
using Microsoft.MixedReality.Toolkit.Core.Managers;
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.Inspectors.Profiles
{
[CustomEditor(typeof(MixedRealityD... | mit | C# |
b95cc798b2b8d995422bf120118dfcb56461c44f | Remove unused fallback | EVAST9919/osu,NeoAdonis/osu,naoey/osu,smoogipoo/osu,peppy/osu,naoey/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,johnneijzen/osu,EVAST9919/osu,naoey/osu,ZLima12/osu,DrabWeb/osu,smoogipoo/osu,smoogipooo/osu,UselessToucan/osu,DrabWeb/osu,peppy/osu,ZLima12/osu,peppy/osu-new,johnneijzen/osu,NeoAdonis/osu,DrabWeb/osu,2yang... | osu.Game/Rulesets/Scoring/ScoreStore.cs | osu.Game/Rulesets/Scoring/ScoreStore.cs | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.IO;
using osu.Framework.Logging;
using osu.Framework.Platform;
using osu.Game.Beatmaps;
using osu.Game.Database;
using osu.Game.IPC;
using os... | // Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.IO;
using osu.Framework.Logging;
using osu.Framework.Platform;
using osu.Game.Beatmaps;
using osu.Game.Database;
using osu.Game.IPC;
using os... | mit | C# |
9862a9cadf0b3e11c6b61c35298ffb221e0af74d | Remove un-needed extension methods. | izrik/ChamberLib,izrik/ChamberLib,izrik/ChamberLib | ChamberLib/ViewportHelper.cs | ChamberLib/ViewportHelper.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using XMatrix = Microsoft.Xna.Framework.Matrix;
namespace ChamberLib
{
public static class ViewportHelper
{
public static Matrix GenerateSpriteBatchProjection(this Viewport viewport)
{
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using XMatrix = Microsoft.Xna.Framework.Matrix;
namespace ChamberLib
{
public static class ViewportHelper
{
public static RectangleI GetRectangle(this Viewport vp)
{
return new Rectangl... | lgpl-2.1 | C# |
013e582e53189956aaf146739116d86efcff8174 | Add SessionId field | api-ai/api-ai-net,api-ai/api-ai-net,dialogflow/dialogflow-dotnet-client,dialogflow/dialogflow-dotnet-client | ApiAiSDK/Model/AIResponse.cs | ApiAiSDK/Model/AIResponse.cs | //
// API.AI .NET SDK - client-side libraries for API.AI
// =================================================
//
// Copyright (C) 2015 by Speaktoit, Inc. (https://www.speaktoit.com)
// https://www.api.ai
//
// *************************************************************************************************************... | //
// API.AI .NET SDK - client-side libraries for API.AI
// =================================================
//
// Copyright (C) 2015 by Speaktoit, Inc. (https://www.speaktoit.com)
// https://www.api.ai
//
// *************************************************************************************************************... | apache-2.0 | C# |
35747649e035e91cf19839b2717c4470d56dd5bb | Add File field to lock object as event source (#475) | box/box-windows-sdk-v2 | Box.V2/Models/BoxFileLock.cs | Box.V2/Models/BoxFileLock.cs | using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json.Converters;
namespace Box.V2.Models
{
/// <summary>
/// Box representation of a file
/// </summary>
public class BoxFileLock : BoxEntity
{
public const string F... | using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Newtonsoft.Json.Converters;
namespace Box.V2.Models
{
/// <summary>
/// Box representation of a file
/// </summary>
public class BoxFileLock : BoxEntity
{
public const string F... | apache-2.0 | C# |
af3b27c08f484d30e9c0a7284d136d06f37e0aff | Fix wrong method used in WinForms colore->systemcolor | WolfspiritM/Colore,CoraleStudios/Colore | Corale.Colore.WinForms/Extensions.cs | Corale.Colore.WinForms/Extensions.cs | // <copyright file="Extensions.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without rest... | // <copyright file="Extensions.cs" company="Corale">
// Copyright © 2015 by Adam Hellberg and Brandon Scott.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without rest... | mit | C# |
557713fe5f3323b9919b0b2994e92acc05ae67f3 | Increase version | Tunous/EEPhysics,cap9/EEPhysics | EEPhysics/Properties/AssemblyInfo.cs | EEPhysics/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("EE... | using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("EE... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.