text stringlengths 7 35.3M | id stringlengths 11 185 | metadata dict | __index_level_0__ int64 0 2.14k |
|---|---|---|---|
Imports System
Imports System.Collections
Public Class VBNonGenericForEach
Public Shared Sub M()
Dim collection = New ArrayList
For Each element In collection
Console.WriteLine(element)
Next
End Sub
End Class
| ILSpy/ICSharpCode.Decompiler.Tests/TestCases/VBPretty/VBNonGenericForEach.vb/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/VBPretty/VBNonGenericForEach.vb",
"repo_id": "ILSpy",
"token_count": 70
} | 209 |
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team
//
// 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, mo... | ILSpy/ICSharpCode.Decompiler.Tests/VBPrettyTestRunner.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler.Tests/VBPrettyTestRunner.cs",
"repo_id": "ILSpy",
"token_count": 2254
} | 210 |
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/CSharp/OutputVisitor/TextWriterTokenWriter.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/OutputVisitor/TextWriterTokenWriter.cs",
"repo_id": "ILSpy",
"token_count": 6531
} | 211 |
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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... | ILSpy/ICSharpCode.Decompiler/CSharp/Resolver/CSharpResolver.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Resolver/CSharpResolver.cs",
"repo_id": "ILSpy",
"token_count": 40285
} | 212 |
//
// CSharpModifierToken.cs
//
// Author:
// Mike Krüger <mkrueger@novell.com>
//
// Copyright (c) 2010 Novell, Inc (http://www.novell.com)
//
// 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... | ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/CSharpModifierToken.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/CSharpModifierToken.cs",
"repo_id": "ILSpy",
"token_count": 1998
} | 213 |
// Copyright (c) 2017 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/OutVarDeclarationExpression.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/OutVarDeclarationExpression.cs",
"repo_id": "ILSpy",
"token_count": 792
} | 214 |
//
// UndocumentedExpression.cs
//
// Author:
// Mike Krüger <mkrueger@novell.com>
//
// Copyright (c) 2010 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
... | ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/UndocumentedExpression.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/UndocumentedExpression.cs",
"repo_id": "ILSpy",
"token_count": 1166
} | 215 |
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/IAstVisitor.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/IAstVisitor.cs",
"repo_id": "ILSpy",
"token_count": 7714
} | 216 |
// Copyright (c) 2011-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/PatternMatching/Pattern.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/PatternMatching/Pattern.cs",
"repo_id": "ILSpy",
"token_count": 1255
} | 217 |
//
// MethodDeclaration.cs
//
// Author:
// Mike Krüger <mkrueger@novell.com>
//
// Copyright (c) 2009 Novell, Inc (http://www.novell.com)
//
// 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 t... | ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/TypeMembers/MethodDeclaration.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/TypeMembers/MethodDeclaration.cs",
"repo_id": "ILSpy",
"token_count": 1162
} | 218 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ICSharpCode.Decompiler.CSharp.Syntax;
namespace ICSharpCode.Decompiler.CSharp.Transforms
{
class FlattenSwitchBlocks : IAstTransform
{
public void Run(AstNode rootNode, TransformContext context)
{
foreach (var switch... | ILSpy/ICSharpCode.Decompiler/CSharp/Transforms/FlattenSwitchBlocks.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Transforms/FlattenSwitchBlocks.cs",
"repo_id": "ILSpy",
"token_count": 398
} | 219 |
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/CSharp/TypeSystem/AliasNamespaceReference.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/TypeSystem/AliasNamespaceReference.cs",
"repo_id": "ILSpy",
"token_count": 780
} | 220 |
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... | ILSpy/ICSharpCode.Decompiler/DecompilerException.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/DecompilerException.cs",
"repo_id": "ILSpy",
"token_count": 2294
} | 221 |
// Copyright (c) 2009-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/Documentation/XmlDocumentationElement.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/Documentation/XmlDocumentationElement.cs",
"repo_id": "ILSpy",
"token_count": 3053
} | 222 |
// Copyright (c) 2018 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ICSharpCode.Decompiler/IL/ControlFlow/AwaitInCatchTransform.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/IL/ControlFlow/AwaitInCatchTransform.cs",
"repo_id": "ILSpy",
"token_count": 6504
} | 223 |
// Copyright (c) 2014 Daniel Grunwald
//
// 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, merge,
// publi... | ILSpy/ICSharpCode.Decompiler/IL/ILReader.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/IL/ILReader.cs",
"repo_id": "ILSpy",
"token_count": 29353
} | 224 |
#nullable enable
// Copyright (c) 2014 Daniel Grunwald
//
// 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, modif... | ILSpy/ICSharpCode.Decompiler/IL/Instructions/Conv.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/IL/Instructions/Conv.cs",
"repo_id": "ILSpy",
"token_count": 4403
} | 225 |
#nullable enable
// Copyright (c) 2020 Siegfried Pammer
//
// 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... | ILSpy/ICSharpCode.Decompiler/IL/Instructions/MatchInstruction.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/IL/Instructions/MatchInstruction.cs",
"repo_id": "ILSpy",
"token_count": 3842
} | 226 |
// Copyright (c) 2020 Daniel Grunwald
//
// 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, merge,
// publ... | ILSpy/ICSharpCode.Decompiler/IL/Transforms/FixLoneIsInst.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/IL/Transforms/FixLoneIsInst.cs",
"repo_id": "ILSpy",
"token_count": 917
} | 227 |
// Copyright (c) 2017 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ICSharpCode.Decompiler/IL/Transforms/NullCoalescingTransform.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/IL/Transforms/NullCoalescingTransform.cs",
"repo_id": "ILSpy",
"token_count": 2338
} | 228 |
// Copyright (c) 2017 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ICSharpCode.Decompiler/IL/Transforms/TransformCollectionAndObjectInitializers.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/IL/Transforms/TransformCollectionAndObjectInitializers.cs",
"repo_id": "ILSpy",
"token_count": 7590
} | 229 |
// Copyright (c) 2014 Daniel Grunwald
//
// 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, merge,
// publ... | ILSpy/ICSharpCode.Decompiler/Metadata/OperandType.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/Metadata/OperandType.cs",
"repo_id": "ILSpy",
"token_count": 1848
} | 230 |
// Copyright (c) 2022 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ICSharpCode.Decompiler/PartialTypeInfo.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/PartialTypeInfo.cs",
"repo_id": "ILSpy",
"token_count": 742
} | 231 |
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/Semantics/InvocationResolveResult.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/Semantics/InvocationResolveResult.cs",
"repo_id": "ILSpy",
"token_count": 965
} | 232 |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Collections.Immutable;
using System.IO;
using System.IO.MemoryMappedFiles;
using System.Runtime.CompilerServices;
using System.Text;
namespace ICSharpCod... | ILSpy/ICSharpCode.Decompiler/SingleFileBundle.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/SingleFileBundle.cs",
"repo_id": "ILSpy",
"token_count": 1925
} | 233 |
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/TypeSystem/ISymbol.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/ISymbol.cs",
"repo_id": "ILSpy",
"token_count": 1032
} | 234 |
// Copyright (c) 2018 Daniel Grunwald
//
// 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, merge,
// publ... | ILSpy/ICSharpCode.Decompiler/TypeSystem/Implementation/MetadataParameter.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/Implementation/MetadataParameter.cs",
"repo_id": "ILSpy",
"token_count": 2452
} | 235 |
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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 us... | ILSpy/ICSharpCode.Decompiler/TypeSystem/ReflectionHelper.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/ReflectionHelper.cs",
"repo_id": "ILSpy",
"token_count": 6227
} | 236 |
#nullable enable
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
//
// 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... | ILSpy/ICSharpCode.Decompiler/Util/MultiDictionary.cs/0 | {
"file_path": "ILSpy/ICSharpCode.Decompiler/Util/MultiDictionary.cs",
"repo_id": "ILSpy",
"token_count": 1437
} | 237 |
# ilspycmd .NET 6.0 Tool
To install:
```
dotnet tool install ilspycmd -g
```
Help output (`ilspycmd ---help`):
```
ilspycmd: 8.0.0.7007
ICSharpCode.Decompiler: 8.0.0.7007
dotnet tool for decompiling .NET assemblies and generating portable PDBs
Usage: ilspycmd [options] <Assembly file name(s)>
Arguments:
Assem... | ILSpy/ICSharpCode.ILSpyCmd/README.md/0 | {
"file_path": "ILSpy/ICSharpCode.ILSpyCmd/README.md",
"repo_id": "ILSpy",
"token_count": 1030
} | 238 |
// Copyright (c) 2018 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ICSharpCode.ILSpyX/PdbProvider/DebugInfoUtils.cs/0 | {
"file_path": "ILSpy/ICSharpCode.ILSpyX/PdbProvider/DebugInfoUtils.cs",
"repo_id": "ILSpy",
"token_count": 1636
} | 239 |
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects Condition="'$(MSBuildVersion)' == '' Or '$(MSBuildVersion)' < '16.0'">$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
<HasSharedItems>true<... | ILSpy/ILSpy.AddIn.Shared/ILSpy.AddIn.Shared.projitems/0 | {
"file_path": "ILSpy/ILSpy.AddIn.Shared/ILSpy.AddIn.Shared.projitems",
"repo_id": "ILSpy",
"token_count": 1144
} | 240 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;... | ILSpy/ILSpy.BamlDecompiler.Tests/Cases/ReadonlyProperty.xaml.cs/0 | {
"file_path": "ILSpy/ILSpy.BamlDecompiler.Tests/Cases/ReadonlyProperty.xaml.cs",
"repo_id": "ILSpy",
"token_count": 194
} | 241 |
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33723.286
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ILSpy.Installer", "ILSpy.Installer\ILSpy.Installer.csproj", "{D27793B2-C3F9-4410-AAD0-E117BEDCCEB0}... | ILSpy/ILSpy.Installer.sln/0 | {
"file_path": "ILSpy/ILSpy.Installer.sln",
"repo_id": "ILSpy",
"token_count": 714
} | 242 |
// Copyright (c) 2018 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ILSpy.ReadyToRun/ReadyToRunOptions.cs/0 | {
"file_path": "ILSpy/ILSpy.ReadyToRun/ReadyToRunOptions.cs",
"repo_id": "ILSpy",
"token_count": 1261
} | 243 |
// Copyright (c) 2018 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ILSpy/Analyzers/AnalyzerScope.cs/0 | {
"file_path": "ILSpy/ILSpy/Analyzers/AnalyzerScope.cs",
"repo_id": "ILSpy",
"token_count": 2920
} | 244 |
<Application x:Class="ICSharpCode.ILSpy.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:styles="urn:TomsToolbox.Wpf.Styles"
xmlns:toms="urn:TomsToolbox"
xmlns:ilSpy="clr-... | ILSpy/ILSpy/App.xaml/0 | {
"file_path": "ILSpy/ILSpy/App.xaml",
"repo_id": "ILSpy",
"token_count": 520
} | 245 |
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... | ILSpy/ILSpy/Commands/ExportCommandAttribute.cs/0 | {
"file_path": "ILSpy/ILSpy/Commands/ExportCommandAttribute.cs",
"repo_id": "ILSpy",
"token_count": 1334
} | 246 |
// Copyright (c) 2018 Siegfried Pammer
//
// 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, merge,
// pub... | ILSpy/ILSpy/Commands/SelectPdbContextMenuEntry.cs/0 | {
"file_path": "ILSpy/ILSpy/Commands/SelectPdbContextMenuEntry.cs",
"repo_id": "ILSpy",
"token_count": 778
} | 247 |
<?xml version="1.0" encoding="utf-8"?>
<UserControl x:Class="ICSharpCode.ILSpy.Controls.ResourceStringTable"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:ICSharpCode.ILSpy.Controls"
xmlns:properties="... | ILSpy/ILSpy/Controls/ResourceStringTable.xaml/0 | {
"file_path": "ILSpy/ILSpy/Controls/ResourceStringTable.xaml",
"repo_id": "ILSpy",
"token_count": 1188
} | 248 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sod... | ILSpy/ILSpy/Images/FindAssembly.svg/0 | {
"file_path": "ILSpy/ILSpy/Images/FindAssembly.svg",
"repo_id": "ILSpy",
"token_count": 2194
} | 249 |
<DrawingGroup xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ClipGeometry="M0,0 V16 H16 V0 H0 Z">
<DrawingGroup Opacity="1">
<GeometryDrawing Geometry="F1 M16,16z M0,0z M0,0L16,0 16,16 0,16z">
<GeometryDrawing.Brush>
<SolidColorBrush Color="#FFF6F6F6" Opacity="0" />
</Geomet... | ILSpy/ILSpy/Images/MetadataFile.xaml/0 | {
"file_path": "ILSpy/ILSpy/Images/MetadataFile.xaml",
"repo_id": "ILSpy",
"token_count": 1599
} | 250 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sod... | ILSpy/ILSpy/Images/OverlayCompilerControlled.svg/0 | {
"file_path": "ILSpy/ILSpy/Images/OverlayCompilerControlled.svg",
"repo_id": "ILSpy",
"token_count": 1460
} | 251 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sod... | ILSpy/ILSpy/Images/VirtualMethod.svg/0 | {
"file_path": "ILSpy/ILSpy/Images/VirtualMethod.svg",
"repo_id": "ILSpy",
"token_count": 2138
} | 252 |
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
//
// 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, cop... | ILSpy/ILSpy/Languages/Languages.cs/0 | {
"file_path": "ILSpy/ILSpy/Languages/Languages.cs",
"repo_id": "ILSpy",
"token_count": 814
} | 253 |
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... | ILSpy/ILSpy/Metadata/CorTables/FieldRVATableTreeNode.cs/0 | {
"file_path": "ILSpy/ILSpy/Metadata/CorTables/FieldRVATableTreeNode.cs",
"repo_id": "ILSpy",
"token_count": 1480
} | 254 |
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... | ILSpy/ILSpy/Metadata/CorTables/ParamTableTreeNode.cs/0 | {
"file_path": "ILSpy/ILSpy/Metadata/CorTables/ParamTableTreeNode.cs",
"repo_id": "ILSpy",
"token_count": 1178
} | 255 |
<Control x:Class="ICSharpCode.ILSpy.Metadata.HexFilterControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="ht... | ILSpy/ILSpy/Metadata/HexFilterControl.xaml/0 | {
"file_path": "ILSpy/ILSpy/Metadata/HexFilterControl.xaml",
"repo_id": "ILSpy",
"token_count": 660
} | 256 |
<UserControl x:Class="ICSharpCode.ILSpy.Search.SearchPane" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:pro... | ILSpy/ILSpy/Search/SearchPane.xaml/0 | {
"file_path": "ILSpy/ILSpy/Search/SearchPane.xaml",
"repo_id": "ILSpy",
"token_count": 1741
} | 257 |
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... | ILSpy/ILSpy/TextView/FoldingCommands.cs/0 | {
"file_path": "ILSpy/ILSpy/TextView/FoldingCommands.cs",
"repo_id": "ILSpy",
"token_count": 1177
} | 258 |
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:themes="clr-namespace:ICSharpCode.ILSpy.Themes">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Base.Dark.xa... | ILSpy/ILSpy/Themes/Theme.VSCodeDarkPlus.xaml/0 | {
"file_path": "ILSpy/ILSpy/Themes/Theme.VSCodeDarkPlus.xaml",
"repo_id": "ILSpy",
"token_count": 2887
} | 259 |
// Copyright (c) 2011 AlphaSierraPapa for the SharpDevelop Team
//
// 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, cop... | ILSpy/ILSpy/TreeNodes/ResourceNodes/ImageResourceEntryNode.cs/0 | {
"file_path": "ILSpy/ILSpy/TreeNodes/ResourceNodes/ImageResourceEntryNode.cs",
"repo_id": "ILSpy",
"token_count": 909
} | 260 |
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
<add key="dotnet8-transport" va... | ILSpy/NuGet.config/0 | {
"file_path": "ILSpy/NuGet.config",
"repo_id": "ILSpy",
"token_count": 401
} | 261 |
// Copyright (c) 2020 AlphaSierraPapa for the SharpDevelop Team
//
// 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, co... | ILSpy/SharpTreeView/SharpTreeView.cs/0 | {
"file_path": "ILSpy/SharpTreeView/SharpTreeView.cs",
"repo_id": "ILSpy",
"token_count": 8749
} | 262 |
{
"profiles": {
"TestPlugin": {
"commandName": "Executable",
"executablePath": ".\\ILSpy.exe",
"commandLineArgs": "/separate"
}
}
} | ILSpy/TestPlugin/Properties/launchSettings.json/0 | {
"file_path": "ILSpy/TestPlugin/Properties/launchSettings.json",
"repo_id": "ILSpy",
"token_count": 75
} | 263 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEngine.Bindings;
using UnityEngine.U2D;
namespace UnityEditor.U2D
{
[NativeHeader("Editor/Src/2D/SpriteEditorExtension.h")]
p... | UnityCsReference/Editor/Mono/2D/Common/ScriptBindings/SpriteEditorExtension.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/2D/Common/ScriptBindings/SpriteEditorExtension.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 484
} | 264 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine.Bindings;
using UnityEngine.Scripting;
using UnityEngine.Scripting.APIUpdating;
using UnityEngine.Playables;
using UnityEngine;
usi... | UnityCsReference/Editor/Mono/Animation/AnimationMode.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Animation/AnimationMode.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 2952
} | 265 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
using Object = UnityEngine.Object;
using UnityEngine.Playables;
using UnityE... | UnityCsReference/Editor/Mono/Animation/AnimationWindow/AnimationWindowControl.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Animation/AnimationWindow/AnimationWindowControl.cs",
"repo_id": "UnityCsReference",
"token_count": 19813
} | 266 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Globalization;
using System.Linq;
using System.IO;
using System.Collections.Generic;
using UnityEditor;
using UnityEditor.Animations;
usi... | UnityCsReference/Editor/Mono/Animation/AnimationWindow/AnimationWindowUtility.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Animation/AnimationWindow/AnimationWindowUtility.cs",
"repo_id": "UnityCsReference",
"token_count": 28073
} | 267 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
namespace UnityEditor
{
internal class EditorGUIExt
{
... | UnityCsReference/Editor/Mono/Animation/AnimationWindow/Deprecated/EditorGUIExt.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Animation/AnimationWindow/Deprecated/EditorGUIExt.cs",
"repo_id": "UnityCsReference",
"token_count": 22412
} | 268 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using UnityEngine.Bindings;
using UnityEditor;
using Object = UnityEngine.Object;
using uei = UnityEngine.Internal;
namespace Unit... | UnityCsReference/Editor/Mono/Animation/GameObjectRecorder.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Animation/GameObjectRecorder.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 2218
} | 269 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Linq;
using UnityEngine;
namespace UnityEditor
{
public static class GizmoUtility
{
const float k_MinFadeGizmoSize = 1f;... | UnityCsReference/Editor/Mono/Annotation/GizmoUtility.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Annotation/GizmoUtility.cs",
"repo_id": "UnityCsReference",
"token_count": 1215
} | 270 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using UnityEditor.Profiling;
namespace UnityEditor.Experimental
{
public abstract class AssetsModifiedProcessor... | UnityCsReference/Editor/Mono/AssetDatabase/AssetsModifiedProcessor.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/AssetDatabase/AssetsModifiedProcessor.cs",
"repo_id": "UnityCsReference",
"token_count": 688
} | 271 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEngine.Bindings;
namespace UnityEditor
{
[NativeHeader("Editor/Src/AssetPipeline/ShaderImporter.h")]
public sealed partial cl... | UnityCsReference/Editor/Mono/AssetPipeline/ShaderImporter.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/AssetPipeline/ShaderImporter.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 258
} | 272 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using UnityEngine.Bindings;
using UnityEngine.Experimental.Rendering; //for GraphicsFormat
namespace UnityEditor
{
[NativeHeade... | UnityCsReference/Editor/Mono/AssetPipeline/TextureUtil.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/AssetPipeline/TextureUtil.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 2536
} | 273 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using UnityEngine.Bindings;
namespace UnityEditor
{
[NativeHeader("Editor/Mono/AsyncHTTPClient.bindings.h")]
internal part... | UnityCsReference/Editor/Mono/AsyncHTTPClient.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/AsyncHTTPClient.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 365
} | 274 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Globalization;
using UnityEditor.Audio;
using UnityEngine;
namespace UnityEditor
{
class ParamEqGUI : IAudioEffectPluginGUI
{
... | UnityCsReference/Editor/Mono/Audio/Effects/ParamEQGUI.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Audio/Effects/ParamEQGUI.cs",
"repo_id": "UnityCsReference",
"token_count": 4503
} | 275 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using System.Collections.Generic;
using System.Linq;
using System;
using UnityEditorInternal;
using UnityEditor.Audio;
using UnityEditor.IMGUI.Co... | UnityCsReference/Editor/Mono/Audio/Mixer/GUI/AudioMixerWindow.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Audio/Mixer/GUI/AudioMixerWindow.cs",
"repo_id": "UnityCsReference",
"token_count": 15710
} | 276 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Collections;
using UnityEditor;
using Uni... | UnityCsReference/Editor/Mono/BlendTree.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/BlendTree.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 2002
} | 277 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.IO;
using UnityEngine;
using UnityEditor;
using UnityEditorInternal;
using UnityEditor.Modules;
using System.Collections.Generic;
using S... | UnityCsReference/Editor/Mono/BuildPipeline/DesktopStandaloneUserBuildSettings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/BuildPipeline/DesktopStandaloneUserBuildSettings.cs",
"repo_id": "UnityCsReference",
"token_count": 174
} | 278 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Runtime.InteropServices;
using UnityEngine;
using UnityEngine.Bindings;
using UnityEngine.Scripting;
namespace UnityEditor.Build.Profile... | UnityCsReference/Editor/Mono/BuildProfile/BuildProfile.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/BuildProfile/BuildProfile.cs",
"repo_id": "UnityCsReference",
"token_count": 2979
} | 279 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using RequiredByNativeCodeAttribute = UnityEngine.Scripting.RequiredByNativeCodeAttribute;
using System;
using System.Collections.Generic;
using UnityEditorInterna... | UnityCsReference/Editor/Mono/Callbacks.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Callbacks.cs",
"repo_id": "UnityCsReference",
"token_count": 1574
} | 280 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
namespace UnityEditor
{
public static class ClipboardUtil... | UnityCsReference/Editor/Mono/ClipboardUtility.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/ClipboardUtility.cs",
"repo_id": "UnityCsReference",
"token_count": 4175
} | 281 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine.Bindings;
namespace UnityEditor.Compilation
{
[Flags]
enum CompilationSetupErrors // Keep in sync with enum Compilation... | UnityCsReference/Editor/Mono/CompilationPipeline.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/CompilationPipeline.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 377
} | 282 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using UnityEditor.Modules;
using UnityEditorInternal;
namespace UnityEditor.DeploymentTargets
{
internal class ... | UnityCsReference/Editor/Mono/DeploymentTargets/DefaultDeploymentTargetsExtension.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/DeploymentTargets/DefaultDeploymentTargetsExtension.cs",
"repo_id": "UnityCsReference",
"token_count": 1046
} | 283 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Linq;
using UnityEngine.Scripting;
using UnityEngine.Bindings;
using System.Runtime.InteropServices;
using JetBrains.Annotations;
using O... | UnityCsReference/Editor/Mono/EditorBuildSettings.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/EditorBuildSettings.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 2542
} | 284 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
//#define DEBUG_EDITOR_RESOURCES // ONLY NEEDED BY STYLING DEVS AND DESIGNERS.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
... | UnityCsReference/Editor/Mono/EditorResources.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/EditorResources.cs",
"repo_id": "UnityCsReference",
"token_count": 8325
} | 285 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using UnityEditor.Compilation;
using UnityEditor.Experimental;
using UnityEdit... | UnityCsReference/Editor/Mono/EditorUtility.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/EditorUtility.cs",
"repo_id": "UnityCsReference",
"token_count": 15535
} | 286 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Runtime.InteropServices;
using UnityEngine;
using UnityEngine.Bindings;
using UnityEngine.LightTransport;
using UnityEngine.Scripting;
n... | UnityCsReference/Editor/Mono/GI/LightBaker.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GI/LightBaker.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 14151
} | 287 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using Unity.Collections;
using Unity.Collections.LowLevel.Unsafe;
using UnityE... | UnityCsReference/Editor/Mono/GI/WintermuteDeviceContext.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GI/WintermuteDeviceContext.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 1746
} | 288 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
namespace UnityEditor
{
[Serializable, Obsolete]
public class ColorPickerHDRConfig
{
public float minBrightnes... | UnityCsReference/Editor/Mono/GUI/ColorPicker.deprecated.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUI/ColorPicker.deprecated.cs",
"repo_id": "UnityCsReference",
"token_count": 323
} | 289 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEditor;
using System.Collections.Generic;
using System.Collections;
using System.Reflection;
using UnityEditorInternal;
namespace Un... | UnityCsReference/Editor/Mono/GUI/FlowLayout.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUI/FlowLayout.cs",
"repo_id": "UnityCsReference",
"token_count": 6164
} | 290 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace UnityEditor
{
/// *undocumented*
internal class ListViewShared
... | UnityCsReference/Editor/Mono/GUI/ListViewShared.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUI/ListViewShared.cs",
"repo_id": "UnityCsReference",
"token_count": 17196
} | 291 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEngine.Scripting;
using UnityEditor;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
namespace U... | UnityCsReference/Editor/Mono/GUI/PopupWindowWithoutFocus.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUI/PopupWindowWithoutFocus.cs",
"repo_id": "UnityCsReference",
"token_count": 1649
} | 292 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Reflection;
using UnityEngine;
using UnityEngine.UIElements;
namespace Uni... | UnityCsReference/Editor/Mono/GUI/Toolbars/EditorToolbarManager.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUI/Toolbars/EditorToolbarManager.cs",
"repo_id": "UnityCsReference",
"token_count": 2079
} | 293 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace UnityEditor.IMGUI.Controls
{
[Serializable]
public class Mu... | UnityCsReference/Editor/Mono/GUI/TreeView/MultiColumnHeaderState.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUI/TreeView/MultiColumnHeaderState.cs",
"repo_id": "UnityCsReference",
"token_count": 3511
} | 294 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEditor.IMGUI.Controls;
using UnityEngine;
namespace UnityEditor.TreeViewExamples
{
... | UnityCsReference/Editor/Mono/GUI/TreeView/TreeViewTests/TreeViewTestBackEnd.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUI/TreeView/TreeViewTests/TreeViewTestBackEnd.cs",
"repo_id": "UnityCsReference",
"token_count": 3845
} | 295 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Collections.Generic;
using UnityEngine;
namespace UnityEditor
{
class GUILayoutInspectView : BaseInspectView
{
Vector2 m... | UnityCsReference/Editor/Mono/GUIDebugger/GUILayoutInspectView.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GUIDebugger/GUILayoutInspectView.cs",
"repo_id": "UnityCsReference",
"token_count": 2503
} | 296 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using System;
namespace UnityEditor
{
// Resolution/Aspect ratio menu for the GameView, with an optional toggle for low-resolution aspect ra... | UnityCsReference/Editor/Mono/GameView/GameViewSizeMenu.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/GameView/GameViewSizeMenu.cs",
"repo_id": "UnityCsReference",
"token_count": 1418
} | 297 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using UnityEngine.Bindings;
using Object = UnityEngine.Object;
namespace UnityEditor
{
[NativeHeader("Runtime/Graphics/Mesh/St... | UnityCsReference/Editor/Mono/Graphics/StaticBatchingEditorHelper.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Graphics/StaticBatchingEditorHelper.cs",
"repo_id": "UnityCsReference",
"token_count": 193
} | 298 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEditor;
using UnityEngine;
namespace UnityEditorInternal
{
internal class FreeRotate
{
static readonly Color s_DimmingColor = new Color(... | UnityCsReference/Editor/Mono/Handles/FreeRotate.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Handles/FreeRotate.cs",
"repo_id": "UnityCsReference",
"token_count": 3324
} | 299 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using System.Runtime.InteropServices;
using UnityEngine.Bindings;
using UnityEngine.Scripting;
namespace UnityEditor.Hardware
{
[RequiredByNative... | UnityCsReference/Editor/Mono/Hardware.bindings.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Hardware.bindings.cs",
"repo_id": "UnityCsReference",
"token_count": 1594
} | 300 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
namespace UnityEditor;
internal interface IPlayerConnectionPlatformProperties : IPlatformProperties
{
// The BuildPipeline.DoesBuildTargetSupportPlayerConnecti... | UnityCsReference/Editor/Mono/IPlayerConnectionPlatformProperties.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/IPlayerConnectionPlatformProperties.cs",
"repo_id": "UnityCsReference",
"token_count": 251
} | 301 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEditor.AnimatedValues;
using UnityEngine;
using UnityEditor.Build;
using System.Collections.Generic;
using System;
using UnityEditor.AssetImporters;
usin... | UnityCsReference/Editor/Mono/ImportSettings/TextureImporterInspector.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/ImportSettings/TextureImporterInspector.cs",
"repo_id": "UnityCsReference",
"token_count": 42876
} | 302 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
namespace UnityEditor
{
[CustomEditor(typeof(AudioLowPassFilter))]
[CanEditMultipleObjects]
internal class AudioLowPassFilterInspect... | UnityCsReference/Editor/Mono/Inspector/AudioLowPassFilterInspector.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Inspector/AudioLowPassFilterInspector.cs",
"repo_id": "UnityCsReference",
"token_count": 620
} | 303 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEditor;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEditorInternal;
using System.Linq;
using... | UnityCsReference/Editor/Mono/Inspector/Avatar/AvatarSkeletonDrawer.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Inspector/Avatar/AvatarSkeletonDrawer.cs",
"repo_id": "UnityCsReference",
"token_count": 3149
} | 304 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
using System.Collections.Generic;
using UnityEditor.AssetImporters;
using System.Linq;
using UnityEditor.VersionControl;
using Unit... | UnityCsReference/Editor/Mono/Inspector/ComputeShaderImporterInspector.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Inspector/ComputeShaderImporterInspector.cs",
"repo_id": "UnityCsReference",
"token_count": 575
} | 305 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System;
using UnityEngine;
namespace UnityEditor.IMGUI.Controls
{
internal class MultiselectDataSource : AdvancedDropdownDataSource
{
private... | UnityCsReference/Editor/Mono/Inspector/Core/AdvancedDropdown/DataSources/MultiselectDataSource.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Inspector/Core/AdvancedDropdown/DataSources/MultiselectDataSource.cs",
"repo_id": "UnityCsReference",
"token_count": 1495
} | 306 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using System.Linq;
using UnityEngine;
using UnityEngine.UIElements;
namespace UnityEditor
{
// Built-in DecoratorDrawers. See matching attributes in PropertyAt... | UnityCsReference/Editor/Mono/Inspector/Core/ScriptAttributeGUI/Implementations/DecoratorDrawers.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Inspector/Core/ScriptAttributeGUI/Implementations/DecoratorDrawers.cs",
"repo_id": "UnityCsReference",
"token_count": 861
} | 307 |
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using UnityEditorInternal;
using System.Collections.Generic;
using System.IO;
using AnimatedBool = UnityEditor.AnimatedValues.AnimBool;
using Uni... | UnityCsReference/Editor/Mono/Inspector/CustomRenderTextureEditor.cs/0 | {
"file_path": "UnityCsReference/Editor/Mono/Inspector/CustomRenderTextureEditor.cs",
"repo_id": "UnityCsReference",
"token_count": 10966
} | 308 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.