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 |
|---|---|---|---|---|---|---|---|---|
c520d717466d834f421ceae3b55faf0bbe39b58c | Add xmldoc to ITextureUpload interface | ppy/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ZLima12/osu-framework,smoogipooo/osu-framework,peppy/osu-framework,ppy/osu-framework,ppy/osu-framework,peppy/osu-framework,ZLima12/osu-framework | osu.Framework/Graphics/Textures/ITextureUpload.cs | osu.Framework/Graphics/Textures/ITextureUpload.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;
using osu.Framework.Graphics.Primitives;
using osuTK.Graphics.ES30;
using SixLabors.ImageSharp.PixelFormats;
namespace osu.Framework.Graphics.Textures
{
... | // 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;
using osu.Framework.Graphics.Primitives;
using osuTK.Graphics.ES30;
using SixLabors.ImageSharp.PixelFormats;
namespace osu.Framework.Graphics.Textures
{
... | mit | C# |
5ed1540a12bac009c075e6cbd77744824d203acd | Handle unhover state change better | johnneijzen/osu,UselessToucan/osu,ppy/osu,smoogipoo/osu,ppy/osu,smoogipoo/osu,UselessToucan/osu,NeoAdonis/osu,2yangk23/osu,smoogipoo/osu,UselessToucan/osu,ZLima12/osu,EVAST9919/osu,peppy/osu,johnneijzen/osu,smoogipooo/osu,peppy/osu,NeoAdonis/osu,EVAST9919/osu,ppy/osu,NeoAdonis/osu,peppy/osu-new,ZLima12/osu,peppy/osu,2y... | osu.Game/Graphics/Containers/OsuHoverContainer.cs | osu.Game/Graphics/Containers/OsuHoverContainer.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 osu.Framework.Allocation;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
using osu.Framework.Input.Events;
using osuTK.Graphic... | // 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 osu.Framework.Allocation;
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics;
using osu.Framework.Input.Events;
using osuTK.Graphic... | mit | C# |
363ef2a6a382336d23526e46b3c6d3f365f9ffd2 | Make Networking.GetWorkgroupName() work under Windows XP | nwoolls/MultiMiner,nwoolls/MultiMiner,IWBWbiz/MultiMiner,IWBWbiz/MultiMiner | MultiMiner.Utility/Networking.cs | MultiMiner.Utility/Networking.cs | using System;
using System.Management;
namespace MultiMiner.Utility
{
public class Networking
{
public static string GetWorkGroup()
{
string result = String.Empty;
if (OSVersionPlatform.GetConcretePlatform() == PlatformID.MacOSX)
{
//OS X
... | using System;
using System.Management;
namespace MultiMiner.Utility
{
public class Networking
{
public static string GetWorkGroup()
{
string result = String.Empty;
if (OSVersionPlatform.GetConcretePlatform() == PlatformID.MacOSX)
{
//OS X
... | mit | C# |
9c4eb0e02d34753ca062216427e182d6c72c455e | Add Equals to Capability<T> | kazyx/kz-remote-api | Project/Util/SharedStructures.cs | Project/Util/SharedStructures.cs | using System.Collections.Generic;
namespace Kazyx.RemoteApi
{
/// <summary>
/// Response of getMethodTypes API.
/// </summary>
public class MethodType
{
/// <summary>
/// Name of API
/// </summary>
public string Name { set; get; }
/// <summary>
/// R... | using System.Collections.Generic;
namespace Kazyx.RemoteApi
{
/// <summary>
/// Response of getMethodTypes API.
/// </summary>
public class MethodType
{
/// <summary>
/// Name of API
/// </summary>
public string Name { set; get; }
/// <summary>
/// R... | mit | C# |
c5b7d6546674461af411f282e21c2bc67c669fc1 | fix null ref | Cologler/jasily.cologler | Jasily.Core/Collections/ObjectModel/ObservableCollectionGroup.cs | Jasily.Core/Collections/ObjectModel/ObservableCollectionGroup.cs | using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
namespace System.Collections.ObjectModel
{
public class ObservableCollectionGroup<TKey, TElement> : ObservableCollection<TElement>, IGrouping<TKey, TElement>
{
private TKey key;
public ObservableCollec... | using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
namespace System.Collections.ObjectModel
{
public class ObservableCollectionGroup<TKey, TElement> : ObservableCollection<TElement>, IGrouping<TKey, TElement>
{
TKey _key;
public ObservableCollectionGroup(TKey ke... | mit | C# |
b28e3aa7d32db4d4e3e05d1f623c1b2bf9194272 | Add test explicitly checking recursion | nunit/nunit,mjedrzejek/nunit,nunit/nunit,mjedrzejek/nunit | src/NUnitFramework/tests/Api/NUnitIssue52.cs | src/NUnitFramework/tests/Api/NUnitIssue52.cs | using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Runtime.CompilerServices;
using NUnit.Framework.Constraints;
namespace NUnit.Framework.Api
{
[TestFixture]
public class NUnitIssue52
{
[TestCaseSource(nameof(GetTestCa... | using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using NUnit.Framework.Constraints;
namespace NUnit.Framework.Api
{
[TestFixture]
public class NUnitIssue52
{
class SelfContainer : IEnumerable
{
public IEnumera... | mit | C# |
3e8e4e4564d2c21643b46901d1498dddb7ad27e0 | Update the set of mappings for the PCL version. | zaccharles/nodatime,zaccharles/nodatime,jskeet/nodatime,nodatime/nodatime,BenJenkinson/nodatime,jskeet/nodatime,zaccharles/nodatime,zaccharles/nodatime,malcolmr/nodatime,nodatime/nodatime,BenJenkinson/nodatime,malcolmr/nodatime,malcolmr/nodatime,zaccharles/nodatime,zaccharles/nodatime,malcolmr/nodatime | src/NodaTime.TzdbCompiler/Tzdb/PclSupport.cs | src/NodaTime.TzdbCompiler/Tzdb/PclSupport.cs | // Copyright 2013 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using NodaTime.Utility;
using System.Collections.Generic;
namespace NodaTime.TzdbCompiler.Tzdb
{
/// <summary>
/// Extra support requi... | // Copyright 2013 The Noda Time Authors. All rights reserved.
// Use of this source code is governed by the Apache License 2.0,
// as found in the LICENSE.txt file.
using NodaTime.Utility;
using System.Collections.Generic;
namespace NodaTime.TzdbCompiler.Tzdb
{
/// <summary>
/// Extra support requi... | apache-2.0 | C# |
eda9616117bf737d4c41745ba15329767e33b373 | Remove some stray newlines. | jagrem/msg | Msg.Core/Transport/Connections/CloseConnectionFailedException.cs | Msg.Core/Transport/Connections/CloseConnectionFailedException.cs | using System;
using System.Runtime.Serialization;
namespace Msg.Core.Transport.Connections
{
public class CloseConnectionFailedException : ConnectionFailedException
{
public CloseConnectionFailedException ()
{
}
public CloseConnectionFailedException (string message) : base (message)
{
}
public CloseC... | using System;
using System.Runtime.Serialization;
namespace Msg.Core.Transport.Connections
{
public class CloseConnectionFailedException : ConnectionFailedException
{
public CloseConnectionFailedException ()
{
}
public CloseConnectionFailedException (string message) : base (message)
{
}
public Clo... | apache-2.0 | C# |
63c36013142aba3b13e7cd38ec470eb5f87aeb8a | Add docs re wrapped stream ownership | serilog/serilog-sinks-file,serilog/serilog-sinks-file | src/Serilog.Sinks.File/FileLifecycleHooks.cs | src/Serilog.Sinks.File/FileLifecycleHooks.cs |
namespace Serilog
{
using System.IO;
/// <summary>
/// Enables hooking into log file lifecycle events
/// </summary>
public abstract class FileLifecycleHooks
{
/// <summary>
/// Wraps <paramref name="underlyingStream"/> in another stream, such as a GZipStream, then returns the ... |
namespace Serilog
{
using System.IO;
/// <summary>
/// Enables hooking into log file lifecycle events
/// </summary>
public abstract class FileLifecycleHooks
{
/// <summary>
/// Wraps <paramref name="sourceStream"/> in another stream, such as a GZipStream, then returns the wrap... | apache-2.0 | C# |
38fecc050ac5ab9561faafdc9bae02a7ae789fff | Add source documentation for rating item. | henrikfroehling/TraktApiSharp | Source/Lib/TraktApiSharp/Objects/Get/Ratings/TraktRatingsItem.cs | Source/Lib/TraktApiSharp/Objects/Get/Ratings/TraktRatingsItem.cs | namespace TraktApiSharp.Objects.Get.Ratings
{
using Attributes;
using Enums;
using Movies;
using Newtonsoft.Json;
using Shows;
using Shows.Episodes;
using Shows.Seasons;
using System;
/// <summary>A Trakt rating item, containing a movie, show, season and / or episode and informatio... | namespace TraktApiSharp.Objects.Get.Ratings
{
using Attributes;
using Enums;
using Movies;
using Newtonsoft.Json;
using Shows;
using Shows.Episodes;
using Shows.Seasons;
using System;
public class TraktRatingsItem
{
[JsonProperty(PropertyName = "rated_at")]
publ... | mit | C# |
66a474619ce2f56d127d92c2c0ca2429f845ab10 | Adjust TimingControlPoint equivalency | ppy/osu,peppy/osu,peppy/osu-new,smoogipoo/osu,ppy/osu,UselessToucan/osu,peppy/osu,smoogipooo/osu,smoogipoo/osu,NeoAdonis/osu,peppy/osu,UselessToucan/osu,NeoAdonis/osu,UselessToucan/osu,ppy/osu,NeoAdonis/osu,smoogipoo/osu | osu.Game/Beatmaps/ControlPoints/TimingControlPoint.cs | osu.Game/Beatmaps/ControlPoints/TimingControlPoint.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 osu.Framework.Bindables;
using osu.Game.Beatmaps.Timing;
namespace osu.Game.Beatmaps.ControlPoints
{
public class TimingControlPoint : ControlPoint
{
... | // 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 osu.Framework.Bindables;
using osu.Game.Beatmaps.Timing;
namespace osu.Game.Beatmaps.ControlPoints
{
public class TimingControlPoint : ControlPoint
{
... | mit | C# |
8f88408feeae147f271728d15af46b4a383e643d | fix logging in | Gatecoin/API_client_csharp,Gatecoin/api-gatecoin-dotnet,Gatecoin/api-gatecoin-dotnet | Request/Login.cs | Request/Login.cs | using System;
using System.Collections.Generic;
using System.Web;
using ServiceStack.Common;
using ServiceStack.ServiceHost;
using ServiceStack.Common.Web;
using GatecoinServiceInterface.Response;
namespace GatecoinServiceInterface.Request{
[Route("/Auth/Login", "POST", Summary = @"Trader session log in.", Notes = @"")... | using System;
using System.Collections.Generic;
using System.Web;
using ServiceStack.Common;
using ServiceStack.ServiceHost;
using ServiceStack.Common.Web;
using GatecoinServiceInterface.Response;
namespace GatecoinServiceInterface.Request{
[Route("/Login", "POST", Summary = @"Trader session log in.", Notes = @"")]
pub... | mit | C# |
f7a0b44fed58a7aae837c829ec98c251196e5458 | Bump version to 0.30.1 | github-for-unity/Unity,github-for-unity/Unity,github-for-unity/Unity | common/SolutionInfo.cs | common/SolutionInfo.cs | #pragma warning disable 436
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyProduct("GitHub for Unity")]
[assembly: AssemblyVersion(System.AssemblyVersionInformation.Version)]
[assembly: AssemblyFileVersion(System.Assembl... | #pragma warning disable 436
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyProduct("GitHub for Unity")]
[assembly: AssemblyVersion(System.AssemblyVersionInformation.Version)]
[assembly: AssemblyFileVersion(System.Assembl... | mit | C# |
ed112ee3d1f91cc3f8a320f940bfe90cb48fadb3 | fix to the basic interpreter | pieterderycke/Jace | Calculator/BasicInterpreter.cs | Calculator/BasicInterpreter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Calculator.Operations;
namespace Calculator
{
public class BasicInterpreter : IInterpreter
{
public double Execute(Operation operation)
{
return Execute(operation, new Dictionary<string, int... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Calculator.Operations;
namespace Calculator
{
public class BasicInterpreter : IInterpreter
{
public double Execute(Operation operation)
{
return Execute(operation, new Dictionary<string, int... | mit | C# |
72fefaa3d58ae32b9ade33b62bc39e912ee765e4 | Update version number. | Damnae/storybrew | editor/Properties/AssemblyInfo.cs | editor/Properties/AssemblyInfo.cs | using System.Reflection;
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("storybrew editor")]
[assembly: AssemblyDe... | using System.Reflection;
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("storybrew editor")]
[assembly: AssemblyDe... | mit | C# |
9ab6c504705aa06e9e410142b89512feb960abe0 | Change StartContext.App from object to AppFunc. | abrodersen/katana,julianpaulozzi/katanaproject,evicertia/Katana,abrodersen/katana,eocampo/KatanaProject301,julianpaulozzi/katanaproject,HongJunRen/katanaproject,PxAndy/Katana,HongJunRen/katanaproject,julianpaulozzi/katanaproject,julianpaulozzi/katanaproject,eocampo/KatanaProject301,julianpaulozzi/katanaproject,tomi85/M... | src/Microsoft.Owin.Hosting/Engine/StartContext.cs | src/Microsoft.Owin.Hosting/Engine/StartContext.cs | // <copyright file="StartContext.cs" company="Microsoft Open Technologies, Inc.">
// Copyright 2011-2013 Microsoft Open Technologies, 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 ... | // <copyright file="StartContext.cs" company="Microsoft Open Technologies, Inc.">
// Copyright 2011-2013 Microsoft Open Technologies, 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 ... | apache-2.0 | C# |
64d99a26170678c793d6c20560fe68c827fa2ab0 | add intructions to title attr of element | kreeben/resin,kreeben/resin | src/Sir.HttpServer/Views/Shared/SearchForm.cshtml | src/Sir.HttpServer/Views/Shared/SearchForm.cshtml | @{
var col = Context.Request.Query["collection"].ToString();
var query = Context.Request.Query["q"].ToString();
var knownFields = Context.Request.Query["field"].ToArray();
var titleSelected = knownFields.Contains("title");
var bodySelected = knownFields.Contains("body");
}
@using (Html.BeginRouteFo... | @{
var col = Context.Request.Query["collection"].ToString();
var query = Context.Request.Query["q"].ToString();
var knownFields = Context.Request.Query["field"].ToArray();
var titleSelected = knownFields.Contains("title");
var bodySelected = knownFields.Contains("body");
}
@using (Html.BeginRouteFo... | mit | C# |
add2198edb96e0280a62c848ea8e9936edcbb9e1 | Fix documentation text and removed unused namespaces. | nohros/must,nohros/must,nohros/must | src/impl/cache/memorycache/MemoryCacheProvider.cs | src/impl/cache/memorycache/MemoryCacheProvider.cs | using System;
using System.Runtime.Caching;
using Nohros.Caching.Providers;
namespace Nohros.Caching
{
public class MemoryCacheProvider : ICacheProvider
{
readonly MemoryCache memory_cache_;
#region .ctor
/// <summary>
/// Initializes a new instance of the <see cref="MemoryCacheProvid... | using System;
using System.Runtime.Caching;
using Nohros.Caching.Providers;
namespace Nohros.Caching
{
public class MemoryCacheProvider : ICacheProvider
{
System.Runtime.Caching.MemoryCache memory_cache_;
#region .ctor
/// <summary>
/// Initializes a new instance of the <see cref="Mem... | mit | C# |
ab66f973bf521d6f8bd310797c99454380cb342c | Use patterns. | Faithlife/Parsing | tests/Faithlife.Parsing.Tests/CharTests.cs | tests/Faithlife.Parsing.Tests/CharTests.cs | using Xunit;
namespace Faithlife.Parsing.Tests;
public class CharTests
{
[Fact]
public void ConstantShouldFailOnEmpty()
{
Parser.Char('a').TryParse("").ShouldFail(0);
}
[Fact]
public void ConstantShouldSucceedOnGoodChar()
{
Parser.Char('a').TryParse("a").ShouldSucceed('a', 1);
Parser.Char('a').TryParse(... | using Xunit;
namespace Faithlife.Parsing.Tests;
public class CharTests
{
[Fact]
public void ConstantShouldFailOnEmpty()
{
Parser.Char('a').TryParse("").ShouldFail(0);
}
[Fact]
public void ConstantShouldSucceedOnGoodChar()
{
Parser.Char('a').TryParse("a").ShouldSucceed('a', 1);
Parser.Char('a').TryParse(... | mit | C# |
32325b9b667b227f808ea34cf5fcb5de634b0368 | Convert to ImmutableHashSet for consistency in comparison (#4090) | simonlaroche/akka.net,simonlaroche/akka.net | src/contrib/cluster/Akka.Cluster.Sharding.Tests/ConstantRateEntityRecoveryStrategySpec.cs | src/contrib/cluster/Akka.Cluster.Sharding.Tests/ConstantRateEntityRecoveryStrategySpec.cs | //-----------------------------------------------------------------------
// <copyright file="ConstantRateEntityRecoveryStrategySpec.cs" company="Akka.NET Project">
// Copyright (C) 2009-2019 Lightbend Inc. <http://www.lightbend.com>
// Copyright (C) 2013-2019 .NET Foundation <https://github.com/akkadotnet/akk... | //-----------------------------------------------------------------------
// <copyright file="ConstantRateEntityRecoveryStrategySpec.cs" company="Akka.NET Project">
// Copyright (C) 2009-2019 Lightbend Inc. <http://www.lightbend.com>
// Copyright (C) 2013-2019 .NET Foundation <https://github.com/akkadotnet/akk... | apache-2.0 | C# |
0cfd73dd264caad30186eb7a3e549ae266510621 | Decrease allocations during array serialization/deserialization | gregsdennis/Manatee.Json,gregsdennis/Manatee.Json | Manatee.Json/Serialization/Internal/AutoRegistration/ArraySerializationDelegateProvider.cs | Manatee.Json/Serialization/Internal/AutoRegistration/ArraySerializationDelegateProvider.cs | using System;
using System.Collections.Generic;
using System.Linq;
namespace Manatee.Json.Serialization.Internal.AutoRegistration
{
internal class ArraySerializationDelegateProvider : SerializationDelegateProviderBase
{
public override bool CanHandle(Type type)
{
return type.IsArray;
}
prote... | using System;
using System.Collections.Generic;
using System.Linq;
namespace Manatee.Json.Serialization.Internal.AutoRegistration
{
internal class ArraySerializationDelegateProvider : SerializationDelegateProviderBase
{
public override bool CanHandle(Type type)
{
return type.IsArray;
}
prote... | mit | C# |
f1a8769330ced25bed4d0d9ce1d7b1e12ecceab9 | Bump version to v0.6.1. | arookas/flaaffy | mareep/main.cs | mareep/main.cs |
using System;
namespace arookas {
static partial class mareep {
static Version sVersion = new Version(0, 6, 1);
static void Main(string[] arguments) {
Console.Title = String.Format("mareep v{0} arookas", sVersion);
mareep.WriteMessage("mareep v{0} arookas\n", sVersion);
mareep.WriteSeparator('=');
... |
using System;
namespace arookas {
static partial class mareep {
static Version sVersion = new Version(0, 6, 0);
static void Main(string[] arguments) {
Console.Title = String.Format("mareep v{0} arookas", sVersion);
mareep.WriteMessage("mareep v{0} arookas\n", sVersion);
mareep.WriteSeparator('=');
... | mit | C# |
6dc2840cbf5bd9764a7090aa85c4b6bdc664fae0 | Use simpler constructor when instantiating the Sandbox | jrusbatch/compilify,vendettamit/compilify,vendettamit/compilify,appharbor/ConsolR,jrusbatch/compilify,appharbor/ConsolR | Core/Services/CSharpExecutor.cs | Core/Services/CSharpExecutor.cs | using System;
using System.IO;
using Compilify.Models;
namespace Compilify.Services
{
public class CSharpExecutor
{
public CSharpExecutor()
: this(new CSharpCompilationProvider()) { }
public CSharpExecutor(ICSharpCompilationProvider compilationProvider)
{
... | using System;
using System.IO;
using Compilify.Models;
namespace Compilify.Services
{
public class CSharpExecutor
{
public CSharpExecutor()
: this(new CSharpCompilationProvider()) { }
public CSharpExecutor(ICSharpCompilationProvider compilationProvider)
{
... | mit | C# |
4235633e4b2142eb86f33840a3cf0925bfc6d1e4 | write test | ChrisL89/SS.Integration.UnifiedDataAPIClient.DotNet,sportingsolutions/SS.Integration.UnifiedDataAPIClient.DotNet,tom-scott/Unified_Data_API_Client_DotNet,sportingsolutions/SS.Integration.UnifiedDataAPIClient.DotNet | CommonAssemblyInfo.cs | CommonAssemblyInfo.cs | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;;
[assembly: AssemblyProduct("Spin.TradingServices.C2E")]
[assembly: AssemblyCompany("Sporting Index Ltd.")]
[assembly: AssemblyCopyright("Copyright (c) Sporting Index Ltd. 2011")]
[assembly: AssemblyTra... | using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyProduct("Spin.TradingServices.C2E")]
[assembly: AssemblyCompany("Sporting Index Ltd.")]
[assembly: AssemblyCopyright("Copyright (c) Sporting Index Ltd. 2011")]
[assembly: AssemblyTrad... | apache-2.0 | C# |
a4f5f93fbdfd565d0d413be9bd76b41844037d8c | remove default constructor from NPCFromPacketFactory | ethanmoffat/EndlessClient | EOLib/Net/Translators/NPCFromPacketFactory.cs | EOLib/Net/Translators/NPCFromPacketFactory.cs | using AutomaticTypeMapper;
using EOLib.Domain.NPC;
namespace EOLib.Net.Translators
{
[AutoMappedType]
public class NPCFromPacketFactory : INPCFromPacketFactory
{
public INPC CreateNPC(IPacket packet)
{
var index = packet.ReadChar();
var id = packet.ReadShort();
... | using AutomaticTypeMapper;
using EOLib.Domain.NPC;
namespace EOLib.Net.Translators
{
[AutoMappedType]
public class NPCFromPacketFactory : INPCFromPacketFactory
{
public NPCFromPacketFactory()
{
}
public INPC CreateNPC(IPacket packet)
{
var index = packe... | mit | C# |
62b4d40873086f91d556ee844d9124d8fb65769a | use default config for cookie sessions | 0xFireball/KQAnalytics3,0xFireball/KQAnalytics3,0xFireball/KQAnalytics3 | KQAnalytics3/src/KQAnalytics3/Bootstrapper.cs | KQAnalytics3/src/KQAnalytics3/Bootstrapper.cs | using KQAnalytics3.Configuration;
using Nancy;
using Nancy.Bootstrapper;
using Nancy.Conventions;
using Nancy.Session;
using Nancy.TinyIoc;
using Newtonsoft.Json;
using System.IO;
namespace KQAnalytics3
{
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ConfigureConventio... | using KQAnalytics3.Configuration;
using Nancy;
using Nancy.Bootstrapper;
using Nancy.Conventions;
using Nancy.Session;
using Nancy.TinyIoc;
using Newtonsoft.Json;
using System.IO;
namespace KQAnalytics3
{
public class Bootstrapper : DefaultNancyBootstrapper
{
protected override void ConfigureConventio... | agpl-3.0 | C# |
56ac48803030bd46c55facb019665d68e5bb5643 | Update to version 1.10.0.0 | davispuh/gear-emu,davispuh/gear-emu,davispuh/gear-emu,davispuh/gear-emu,gatuno1/gear-emu-branch-old,gatuno1/gear-emu-branch-old,gatuno1/gear-emu-branch-old | Gear/Properties/AssemblyInfo.cs | Gear/Properties/AssemblyInfo.cs | /* --------------------------------------------------------------------------------
* Gear: Parallax Inc. Propeller Debugger
* Copyright 2007 - Robert Vandiver
* --------------------------------------------------------------------------------
* AssemblyInfo.cs
* Run-time settings for gear
* ---------------... | /* --------------------------------------------------------------------------------
* Gear: Parallax Inc. Propeller Debugger
* Copyright 2007 - Robert Vandiver
* --------------------------------------------------------------------------------
* AssemblyInfo.cs
* Run-time settings for gear
* ---------------... | lgpl-2.1 | C# |
1b03998b8675bf31ded030c635fd518afa010832 | Improve comment of SetFrameFromTime. | ppy/osu,DrabWeb/osu,nyaamara/osu,ppy/osu,2yangk23/osu,peppy/osu-new,peppy/osu,Nabile-Rahmani/osu,peppy/osu,NeoAdonis/osu,DrabWeb/osu,EVAST9919/osu,RedNesto/osu,smoogipoo/osu,UselessToucan/osu,smoogipoo/osu,tacchinotacchi/osu,ZLima12/osu,naoey/osu,NeoAdonis/osu,ZLima12/osu,Damnae/osu,Frontear/osuKyzer,Drezi126/osu,peppy... | osu.Game/Input/Handlers/ReplayInputHandler.cs | osu.Game/Input/Handlers/ReplayInputHandler.cs | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using osu.Framework.Input.Handlers;
using osu.Framework.Platform;
using OpenTK;
namespace osu.Game.Input.Handlers
{
public abstract class R... | // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.IO;
using osu.Framework.Input.Handlers;
using osu.Framework.MathUtils;
using osu.Framework.Platform... | mit | C# |
c0918f1ef8be9262cd84a819933aa72e9713b50c | Allow changes to be triggered on Bindables externally. | Tom94/osu-framework,RedNesto/osu-framework,DrabWeb/osu-framework,RedNesto/osu-framework,ppy/osu-framework,naoey/osu-framework,DrabWeb/osu-framework,EVAST9919/osu-framework,ppy/osu-framework,NeoAdonis/osu-framework,naoey/osu-framework,default0/osu-framework,peppy/osu-framework,DrabWeb/osu-framework,ppy/osu-framework,Tom... | osu.Framework/Configuration/Bindable.cs | osu.Framework/Configuration/Bindable.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;
namespace osu.Framework.Configuration
{
public class Bindable<T> : IBindable
where T : IComparable
{
private ... | // 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;
namespace osu.Framework.Configuration
{
public class Bindable<T> : IBindable
where T : IComparable
{
private ... | mit | C# |
877520670e911cb93a2ec9cc4b4cddd11a6d427c | Fix mispelling | RightpointLabs/Pourcast,RightpointLabs/Pourcast,RightpointLabs/Pourcast,RightpointLabs/Pourcast,RightpointLabs/Pourcast | RightpointLabs.Pourcast.Domain/Models/Beer.cs | RightpointLabs.Pourcast.Domain/Models/Beer.cs | namespace RightpointLabs.Pourcast.Domain.Models
{
public class Beer : Entity
{
public Beer(string id, string name)
: base(id)
{
Name = name;
}
public string Name { get; set; }
public string BreweryId { get; set; }
public double ABV { get;... | namespace RightpointLabs.Pourcast.Domain.Models
{
public class Beer : Entity
{
public Beer(string id, string name)
: base(id)
{
Name = name;
}
public string Name { get; set; }
public string BrewerId { get; set; }
public double ABV { get; ... | mit | C# |
9c4552c5dd0d470043fdbd1877be8f3867a2bbe5 | remove serializable attribute | Amazebytes/CRDT | src/Crdt.Core/Counter.cs | src/Crdt.Core/Counter.cs | using System;
using System.Collections.Concurrent;
using System.Linq;
namespace Crdt.Core
{
public class Counter : ICounter
{
readonly ConcurrentBag<UInt16> _payload = new ConcurrentBag<UInt16>();
public void Increment()
{
_payload.Add(1);
}
public Int64 V... | using System;
using System.Collections.Concurrent;
using System.Linq;
namespace Crdt.Core
{
[Serializable]
public class Counter : ICounter
{
readonly ConcurrentBag<UInt16> _payload = new ConcurrentBag<UInt16>();
public void Increment()
{
_payload.Add(1);
}
... | mit | C# |
6ef03ea9bc9db7735318e6642528e7ac063cb9ff | Change Weight to double | episerver/ServiceApi-Client | EPiServer.ServiceApi.Client/Models/Catalog/VariationProperties.cs | EPiServer.ServiceApi.Client/Models/Catalog/VariationProperties.cs | using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace EPiServer.Integration.Client.Models.Catalog
{
[Serializable]
public class VariationProperties
{
public decimal MinQuantity { get; set; }
public decimal MaxQuantity { get; set; }
public dou... | using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace EPiServer.Integration.Client.Models.Catalog
{
[Serializable]
public class VariationProperties
{
public decimal MinQuantity { get; set; }
public decimal MaxQuantity { get; set; }
public int... | apache-2.0 | C# |
44580e2233eb0e4df40036679c7bf273d8593834 | Update an AssmblyVersion property that I missed to 0.8.0 | M-O-S-E-S/opensim,ft-/opensim-optimizations-wip-extras,EriHoss/OpenSim_0.8.2.0_Dev_LibLSLCC,ft-/opensim-optimizations-wip,TomDataworks/opensim,Michelle-Argus/ArribasimExtract,QuillLittlefeather/opensim-1,ft-/arribasim-dev-tests,TomDataworks/opensim,QuillLittlefeather/opensim-1,justinccdev/opensim,RavenB/opensim,ft-/ope... | OpenSim/ApplicationPlugins/LoadRegions/Properties/AssemblyInfo.cs | OpenSim/ApplicationPlugins/LoadRegions/Properties/AssemblyInfo.cs | /*
* Copyright (c) Contributors, http://opensimulator.org/
* See CONTRIBUTORS.TXT for a full list of copyright holders.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must r... | /*
* Copyright (c) Contributors, http://opensimulator.org/
* See CONTRIBUTORS.TXT for a full list of copyright holders.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must r... | bsd-3-clause | C# |
6aa6b7cb3df50588e6943d48246a3ea209b25379 | Simplify code with pattern matching | ridercz/ValidationToolkit | Altairis.ValidationToolkit/GreaterThanAttribute.cs | Altairis.ValidationToolkit/GreaterThanAttribute.cs | using System;
using System.ComponentModel.DataAnnotations;
namespace Altairis.ValidationToolkit {
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class GreaterThanAttribute : ValidationAttribute {
public GreaterThanAttribute(string otherPropertyName)
: this(othe... | using System;
using System.ComponentModel.DataAnnotations;
namespace Altairis.ValidationToolkit {
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public class GreaterThanAttribute : ValidationAttribute {
public GreaterThanAttribute(string otherPropertyName)
: this(othe... | mit | C# |
f0c6ba9263e206c54242cef5a3f69b3bc55e77eb | Remove debug localization field | plrusek/NitoriWare,uulltt/NitoriWare,Barleytree/NitoriWare,Barleytree/NitoriWare,NitorInc/NitoriWare,NitorInc/NitoriWare | Assets/Scripts/Localization/LocalizationManager.cs | Assets/Scripts/Localization/LocalizationManager.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
public class LocalizationManager : MonoBehaviour
{
private const string NotFoundString = "LOCALIZED TEXT NOT FOUND";
public static LocalizationManager instance;
[SerializeField]
private string forceLanguage;
private... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.IO;
public class LocalizationManager : MonoBehaviour
{
[Multiline]
public string testData;
private const string NotFoundString = "LOCALIZED TEXT NOT FOUND";
public static LocalizationManager instance;
[SerializeField]
... | mit | C# |
6829c2dd8a46637655dfcd86b77bd665851db61e | Add comment | 60071jimmy/UartOscilloscope,60071jimmy/UartOscilloscope | QueueDataGraphic/QueueDataGraphic/CSharpFiles/QueueDataGraphic.cs | QueueDataGraphic/QueueDataGraphic/CSharpFiles/QueueDataGraphic.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QueueDataGraphic.CSharpFiles
{
class QueueDataGraphic
{ // QueueDataGraphic class start, 進入QueueDataGraphic類別
} ... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QueueDataGraphic.CSharpFiles
{
class QueueDataGraphic
{
}
}
| apache-2.0 | C# |
1c0c9c1b8c32b98b67c819209ac224c3fbc91829 | Edit QueueDataGraphic.cs | 60071jimmy/UartOscilloscope,60071jimmy/UartOscilloscope | QueueDataGraphic/QueueDataGraphic/CSharpFiles/QueueDataGraphic.cs | QueueDataGraphic/QueueDataGraphic/CSharpFiles/QueueDataGraphic.cs | /********************************************************************
* Develop by Jimmy Hu *
* This program is licensed under the Apache License 2.0. *
* QueueDataGraphic.cs *
* 本檔案用於佇列資料繪圖功能 *
********************************************************************
*/
using System... | /********************************************************************
* Develop by Jimmy Hu *
* This program is licensed under the Apache License 2.0. *
* QueueDataGraphic.cs *
* 本檔案用於佇列資料繪圖功能 *
********************************************************************
*/
using System... | apache-2.0 | C# |
9ffa22be5bbb500ada1fe74b42c8ed89e3e26bea | Simplify static ctor | selvasingh/azure-sdk-for-java,selvasingh/azure-sdk-for-java,Azure/azure-sdk-for-java,Azure/azure-sdk-for-java,Azure/azure-sdk-for-java,Azure/azure-sdk-for-java,selvasingh/azure-sdk-for-java,Azure/azure-sdk-for-java | net/Azure.Storage.Blobs.PerfStress/Core/ContainerTest.cs | net/Azure.Storage.Blobs.PerfStress/Core/ContainerTest.cs | using Azure.Test.PerfStress;
using System;
using System.Threading.Tasks;
namespace Azure.Storage.Blobs.PerfStress.Core
{
public abstract class ContainerTest<TOptions> : ServiceTest<TOptions> where TOptions : PerfStressOptions
{
private const string _containerPrefix = "perfstress";
protected st... | using Azure.Test.PerfStress;
using System;
using System.Threading.Tasks;
namespace Azure.Storage.Blobs.PerfStress.Core
{
public abstract class ContainerTest<TOptions> : ServiceTest<TOptions> where TOptions : PerfStressOptions
{
private const string _containerPrefix = "perfstress";
protected st... | mit | C# |
ef88f21b6ca86779d42e4b78dd1326ad458fe2a7 | remove any kind of allocations for dice coefficient algorithm | RPCS3/discord-bot | CompatBot/Utils/Extensions/DiceCoefficientOptimized.cs | CompatBot/Utils/Extensions/DiceCoefficientOptimized.cs | namespace CompatBot.Utils.Extensions
{
public static class DiceCoefficientOptimized
{
/// <summary>
/// Dice Coefficient based on bigrams. <br />
/// A good value would be 0.33 or above, a value under 0.2 is not a good match, from 0.2 to 0.33 is iffy.
/// </summary>
/// <param name="input"></param>... | using System;
using System.Linq;
namespace CompatBot.Utils.Extensions
{
public static class DiceCoefficientOptimized
{
/// <summary>
/// Dice Coefficient based on bigrams. <br />
/// A good value would be 0.33 or above, a value under 0.2 is not a good match, from 0.2 to 0.33 is iffy.
/// </summary>
... | lgpl-2.1 | C# |
756c1089eb75dfc7ebfb44ebba3ab6d81470066e | Change documented source of windowsZones.xml file | RangeeGmbH/FreeRDP,rjcorrig/FreeRDP,rjcorrig/FreeRDP,nfedera/FreeRDP,ondrejholy/FreeRDP,ilammy/FreeRDP,yurashek/FreeRDP,nfedera/FreeRDP,ondrejholy/FreeRDP,rjcorrig/FreeRDP,chipitsine/FreeRDP,akallabeth/FreeRDP,akallabeth/FreeRDP,DavBfr/FreeRDP,cedrozor/FreeRDP,chipitsine/FreeRDP,eledoux/FreeRDP,oshogbo/FreeRDP,yurashek... | scripts/WindowsZones.cs | scripts/WindowsZones.cs | /**
* FreeRDP: A Remote Desktop Protocol Implementation
* TZID to Windows TimeZone Identifier Table Generator
*
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
... | /**
* FreeRDP: A Remote Desktop Protocol Implementation
* TZID to Windows TimeZone Identifier Table Generator
*
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
... | apache-2.0 | C# |
a535562c5e8fd700f9515f13a44bcbad2146ac58 | add copy dir function | sensoguyz-realsense-hackathon/extension-generator | ConsoleGenerator/Program.cs | ConsoleGenerator/Program.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ConsoleGenerator
{
class Program
{
private const string RealSenseExtensionString = "RealSense Extension";
... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ConsoleGenerator
{
class Program
{
static void Main(string[] args)
{
if (args.Length == 0)
{
... | mit | C# |
13545a46870c7691308632ff615bdf78ad48b656 | make controller rig public | dicko2/NUnitTfsTestCase | NUnitTfsTestCase/NUnitTfsTestCase/ControllerTestRig.cs | NUnitTfsTestCase/NUnitTfsTestCase/ControllerTestRig.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NUnit.Framework;
namespace NUnitTfsTestCase
{
public class ControllerTestRig
{
[OneTimeTearDown]
public void Stop()
{
TfsService.TestCases.FinailizeTest... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NUnit.Framework;
namespace NUnitTfsTestCase
{
class ControllerTestRig
{
[OneTimeTearDown]
public void Stop()
{
TfsService.TestCases.FinailizeTestRun();
... | mit | C# |
e5127164265cb0f74effa96103bb051976d702a7 | handle invalid path mappings | Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen,Pondidum/Dashen | Dashen/Endpoints/Static/StaticController.cs | Dashen/Endpoints/Static/StaticController.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Web.Http;
using Dashen.Infrastructure;
namespace Dashen.Endpoints.Static
{
public class StaticController : ApiController
{
private readonly List<IStaticContentPro... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Web.Http;
namespace Dashen.Endpoints.Static
{
public class StaticController : ApiController
{
private readonly List<IStaticContentProvider> _contentProviders;
p... | lgpl-2.1 | C# |
b07cd2da9959f5f5f5c02a83ac5290268be069da | Raise authentication server prerelease version number. | affecto/dotnet-AuthenticationServer | Source/AuthenticationServer/Properties/AssemblyInfo.cs | Source/AuthenticationServer/Properties/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("Affecto Authentication Server")]
[assembly: AssemblyProduct("Affecto Authentication Server")]
[assembly: AssemblyCompany("Affecto")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: A... | using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("Affecto Authentication Server")]
[assembly: AssemblyProduct("Affecto Authentication Server")]
[assembly: AssemblyCompany("Affecto")]
[assembly: AssemblyVersion("2.1.0.0")]
[assembly: AssemblyFileVersion("2.1.0.0")]
[assembly: A... | mit | C# |
3d31f3f6529e094122ea983a3823e9bad000d405 | Refactor PerformanceEventLogger.Run | mkropat/VSPerformanceTracker,mkropat/VSPerformanceTracker | VSPerformanceTracker/Logging/PerformanceEventLogger.cs | VSPerformanceTracker/Logging/PerformanceEventLogger.cs | using System;
using VSPerformanceTracker.FSInterface;
namespace VSPerformanceTracker.Logging
{
public static class PerformanceEventLogger
{
public static void Run(IObservable<PerformanceEvent> eventSource, IOpenableFile logFile)
{
eventSource.Subscribe(evt => WriteEvent(evt, logFil... | using System;
using VSPerformanceTracker.FSInterface;
namespace VSPerformanceTracker.Logging
{
public class PerformanceEventLogger
{
public static void Run(IObservable<PerformanceEvent> eventSource, IOpenableFile logFile)
{
var logger = new PerformanceEventLogger(logFile);
... | unlicense | C# |
2a499a215a30e9757d29dbf34307090da3890535 | use var where possible | NebulousConcept/b2-csharp-client | b2-csharp-client/B2.Client/Rest/DataSource.cs | b2-csharp-client/B2.Client/Rest/DataSource.cs | using System;
using System.IO;
using System.Text;
namespace B2.Client.Rest
{
/// <summary>
/// Represents an arbitrary data source which can be streamed or returned as a string or bytes.
/// It is assumed the underlying data source will not change during the lifetime of this object.
/// </summary>
... | using System;
using System.IO;
using System.Text;
namespace B2.Client.Rest
{
/// <summary>
/// Represents an arbitrary data source which can be streamed or returned as a string or bytes.
/// It is assumed the underlying data source will not change during the lifetime of this object.
/// </summary>
... | mit | C# |
81091d6288902cf585e3039ea4a500f42bea678c | Fix build break in ShaderBytecode. | sharpdx/SharpDX,sharpdx/SharpDX,sharpdx/SharpDX | Source/SharpDX.Direct3D12/ShaderBytecode.cs | Source/SharpDX.Direct3D12/ShaderBytecode.cs | // Copyright (c) 2010-2014 SharpDX - Alexandre Mutel
//
// 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 restriction, including without limitation the rights
// to use, copy, modi... | // Copyright (c) 2010-2014 SharpDX - Alexandre Mutel
//
// 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 restriction, including without limitation the rights
// to use, copy, modi... | mit | C# |
6ffe11548dcb846cebca8c33661ad6563a8e0f66 | update version number for the next release. | poderosaproject/poderosa,ArsenShnurkov/poderosa,ttdoda/poderosa,poderosaproject/poderosa,Chandu/poderosa,ArsenShnurkov/poderosa,ttdoda/poderosa,poderosaproject/poderosa,ArsenShnurkov/poderosa,poderosaproject/poderosa,Chandu/poderosa,poderosaproject/poderosa,Chandu/poderosa,ttdoda/poderosa,ttdoda/poderosa | Plugin/VersionInfo.cs | Plugin/VersionInfo.cs | /*
* Copyright 2004,2006 The Poderosa Project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* $Id: VersionInfo.cs,v 1.13 2012/06/09 15:06:58 kzmi Exp $
*/
using System;
using System.Collections.Generic;
using System.Tex... | /*
* Copyright 2004,2006 The Poderosa Project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* $Id: VersionInfo.cs,v 1.13 2012/06/09 15:06:58 kzmi Exp $
*/
using System;
using System.Collections.Generic;
using System.Tex... | apache-2.0 | C# |
f19a7f96ca0e4321bd75efb3e191415dd0da1590 | update version for the next release. | Chandu/poderosa,ttdoda/poderosa,ArsenShnurkov/poderosa,ttdoda/poderosa,ttdoda/poderosa,poderosaproject/poderosa,poderosaproject/poderosa,poderosaproject/poderosa,ArsenShnurkov/poderosa,Chandu/poderosa,ArsenShnurkov/poderosa,poderosaproject/poderosa,ttdoda/poderosa,poderosaproject/poderosa,Chandu/poderosa | Plugin/VersionInfo.cs | Plugin/VersionInfo.cs | /*
* Copyright 2004,2006 The Poderosa Project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* $Id: VersionInfo.cs,v 1.13 2012/06/09 15:06:58 kzmi Exp $
*/
using System;
using System.Collections.Generic;
using System.Text... | /*
* Copyright 2004,2006 The Poderosa Project.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* $Id: VersionInfo.cs,v 1.13 2012/06/09 15:06:58 kzmi Exp $
*/
using System;
using System.Collections.Generic;
using System.Text... | apache-2.0 | C# |
dffd9c73f019cfb743bcce54789e93276147addf | Bump version to 0.5.3 | whampson/bft-spec,whampson/cascara | Src/WHampson.Bft/Properties/AssemblyInfo.cs | Src/WHampson.Bft/Properties/AssemblyInfo.cs | #region License
/* Copyright (c) 2017 Wes Hampson
*
* 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 restriction, including without limitation the rights
* to use, copy, modify,... | #region License
/* Copyright (c) 2017 Wes Hampson
*
* 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 restriction, including without limitation the rights
* to use, copy, modify,... | mit | C# |
55e8a7b4661677a64c013913bdc0f1aa67fbaaaa | Change formatting to match C# style | versionone/VersionOne.Integration.Bugzilla,versionone/VersionOne.Integration.Bugzilla,versionone/VersionOne.Integration.Bugzilla | VersionOne.ServerConnector/IQueryBuilder.cs | VersionOne.ServerConnector/IQueryBuilder.cs | using System.Collections.Generic;
using VersionOne.SDK.APIClient;
using VersionOne.ServerConnector.Entities;
using VersionOne.ServerConnector.Filters;
namespace VersionOne.ServerConnector
{
// TODO refactor APIClient types
public interface IQueryBuilder
{
IDictionary<string, PropertyValues> ListPr... | using System.Collections.Generic;
using VersionOne.SDK.APIClient;
using VersionOne.ServerConnector.Entities;
using VersionOne.ServerConnector.Filters;
namespace VersionOne.ServerConnector {
// TODO refactor APIClient types
public interface IQueryBuilder {
IDictionary<string, PropertyValues> ListProper... | bsd-3-clause | C# |
df2af370bb5695bc480a2a8ae90d3b7a99444ab4 | Update Main class for compatibility with Pre-Alpha 5. | parkitectLab/statMaster | Main.cs | Main.cs | using UnityEngine;
namespace StatMaster
{
public class Main : IMod
{
private GameObject _go;
public void onEnabled()
{
_go = new GameObject();
_go.AddComponent<Behaviour>();
}
public void onDisabled()
{
UnityEngine.Object.De... | using UnityEngine;
namespace StatMaster
{
class Main : IMod
{
private GameObject _go;
public void onEnabled()
{
_go = new GameObject();
_go.AddComponent<Behaviour>();
}
public void onDisabled()
{
UnityEngine.Object.Destroy(_... | mit | C# |
401919a6f423b580f163b1ff9871a58f0ba46571 | Fix conversion of 3241 | ermshiperete/TntMPDConverter,ermshiperete/TntMPDConverter | Account.cs | Account.cs | using System;
namespace TntMPDConverter
{
public class Account : State
{
private int m_AccountNo;
public Account(Scanner reader) : base(reader)
{
IsValid = true;
}
public static bool IsAccount(string line)
{
string[] textArray1 = line.Split(new[] { '\t' });
if (textArray1.Length != 4)
{
... | using System;
namespace TntMPDConverter
{
public class Account : State
{
private int m_AccountNo;
public Account(Scanner reader) : base(reader)
{
IsValid = true;
}
public static bool IsAccount(string line)
{
string[] textArray1 = line.Split(new[] { '\t' });
if (textArray1.Length != 4)
{
... | mit | C# |
b50fe7ec50d0399ca4a7490eacc2a14c861aee13 | change artifacts dir | chrisowhite/IdentityServer4,IdentityServer/IdentityServer4,chrisowhite/IdentityServer4,MienDev/IdentityServer4,chrisowhite/IdentityServer4,jbijlsma/IdentityServer4,jbijlsma/IdentityServer4,siyo-wang/IdentityServer4,MienDev/IdentityServer4,IdentityServer/IdentityServer4,siyo-wang/IdentityServer4,IdentityServer/IdentityS... | build.cake | build.cake | var target = Argument("target", "Default");
var configuration = Argument<string>("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
///////////////////////////////////////////////////////////////////////////////
var isLocalBuild ... | var target = Argument("target", "Default");
var configuration = Argument<string>("configuration", "Release");
///////////////////////////////////////////////////////////////////////////////
// GLOBAL VARIABLES
///////////////////////////////////////////////////////////////////////////////
var isLocalBuild ... | apache-2.0 | C# |
6f4341f56451f08bfc1fc680ecdcc6dc2a60ea95 | Set build configuration for XBuild use. | cake-build/example,cake-build/example | build.cake | build.cake | //////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
/////////////////////////////////////////////////////////////... | //////////////////////////////////////////////////////////////////////
// ARGUMENTS
//////////////////////////////////////////////////////////////////////
var target = Argument("target", "Default");
var configuration = Argument("configuration", "Release");
/////////////////////////////////////////////////////////////... | mit | C# |
a612cd4e37a0546746b28382f34036ba7279b1cc | Fix RichTextExtension that color doesn't work. | LuviKunG/LuviTools,LuviKunG/LuviTools | Extension/RichTextExtension.cs | Extension/RichTextExtension.cs | using UnityEngine;
using StringBuilder = System.Text.StringBuilder;
namespace LuviKunG.RichText
{
public static class RichTextExtension
{
public static string Color(this string s, string hexString)
{
Color color;
if (ColorUtility.TryParseHtmlString(hexString, out color)... | using UnityEngine;
using StringBuilder = System.Text.StringBuilder;
namespace LuviKunG.RichText
{
public static class RichTextExtension
{
public static string Color(this string s, string hexString)
{
Color color;
if (ColorUtility.TryParseHtmlString(hexString, out color)... | mit | C# |
c6bf856c7b619d10f6c21a19b3a07181def531a9 | Add two popular namespaces to the default templates #8 | jbe2277/dotnetpad | src/DotNetPad/DotNetPad.Applications/CodeAnalysis/TemplateCode.cs | src/DotNetPad/DotNetPad.Applications/CodeAnalysis/TemplateCode.cs | namespace Waf.DotNetPad.Applications.CodeAnalysis
{
internal static class TemplateCode
{
public static string InitialCSharpCode
{
get
{
return
@"using System;
using System.Collections.Generic;
using System.Linq;
using Syste... | namespace Waf.DotNetPad.Applications.CodeAnalysis
{
internal static class TemplateCode
{
public static string InitialCSharpCode
{
get
{
return
@"using System;
using System.Linq;
namespace Sample
{
internal static cla... | mit | C# |
354e7aa1528ed7bb141200becc1362c8d2049567 | Make sure that duration is rounded on the end request duration | zanetdev/Glimpse.Prototype,zanetdev/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,peterblazejewicz/Glimpse.Prototype,Glimpse/Glimpse.Prototype,zanetdev/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,Glimpse/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,mike-kaufman/Glimpse.Prototype,peterblazejewicz/Glimpse... | src/Glimpse.Agent.Web/Providers/AspNet/AspNetTelemetryListener.cs | src/Glimpse.Agent.Web/Providers/AspNet/AspNetTelemetryListener.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Glimpse.Agent.Web.Messages;
using Microsoft.AspNet.Http;
using Microsoft.Framework.TelemetryAdapter;
namespace Glimpse.Agent.Web
{
public partial class WebTelemetryListener
{
[TelemetryName("Microsof... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Glimpse.Agent.Web.Messages;
using Microsoft.AspNet.Http;
using Microsoft.Framework.TelemetryAdapter;
namespace Glimpse.Agent.Web
{
public partial class WebTelemetryListener
{
[TelemetryName("Microsof... | mit | C# |
eedf15a621e0898e19ca4931532c891acae0c7ed | Move settings menu to the "Edit" category | PhannGor/unity3d-rainbow-folders | Assets/RainbowFolders/Editor/RainbowFoldersMenu.cs | Assets/RainbowFolders/Editor/RainbowFoldersMenu.cs | /*
* 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 writing, software
* distrib... | /*
* 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 writing, software
* distrib... | apache-2.0 | C# |
eec3c27ad0797d21b28a16c83bf908191fa3dde0 | Rename CalcLength to GetLength | ektrah/nsec | src/Cryptography/Oid.cs | src/Cryptography/Oid.cs | using System;
using System.Diagnostics;
namespace NSec.Cryptography
{
internal struct Oid
{
private readonly byte[] _bytes;
public Oid(
uint first,
uint second,
params uint[] rest)
{
int length = GetLength(first * 40 + second);
... | using System;
using System.Diagnostics;
namespace NSec.Cryptography
{
internal struct Oid
{
private readonly byte[] _bytes;
public Oid(
uint first,
uint second,
params uint[] rest)
{
int length = CalcLength(first * 40 + second);
... | mit | C# |
ada525b6af76df7ee1e2e6d2311fafa48955a790 | Fix comment | k-t/SharpHaven | MonoHaven.Client/MainScreen.cs | MonoHaven.Client/MainScreen.cs | using System;
using MonoHaven.Game;
using MonoHaven.Graphics;
using MonoHaven.Login;
using MonoHaven.UI;
using OpenTK.Input;
namespace MonoHaven
{
public class MainScreen : IScreen
{
private readonly LoginScreen loginScreen;
private GameScreen gameScreen;
private IScreen current;
public MainScreen()
{
... | using System;
using MonoHaven.Game;
using MonoHaven.Graphics;
using MonoHaven.Login;
using MonoHaven.UI;
using OpenTK.Input;
namespace MonoHaven
{
public class MainScreen : IScreen
{
private readonly LoginScreen loginScreen;
private GameScreen gameScreen;
private IScreen current;
public MainScreen()
{
... | mit | C# |
8642bff54c96a61a618119ee6145419013209212 | remove useless invocation for VarString | MetacoSA/NBitcoin,MetacoSA/NBitcoin,NicolasDorier/NBitcoin | NBitcoin/Protocol/VarString.cs | NBitcoin/Protocol/VarString.cs | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NBitcoin.Protocol
{
public class VarString : IBitcoinSerializable
{
public VarString()
{
_Bytes = new byte[0];
}
byte[] _Bytes;
public int Lengt... | using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NBitcoin.Protocol
{
public class VarString : IBitcoinSerializable
{
public VarString()
{
}
byte[] _Bytes = new byte[0];
public int Length
{
... | mit | C# |
c18bc1a7ae167010b73ff711bc5012c3e96a4bb2 | Fix bug with missing unmute timers. | Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW,Midnight-Myth/Mitternacht-NEW | MitternachtWeb/Areas/Guild/Controllers/MutesController.cs | MitternachtWeb/Areas/Guild/Controllers/MutesController.cs | using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Mitternacht.Modules.Administration.Services;
using Mitternacht.Services;
using MitternachtWeb.Areas.Guild.Models;
using MitternachtWeb.Exceptions;
using System;
using System.Linq;
using System.Threading... | using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Mitternacht.Modules.Administration.Services;
using Mitternacht.Services;
using MitternachtWeb.Areas.Guild.Models;
using MitternachtWeb.Exceptions;
using System;
using System.Linq;
using System.Threading... | mit | C# |
f8e2931e60f885f618cd3a679cc51174c83d9948 | Refactor notification object and add methods for static property changed event | emoacht/SnowyImageCopy | Source/SnowyImageCopy/Common/NotificationObject.cs | Source/SnowyImageCopy/Common/NotificationObject.cs | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace SnowyImageCopy.Common
{
public abstract class NotificationObject : INotifyPropertyChanged
{
public event Pro... | using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
namespace SnowyImageCopy.Common
{
public abstract class NotificationObject : INotifyPropert... | mit | C# |
9c4c947b55de5a1f3491f6b5610e2e3d89987c18 | Test the hub | Community-Manager/NCS-Server,Community-Manager/NCS-Server | Source/Server/NeighboursCommunitySystem.API/Hubs/StickyNotesHub.cs | Source/Server/NeighboursCommunitySystem.API/Hubs/StickyNotesHub.cs | namespace NeighboursCommunitySystem.API.Hubs
{
using System.Threading.Tasks;
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
[HubName("stickyNotesHub")]
public class StickyNotesHub : Hub
{
public void VoteProposal()
{
//var context = GlobalHost.... | namespace NeighboursCommunitySystem.API.Hubs
{
using System.Threading.Tasks;
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
[HubName("stickyNotesHub")]
public class StickyNotesHub : Hub
{
public void VoteProposal()
{
var context = GlobalHost.Co... | mit | C# |
747fa3689557faefb15c184bc362d3d16f8bdaa2 | Define 'System.Char' | jonathanvdc/flame-llvm,jonathanvdc/flame-llvm,jonathanvdc/flame-llvm | stdlib/corlib/Integers.cs | stdlib/corlib/Integers.cs | // This file makes use of the LeMP 'unroll' macro to avoid copy-pasting code.
// See http://ecsharp.net/lemp/avoid-tedium-with-LeMP.html for an explanation.
#importMacros(LeMP);
namespace System
{
unroll ((TYPE, NAME, DESCRIPTION) in (
(sbyte, SByte, "a signed 8-bit integer"),
(byte, Byte, "an uns... | // This file makes use of the LeMP 'unroll' macro to avoid copy-pasting code.
// See http://ecsharp.net/lemp/avoid-tedium-with-LeMP.html for an explanation.
#importMacros(LeMP);
namespace System
{
unroll ((TYPE, NAME, DESCRIPTION) in (
(sbyte, SByte, "a signed 8-bit"),
(byte, Byte, "an unsigned 8-... | mit | C# |
6a85f5ca8bf2a9506ed55d9a60f870b820326e2b | Add null checks to prevent nullrefexception in automated test | smoogipoo/osu,peppy/osu-new,smoogipooo/osu,ppy/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu,peppy/osu,NeoAdonis/osu,ppy/osu,NeoAdonis/osu,ppy/osu,UselessToucan/osu,UselessToucan/osu,peppy/osu,smoogipoo/osu,smoogipoo/osu | osu.Game.Tournament/Components/TournamentModDisplay.cs | osu.Game.Tournament/Components/TournamentModDisplay.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.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.... | // 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.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
using osu.... | mit | C# |
f388e118e7ff8be4f8b70e4ae52c5d1f6726ffe6 | update version | curit/ExocortexDSP | src/AssemblyInfo.cs | src/AssemblyInfo.cs | using System.Reflection;
using System.Runtime.CompilerServices;
//
// 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("")]
[assembly: AssemblyDescription(... | using System.Reflection;
using System.Runtime.CompilerServices;
//
// 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("")]
[assembly: AssemblyDescription(... | bsd-3-clause | C# |
6a2f5e0c3c980a176e36257b0b197f4a04896b0b | Add the ability to move objects relative to the camera | PearMed/Pear-Interaction-Engine | Scripts/EventListeners/Move.cs | Scripts/EventListeners/Move.cs | using Pear.InteractionEngine.Utils;
using UnityEngine;
using Pear.InteractionEngine.Events;
using Pear.InteractionEngine.Interactions;
namespace Pear.InteractionEngine.EventListeners
{
/// <summary>
/// Move based on the change in event
/// </summary>
public class Move : MonoBehaviour, IEventListener<Vector3>
{
... | using Pear.InteractionEngine.Utils;
using UnityEngine;
using Pear.InteractionEngine.Events;
using Pear.InteractionEngine.Interactions;
namespace Pear.InteractionEngine.EventListeners
{
/// <summary>
/// Move based on the change in event
/// </summary>
public class Move : MonoBehaviour, IEventListener<Vector3>
{
... | mit | C# |
a00bf4c13494f2223b60fd0600823cb7e8e97424 | Update TODO | OrleansContrib/Orleankka,ElanHasson/Orleankka,OrleansContrib/Orleankka,llytvynenko/Orleankka,mhertis/Orleankka,mhertis/Orleankka,pkese/Orleankka,yevhen/Orleankka,ElanHasson/Orleankka,yevhen/Orleankka,llytvynenko/Orleankka,AntyaDev/Orleankka,pkese/Orleankka,AntyaDev/Orleankka | Source/Orleankka.Tests/TODO.cs | Source/Orleankka.Tests/TODO.cs | using System;
using System.Linq;
using NUnit.Framework;
namespace Orleankka
{
[TestFixture]
public class TodoFixture
{
[Test, Ignore]
public void TypeCode()
{
// - Make sure Orleans' TypeCodeOverride is utilized.
}
[Test, Ignore]
... | using System;
using System.Linq;
using NUnit.Framework;
namespace Orleankka
{
[TestFixture]
public class TodoFixture
{
[Test, Ignore]
public void Reminders()
{
// + Check Reminders. Introduce explicit assembly registration. Enumerate types and use type nam... | apache-2.0 | C# |
bc6a01983bb1171023fb9e69c6b2c89757e96863 | fix nav by role | mjmilan/crisischeckin,HTBox/crisischeckin,brunck/crisischeckin,brunck/crisischeckin,andrewhart098/crisischeckin,HTBox/crisischeckin,mjmilan/crisischeckin,andrewhart098/crisischeckin,andrewhart098/crisischeckin,HTBox/crisischeckin,mjmilan/crisischeckin,brunck/crisischeckin | crisischeckin/crisicheckinweb/Views/Shared/_VolunteerLayout.cshtml | crisischeckin/crisicheckinweb/Views/Shared/_VolunteerLayout.cshtml | @using System.Web.Optimization
@{
Layout = "/Views/Shared/_Layout.cshtml";
}
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav... | @using System.Web.Optimization
@{
Layout = "/Views/Shared/_Layout.cshtml";
}
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav... | apache-2.0 | C# |
4ec9494966cc91b7d9043783260229c59ab10d96 | Bump version to 0.9.0 | ar3cka/Journalist | src/SolutionInfo.cs | src/SolutionInfo.cs | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyProductAttribute("Journalist")]
[assembly: AssemblyVersionAttribute("0.9.0")]
[assembly: AssemblyInformationalVersionAttribute("0.9.0")]
[assembly: AssemblyFileVersionAttribute("0.9.0")]
[assembly: AssemblyCompanyAttribute("Anton Mednonogov")]
namespace... | // <auto-generated/>
using System.Reflection;
[assembly: AssemblyProductAttribute("Journalist")]
[assembly: AssemblyVersionAttribute("0.8.5")]
[assembly: AssemblyInformationalVersionAttribute("0.8.5")]
[assembly: AssemblyFileVersionAttribute("0.8.5")]
[assembly: AssemblyCompanyAttribute("Anton Mednonogov")]
namespace... | apache-2.0 | C# |
23aaef081b104eb8965e2a55673258a929a5b497 | Fix (code) typo and avoid infinite recursion on SupportsVideo[Max|Min]FrameDuration properties | mono/maccore,cwensley/maccore,jorik041/maccore | src/AVFoundation/AVCaptureConnection.cs | src/AVFoundation/AVCaptureConnection.cs | //
// AVCaptureConnection: Extensions to the class
//
// Authors:
// Miguel de Icaza
// Sebastien Pouliot <sebastien@xamarin.com>
//
// Copyright 2011-2012, Xamarin, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
/... | //
// AVCaptureConnection: Extensions to the class
//
// Authors:
// Miguel de Icaza
// Sebastien Pouliot <sebastien@xamarin.com>
//
// Copyright 2011-2012, Xamarin, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
/... | apache-2.0 | C# |
72bf6fc6ea3b29666825477b1cf5af3b3f555870 | Add namespace | insthync/LiteNetLibManager,insthync/LiteNetLibManager | Scripts/LiteNetLibServer.cs | Scripts/LiteNetLibServer.cs | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using LiteNetLib;
using LiteNetLib.Utils;
using LiteNetLibHighLevel.Utils;
namespace LiteNetLibHighLevel
{
public class LiteNetLibServer : INetEventListener
{
public LiteNetLibManager Manager { get; protected set; }
... | using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using LiteNetLib;
using LiteNetLib.Utils;
namespace LiteNetLibHighLevel
{
public class LiteNetLibServer : INetEventListener
{
public LiteNetLibManager Manager { get; protected set; }
public NetManager NetManager { g... | mit | C# |
654ec80cb9ad1dde844a5b39a11c121def68be80 | implement DebugIDTag writing | Alexx999/SwfSharp | SwfSharp/Tags/DebugIDTag.cs | SwfSharp/Tags/DebugIDTag.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SwfSharp.Utils;
namespace SwfSharp.Tags
{
public class DebugIDTag : SwfTag
{
public byte[] Uuid { get; set; }
public DebugIDTag(int size)
: base(TagType.DebugID, size)
{
}
... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SwfSharp.Utils;
namespace SwfSharp.Tags
{
public class DebugIDTag : SwfTag
{
public byte[] Uuid { get; set; }
public DebugIDTag(int size)
: base(TagType.DebugID, size)
{
}
... | mit | C# |
121ea935ed127a0377f65b49c45906d18b2fc66e | Make LogEnrollment virtual | metageek-llc/Magpie,ashokgelal/Magpie | src/Magpie/Magpie/Services/AnalyticsLogger.cs | src/Magpie/Magpie/Services/AnalyticsLogger.cs | using MagpieUpdater.Interfaces;
using MagpieUpdater.Models;
namespace MagpieUpdater.Services
{
public class AnalyticsLogger : IAnalyticsLogger
{
public virtual void LogDownloadNow()
{
}
public virtual void LogUserSkipsUpdate(Channel channel)
{
}
public ... | using MagpieUpdater.Interfaces;
using MagpieUpdater.Models;
namespace MagpieUpdater.Services
{
public class AnalyticsLogger : IAnalyticsLogger
{
public virtual void LogDownloadNow()
{
}
public virtual void LogUserSkipsUpdate(Channel channel)
{
}
public ... | mit | C# |
ebd9ab3625d9940ce5189fbfc9795132d2f81656 | Fix tutorial compile error | l8s/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,PowerOfCode/Eto,l8s/Eto,l8s/Eto,bbqchickenrobot/Eto-1,PowerOfCode/Eto,bbqchickenrobot/Eto-1 | Tutorials/Tutorial2/Main.cs | Tutorials/Tutorial2/Main.cs | using System;
using Eto.Forms;
using Eto.Drawing;
using Eto;
namespace Tutorial2
{
public class MyCommand : Command
{
public MyCommand()
{
MenuText = "C&lick Me";
ToolBarText = "Click Me";
ToolTip = "This shows a dialog for no reason";
//Icon = Icon.FromResource ("MyResourceName.ico");
Shortcut = ... | using System;
using Eto.Forms;
using Eto.Drawing;
using Eto;
namespace Tutorial2
{
public class MyCommand : Command
{
public MyCommand()
{
MenuText = "C&lick Me";
ToolBarText = "Click Me";
ToolTip = "This shows a dialog for no reason";
//Icon = Icon.FromResource ("MyResourceName.ico");
Shortcut = ... | bsd-3-clause | C# |
7f80d4990a885c066be7967472f71bbb6f540fd4 | Fix getState | octoblu/meshblu-connector-skype,octoblu/meshblu-connector-skype | src/csharp/get-state.cs | src/csharp/get-state.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Lync.Model;
using Microsoft.Lync.Model.Conversation;
using Microsoft.Lync.Model.Conversation.AudioVideo;
using Microsoft.Lync.Model.Extensibility;
public class Startup
{
public asy... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Lync.Model;
using Microsoft.Lync.Model.Conversation;
using Microsoft.Lync.Model.Conversation.AudioVideo;
using Microsoft.Lync.Model.Extensibility;
public class Startup
{
public asy... | mit | C# |
f268a3d8dc7c10348a30b73b46cfafd5843d9c9b | Reformat IBuckets | coryrwest/B2.NET | src/IBuckets.cs | src/IBuckets.cs | using B2Net.Models;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace B2Net {
public interface IBuckets {
Task<B2Bucket> Create(string bucketName, B2BucketOptions options, CancellationToken cancelToken = default(CancellationToken));
Task<B2Bucket> Create(string buc... | using B2Net.Models;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace B2Net
{
public interface IBuckets
{
Task<B2Bucket> Create(string bucketName, B2BucketOptions options, CancellationToken cancelToken = default(CancellationToken));
Task<B2Bucket> Create(str... | mit | C# |
4cf40af36b2a6bc8eb1bacd833afab06ae42fa40 | Improve TracRevisionLog textual !ChangeLog format (1/3): Refactoring log_changelog.cs to use the ClearSilver ''with'' command. | dafrito/trac-mirror,exocad/exotrac,moreati/trac-gitsvn,exocad/exotrac,dafrito/trac-mirror,exocad/exotrac,moreati/trac-gitsvn,dokipen/trac,dokipen/trac,dokipen/trac,dafrito/trac-mirror,moreati/trac-gitsvn,moreati/trac-gitsvn,exocad/exotrac,dafrito/trac-mirror | templates/log_changelog.cs | templates/log_changelog.cs | #
# ChangeLog for <?cs var:log.path ?>
#
# Generated by Trac <?cs var:trac.version ?>
# <?cs var:trac.time ?>
#
<?cs each:item = $log.items ?>
<?cs with:changeset = log.changes[item.rev] ?>
<?cs var:changeset.date ?> <?cs
var:changeset.author ?> [<?cs var:item.rev ?>]
<?cs each:file = $changeset.files ?>
* <?cs... | #
# ChangeLog for <?cs var:log.path ?>
#
# Generated by Trac <?cs var:trac.version ?>
# <?cs var:trac.time ?>
#
<?cs each:item = $log.items ?>
<?cs var:log.changes[item.rev].date ?> <?cs
var:log.changes[item.rev].author ?> [<?cs var:item.rev ?>]
<?cs each:file = $log.changes[item.rev].files ?>
* <?cs ... | bsd-3-clause | C# |
13cb7a0348579cd1f41a133d1b5ab7829b744e37 | Update assembly info | deadsurgeon42/SummonLimit | Properties/AssemblyInfo.cs | Properties/AssemblyInfo.cs | using System.Reflection;
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("SummonLimit")]
[assembly: AssemblyDescri... | using System.Reflection;
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("SummonLimit")]
[assembly: AssemblyDescri... | mit | C# |
c97ea6bb36427903479d0f601b760ca49a6df709 | Add kernel load | Branimir123/ZobShop,Branimir123/ZobShop,Branimir123/ZobShop | src/ZobShop.Web/App_Start/NinjectWebCommon.cs | src/ZobShop.Web/App_Start/NinjectWebCommon.cs | using WebFormsMvp.Binder;
using ZobShop.Web.App_Start.NinjectModules;
[assembly: WebActivatorEx.PreApplicationStartMethod(typeof(ZobShop.Web.App_Start.NinjectWebCommon), "Start")]
[assembly: WebActivatorEx.ApplicationShutdownMethodAttribute(typeof(ZobShop.Web.App_Start.NinjectWebCommon), "Stop")]
namespace ZobShop.We... | using WebFormsMvp.Binder;
using ZobShop.Web.App_Start.NinjectModules;
[assembly: WebActivatorEx.PreApplicationStartMethod(typeof(ZobShop.Web.App_Start.NinjectWebCommon), "Start")]
[assembly: WebActivatorEx.ApplicationShutdownMethodAttribute(typeof(ZobShop.Web.App_Start.NinjectWebCommon), "Stop")]
namespace ZobShop.We... | mit | C# |
98813222afbeadbf823af00724fa23a4a9a55bbd | Adjust comment | peppy/osu,ZLima12/osu,peppy/osu,smoogipoo/osu,peppy/osu,NeoAdonis/osu,smoogipooo/osu,2yangk23/osu,NeoAdonis/osu,UselessToucan/osu,peppy/osu-new,UselessToucan/osu,smoogipoo/osu,EVAST9919/osu,2yangk23/osu,ppy/osu,johnneijzen/osu,smoogipoo/osu,NeoAdonis/osu,ppy/osu,EVAST9919/osu,johnneijzen/osu,UselessToucan/osu,ppy/osu,Z... | osu.Game/Skinning/SkinReloadableDrawable.cs | osu.Game/Skinning/SkinReloadableDrawable.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;
using osu.Framework.Allocation;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Skinning
{
/// <summary>
/// A drawable which has a cal... | // 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;
using osu.Framework.Allocation;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Skinning
{
/// <summary>
/// A drawable which has a cal... | mit | C# |
e3e381a7e7e1ab58798d266bd344ac59dcfed09b | Remove extra casts | dipeshc/BTDeploy | src/MonoTorrent.Dht/MonoTorrent.Dht/Tasks/AnnounceTask.cs | src/MonoTorrent.Dht/MonoTorrent.Dht/Tasks/AnnounceTask.cs | using MonoTorrent.Dht.Messages;
using System.Collections.Generic;
using MonoTorrent.BEncoding;
namespace MonoTorrent.Dht
{
internal class AnnounceTask : Task
{
NodeId infoHash;
DhtEngine engine;
public AnnounceTask(DhtEngine engine, byte[] infohash)
: this(engine, n... | using MonoTorrent.Dht.Messages;
using System.Collections.Generic;
using MonoTorrent.BEncoding;
namespace MonoTorrent.Dht
{
internal class AnnounceTask : Task
{
NodeId infoHash;
DhtEngine engine;
public AnnounceTask(DhtEngine engine, byte[] infohash)
: this(engine, n... | mit | C# |
3b56a8463522de3daf7aa9e0595a3f8c2ded2e6e | add AccountLegalEntityPublicHashedId to domain apprenticeship | SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments,SkillsFundingAgency/das-commitments | src/SFA.DAS.Commitments.Domain/Entities/Apprenticeship.cs | src/SFA.DAS.Commitments.Domain/Entities/Apprenticeship.cs | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace SFA.DAS.Commitments.Domain.Entities
{
public class Apprenticeship
{
public Apprenticeship()
{
PriceHistory = new List<PriceHistory>();
}
public long Id { get; set; }
public lon... | using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace SFA.DAS.Commitments.Domain.Entities
{
public class Apprenticeship
{
public Apprenticeship()
{
PriceHistory = new List<PriceHistory>();
}
public long Id { get; set; }
public lon... | mit | C# |
a9bff4e6a1ad903c6ba4a3b7995481d49ae72191 | Fix for the DefaultViewAttribute throws bug. | ZocDoc/ServiceStack,ZocDoc/ServiceStack,NServiceKit/NServiceKit,nataren/NServiceKit,timba/NServiceKit,timba/NServiceKit,timba/NServiceKit,MindTouch/NServiceKit,nataren/NServiceKit,nataren/NServiceKit,MindTouch/NServiceKit,NServiceKit/NServiceKit,nataren/NServiceKit,MindTouch/NServiceKit,timba/NServiceKit,MindTouch/NSer... | src/ServiceStack.ServiceInterface/DefaultViewAttribute.cs | src/ServiceStack.ServiceInterface/DefaultViewAttribute.cs | using System;
using ServiceStack.ServiceHost;
namespace ServiceStack.ServiceInterface
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public class DefaultViewAttribute : RequestFilterAttribute
{
public string View { get; set; }
... | using System;
using ServiceStack.ServiceHost;
namespace ServiceStack.ServiceInterface
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public class DefaultViewAttribute : RequestFilterAttribute
{
public string View { get; set; }
... | bsd-3-clause | C# |
d01bdd80570940dc02a807fc760d0204f7f49a3b | Add useful doc comment about NameInModule. | marekr/atpgm.avrxml | RegisterGroup.cs | RegisterGroup.cs | #region License Information (MIT)
/*
The MIT License (MIT)
Copyright (c) 2014 Marek Roszko
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 restriction, including with... | #region License Information (MIT)
/*
The MIT License (MIT)
Copyright (c) 2014 Marek Roszko
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 restriction, including with... | mit | C# |
6e1ced534a10ce3ca96109cb701e7371b2da0613 | Delete commented out doc code | LBreedlove/Toml.net | Toml/Document.cs | Toml/Document.cs | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toml
{
/// <summary>
/// The root group for a Toml document.
/// </summary>
public class Document : Group
{
public static Document Create()
{
re... | using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toml
{
/*
public class Document : Group
{
#region Private Members
/// <summary>
/// The Groups contained in this document.
/// </summary>
p... | mit | C# |
746058ff6da172951d7b346085f7f44b023ff679 | Allow multiple files on the command line. | otac0n/Weave | Weave/Program.cs | Weave/Program.cs | // -----------------------------------------------------------------------
// <copyright file="Program.cs" company="(none)">
// Copyright © 2013 John Gietzen. All Rights Reserved.
// This source is subject to the MIT license.
// Please see license.txt for more information.
// </copyright>
// -------------------... | // -----------------------------------------------------------------------
// <copyright file="Program.cs" company="(none)">
// Copyright © 2013 John Gietzen. All Rights Reserved.
// This source is subject to the MIT license.
// Please see license.txt for more information.
// </copyright>
// -------------------... | mit | C# |
cb19d3dd0df79b3155c6d518b654a23fb3f31c45 | resolve name #51 | richardschneider/net-ipfs-core | src/CoreApi/IGenericApi.cs | src/CoreApi/IGenericApi.cs | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Ipfs.CoreApi
{
/// <summary>
/// Some miscellaneous methods.
/// </summary>
/// <seealso href="https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/MI... | using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Ipfs.CoreApi
{
/// <summary>
/// Some miscellaneous methods.
/// </summary>
/// <seealso href="https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/MI... | mit | C# |
004f851325a3148cf0ab84ac84d7eb0824afa592 | Fix item not removed bug #629 | Caliburn-Micro/Caliburn.Micro,serenabenny/Caliburn.Micro | src/Caliburn.Micro.Core/ConductorBaseWithActiveItem.cs | src/Caliburn.Micro.Core/ConductorBaseWithActiveItem.cs | using System.Threading;
using System.Threading.Tasks;
namespace Caliburn.Micro
{
/// <summary>
/// A base class for various implementations of <see cref="IConductor"/> that maintain an active item.
/// </summary>
/// <typeparam name="T">The type that is being conducted.</typeparam>
public abstract... | using System.Threading;
using System.Threading.Tasks;
namespace Caliburn.Micro
{
/// <summary>
/// A base class for various implementations of <see cref="IConductor"/> that maintain an active item.
/// </summary>
/// <typeparam name="T">The type that is being conducted.</typeparam>
public abstract... | mit | C# |
ace88367cf26b2ac86393187f20a15eab59de990 | add initial model to MasterSubscribe | leotsarev/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,leotsarev/joinrpg-net,joinrpg/joinrpg-net,joinrpg/joinrpg-net | src/JoinRpg.Portal/Views/GameSubscribe/ByMaster.cshtml | src/JoinRpg.Portal/Views/GameSubscribe/ByMaster.cshtml | @model JoinRpg.Web.Models.Subscribe.SubscribeByMasterPageViewModel
@{
ViewBag.Title = "Настройки подписок";
}
<h2>@ViewBag.Title</h2>
@Html.DisplayFor(model => model.UserDetails)
<h3>Подписки</h3>
<component type="typeof(JoinRpg.Web.GameSubscribe.MasterSubscribeList)"
render-mode="WebAssemblyPrerende... | @model JoinRpg.Web.Models.Subscribe.SubscribeByMasterPageViewModel
@{
ViewBag.Title = "Настройки подписок";
}
<h2>@ViewBag.Title</h2>
@Html.DisplayFor(model => model.UserDetails)
<h3>Подписки</h3>
<component type="typeof(JoinRpg.Web.GameSubscribe.MasterSubscribeList)"
render-mode="WebAssemblyPrerende... | mit | C# |
d528b98c64111639546197caa07ad4b438ed5ec8 | Use SwaggerRootBuilder | catcherwong/Nancy.Swagger,pinnstrat/snap-nancy-swagger,yahehe/Nancy.Swagger,khellang/Nancy.Swagger | src/Nancy.Swagger/Services/SwaggerMetadataConverter.cs | src/Nancy.Swagger/Services/SwaggerMetadataConverter.cs | using System;
using System.Collections.Generic;
using System.Linq;
using Swagger.ObjectModel;
using Swagger.ObjectModel.Builders;
namespace Nancy.Swagger.Services
{
[SwaggerApi]
public abstract class SwaggerMetadataConverter : ISwaggerMetadataConverter
{
public SwaggerRoot GetSwaggerJson()
... | using System;
using System.Collections.Generic;
using System.Linq;
using Swagger.ObjectModel;
namespace Nancy.Swagger.Services
{
[SwaggerApi]
public abstract class SwaggerMetadataConverter : ISwaggerMetadataConverter
{
public SwaggerRoot GetSwaggerJson()
{
return new SwaggerRoo... | mit | C# |
3b536e24f2c59fffa27dff259ed38fa71bc2b1fa | Make Translate method receive any object. | Secullum/secullum-i18n,Secullum/secullum-i18n | dotnet/Secullum.Internationalization/Translator.cs | dotnet/Secullum.Internationalization/Translator.cs | using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Secullum.Internationalization
{
public class Translator
{
private s... | using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Reflection;
using System.Text;
using System.Text.RegularExpressions;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace Secullum.Internationalization
{
public class Translator
{
private s... | mit | C# |
5d3861126461611cddfea0f9b4fd6ba3adeb16b2 | Fix line endings. | digibaraka/BotBuilder,jockorob/BotBuilder,mmatkow/BotBuilder,Clairety/ConnectMe,Clairety/ConnectMe,dr-em/BotBuilder,digibaraka/BotBuilder,stevengum97/BotBuilder,dr-em/BotBuilder,msft-shahins/BotBuilder,navaei/BotBuilder,Clairety/ConnectMe,yakumo/BotBuilder,msft-shahins/BotBuilder,dr-em/BotBuilder,jockorob/BotBuilder,st... | CSharp/Documentation/Overview.cs | CSharp/Documentation/Overview.cs | namespace Microsoft.Bot.Builder.Dialogs
{
///
/// \mainpage Getting Started
///
/// <ul style="list-style-type: none;">
/// <li>\ref overview </li>
/// <li>\ref install </li>
/// <li>\ref dialogs </li>
/// <li>\ref forms </li>
/// <li><a href="namespaces.html"><b>Namespace... | namespace Microsoft.Bot.Builder.Dialogs
{
///
/// \mainpage Getting Started
///
/// <ul style="list-style-type: none;">
/// <li>\ref overview </li>
/// <li>\ref install </li>
/// <li>\ref dialogs </li>
/// <li>\ref forms </li>
/// <li><a href="namespaces.html"><b>Namespace... | mit | C# |
567b3872f7fb9b7f4769ce4086ccb35c06447528 | Remove unnecessary statuscode assignment | mycroes/SupportManager,mycroes/SupportManager,mycroes/SupportManager | SupportManager.Web/Infrastructure/AdminAreaAccessFilter.cs | SupportManager.Web/Infrastructure/AdminAreaAccessFilter.cs | using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
namespace SupportManager.Web.Infrastructure;
internal class AdminAreaAccessFilter : IPageFilter
{
public void OnPageHandlerSelected(PageHandlerSelectedContext context)
{
}
public void OnPageHandlerExecuting(PageHandlerExecutingC... | using System.Net;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
namespace SupportManager.Web.Infrastructure;
internal class AdminAreaAccessFilter : IPageFilter
{
public void OnPageHandlerSelected(PageHandlerSelectedContext context)
{
}
public void OnPageHandlerExecuting(Pag... | mit | C# |
83a81cf26a6b3617a9ce65862c07ba8936bb9886 | Update to new Marshal() API | mono/dbus-sharp-glib,mono/dbus-sharp-glib | glib/TestExport.cs | glib/TestExport.cs | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using GLib;
using Gtk;
using NDesk.DBus;
using org.freedesktop.DBus;
public class TestGLib
{
public static void OnClick (object o, EventArgs args)
{
demo.Say ("Button clic... | // Copyright 2006 Alp Toker <alp@atoker.com>
// This software is made available under the MIT License
// See COPYING for details
using System;
using GLib;
using Gtk;
using NDesk.DBus;
using org.freedesktop.DBus;
public class TestGLib
{
public static void OnClick (object o, EventArgs args)
{
demo.Say ("Button clic... | mit | C# |
364747de485f93b2470610ec096f08a62d429484 | Make the header not suck | RightpointLabs/Pourcast,RightpointLabs/Pourcast,RightpointLabs/Pourcast,RightpointLabs/Pourcast,RightpointLabs/Pourcast | RightpointLabs.Pourcast.Web/Areas/Admin/Views/Shared/_Layout.cshtml | RightpointLabs.Pourcast.Web/Areas/Admin/Views/Shared/_Layout.cshtml | @using RightpointLabs.Pourcast.Web.Properties
@using System.Web.Optimization
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - @Resources.Application</title>
@Styles.Render("~/Content/css/bootstrap")
... | @using RightpointLabs.Pourcast.Web.Properties
@using System.Web.Optimization
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@ViewBag.Title - @Resources.Application</title>
@Styles.Render("~/Content/css/bootstrap")
... | mit | C# |
6ba82ececf2a2543cfcc9c970e0e2ddb4a8ce78f | Make var name more descriptive | Konash/arabic-support-unity | Assets/ArabicSupport/Scripts/Samples/FixArabic3DText.cs | Assets/ArabicSupport/Scripts/Samples/FixArabic3DText.cs | using UnityEngine;
using System.Collections;
using ArabicSupport;
public class FixArabic3DText : MonoBehaviour {
public bool showTashkeel = true;
public bool useHinduNumbers = true;
// Use this for initialization
void Start () {
TextMesh textMesh = gameObject.GetComponent<TextMesh>();
... | using UnityEngine;
using System.Collections;
using ArabicSupport;
public class FixArabic3DText : MonoBehaviour {
public bool showTashkeel = true;
public bool useHinduNumbers = true;
// Use this for initialization
void Start () {
TextMesh textMesh = gameObject.GetComponent<TextMesh>();
... | mit | C# |
7b1d0c3b2d98f92e5df8714519b62b0fe263cd4f | Rename file to .css for new stream | pvcbuild/pvc-less | src/PvcLess.cs | src/PvcLess.cs | using PvcCore;
using System.Collections.Generic;
using System.IO;
namespace PvcPlugins
{
public class PvcLess : PvcPlugin
{
public override string[] SupportedTags
{
get
{
return new string[] { ".less" };
}
}
public override I... | using PvcCore;
using System.Collections.Generic;
using System.IO;
namespace PvcPlugins
{
public class PvcLess : PvcPlugin
{
public override string[] SupportedTags
{
get
{
return new string[] { ".less" };
}
}
public override I... | mit | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.