text
stringlengths
7
35.3M
id
stringlengths
11
185
metadata
dict
__index_level_0__
int64
0
2.14k
namespace ET { [Message] public class A2NetClient_Message: MessageObject, IMessage { public static A2NetClient_Message Create() { return ObjectPool.Instance.Fetch(typeof(A2NetClient_Message)) as A2NetClient_Message; } public override void Dispose() { ...
ET/Unity/Assets/Scripts/Model/Client/Demo/NetClient/A2NetClient_Message.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Client/Demo/NetClient/A2NetClient_Message.cs", "repo_id": "ET", "token_count": 1005 }
147
namespace ET.Client { public struct LSSceneChangeStart { public Room Room; } public struct LSSceneInitFinish { } }
ET/Unity/Assets/Scripts/Model/Client/LockStep/EventType.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Client/LockStep/EventType.cs", "repo_id": "ET", "token_count": 69 }
148
fileFormatVersion: 2 guid: 45bbe48eea3422945a554d1b4f923a6f folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Generate.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Generate.meta", "repo_id": "ET", "token_count": 71 }
149
fileFormatVersion: 2 guid: f6cb781d7426010449c63c186cc69c24 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Generate/ClientServer.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Generate/ClientServer.meta", "repo_id": "ET", "token_count": 67 }
150
using System; using System.Collections.Generic; using MongoDB.Bson.Serialization.Attributes; using MongoDB.Bson.Serialization.Options; using System.ComponentModel; namespace ET { [Config] public partial class AIConfigCategory : Singleton<AIConfigCategory>, IMerge { [BsonElement] [BsonDictio...
ET/Unity/Assets/Scripts/Model/Generate/Server/Config/AIConfig.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Generate/Server/Config/AIConfig.cs", "repo_id": "ET", "token_count": 922 }
151
fileFormatVersion: 2 guid: 2328265af4362554bb7e63612eafcc2e MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Generate/Server/ConfigPartial/StartSceneConfig.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Generate/Server/ConfigPartial/StartSceneConfig.cs.meta", "repo_id": "ET", "token_count": 93 }
152
namespace ET.Server { [ComponentOf(typeof(Scene))] public class BenchmarkClientComponent: Entity, IAwake { } }
ET/Unity/Assets/Scripts/Model/Server/Benchmark/BenchmarkClientComponent.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Server/Benchmark/BenchmarkClientComponent.cs", "repo_id": "ET", "token_count": 52 }
153
fileFormatVersion: 2 guid: 886c7abbc951ad14197420f7db46033e folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Server/Demo/Watcher.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Server/Demo/Watcher.meta", "repo_id": "ET", "token_count": 67 }
154
fileFormatVersion: 2 guid: 21a0976ebbc13407da27f69d27ed3976 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Server/LockStep/Match/MatchComponent.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Server/LockStep/Match/MatchComponent.cs.meta", "repo_id": "ET", "token_count": 92 }
155
fileFormatVersion: 2 guid: 15d2e4888958d964399187bc1a29f0ec MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Server/Module/ActorLocation/LocationComponent.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Server/Module/ActorLocation/LocationComponent.cs.meta", "repo_id": "ET", "token_count": 94 }
156
fileFormatVersion: 2 guid: e0de2584d06993846b20ba44c51b8a0b MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Server/Module/Http/HttpComponent.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Server/Module/Http/HttpComponent.cs.meta", "repo_id": "ET", "token_count": 96 }
157
using System.Collections.Generic; namespace ET.Server { [ChildOf(typeof(RobotCaseComponent))] public class RobotCase: Entity, IAwake, IDestroy { public ETCancellationToken CancellationToken; public string CommandLine; public HashSet<long> Scenes { get; } = new HashSet<long>(); ...
ET/Unity/Assets/Scripts/Model/Server/Module/RobotCase/RobotCase.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Server/Module/RobotCase/RobotCase.cs", "repo_id": "ET", "token_count": 127 }
158
namespace ET { public static class ConstFiberId { public const int Main = -1; public const int NetInner = -2; public const int NetClient = -3; public const int DB = -4; } }
ET/Unity/Assets/Scripts/Model/Share/ConstFiberId.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/ConstFiberId.cs", "repo_id": "ET", "token_count": 98 }
159
using System; namespace ET { public interface ILSUpdate { } public interface ILSUpdateSystem: ISystemType { void Run(LSEntity o); } [LSEntitySystem] public abstract class LSUpdateSystem<T>: SystemObject, ILSUpdateSystem where T: LSEntity, ILSUpdate { void ILSUp...
ET/Unity/Assets/Scripts/Model/Share/LockStep/ILSUpdateSystem.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/LockStep/ILSUpdateSystem.cs", "repo_id": "ET", "token_count": 370 }
160
using System; using MemoryPack; using MongoDB.Bson.Serialization.Attributes; using TrueSync; namespace ET { [ChildOf(typeof(LSUnitComponent))] [MemoryPackable] public partial class LSUnit: LSEntity, IAwake, ISerializeToEntity { public TSVector Position { get; set...
ET/Unity/Assets/Scripts/Model/Share/LockStep/LSUnit.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/LockStep/LSUnit.cs", "repo_id": "ET", "token_count": 339 }
161
using System; namespace ET { public class AIHandlerAttribute: BaseAttribute { } [AIHandler] public abstract class AAIHandler: HandlerObject { // 检查是否满足条件 public abstract int Check(AIComponent aiComponent, AIConfig aiConfig); // 协程编写必须可以取消 public abstract ET...
ET/Unity/Assets/Scripts/Model/Share/Module/AI/AAIHandler.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/Module/AI/AAIHandler.cs", "repo_id": "ET", "token_count": 201 }
162
fileFormatVersion: 2 guid: 0498d217572ef624cb2f066e11f028a9 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Share/Module/Console/IConsoleHandler.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/Module/Console/IConsoleHandler.cs.meta", "repo_id": "ET", "token_count": 94 }
163
using System; namespace ET { public class MessageSessionHandlerAttribute: BaseAttribute { public SceneType SceneType { get; } public MessageSessionHandlerAttribute(SceneType sceneType) { this.SceneType = sceneType; } } }
ET/Unity/Assets/Scripts/Model/Share/Module/Message/MessageSessionHandlerAttribute.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/Module/Message/MessageSessionHandlerAttribute.cs", "repo_id": "ET", "token_count": 112 }
164
namespace ET { public interface INumericWatcher { void Run(Unit unit, NumbericChange args); } }
ET/Unity/Assets/Scripts/Model/Share/Module/Numeric/INumericWatcher.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/Module/Numeric/INumericWatcher.cs", "repo_id": "ET", "token_count": 39 }
165
fileFormatVersion: 2 guid: ed3aaad9f0ba38b4882cf33a7a5cae86 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Share/Module/Scene.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/Module/Scene.meta", "repo_id": "ET", "token_count": 71 }
166
fileFormatVersion: 2 guid: 28950c95a2aee3c4782c59819479124a folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/Model/Share/Plugins.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/Model/Share/Plugins.meta", "repo_id": "ET", "token_count": 68 }
167
using UnityEngine; using UnityEngine.UI; namespace ET.Client { [ComponentOf(typeof(UI))] public class UIHelpComponent : Entity, IAwake { public Text text; } }
ET/Unity/Assets/Scripts/ModelView/Client/Demo/UI/UIHelp/UIHelpComponent.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ModelView/Client/Demo/UI/UIHelp/UIHelpComponent.cs", "repo_id": "ET", "token_count": 64 }
168
using UnityEngine; namespace ET.Client { [ComponentOf(typeof(Unit))] public class GameObjectComponent: Entity, IAwake, IDestroy { private GameObject gameObject; public GameObject GameObject { get { return this.gameObject; } ...
ET/Unity/Assets/Scripts/ModelView/Client/Demo/Unit/GameObjectComponent.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ModelView/Client/Demo/Unit/GameObjectComponent.cs", "repo_id": "ET", "token_count": 268 }
169
 using UnityEngine; using UnityEngine.UI; namespace ET.Client { [ComponentOf(typeof(UI))] public class UILSLobbyComponent : Entity, IAwake { public GameObject enterMap; public Text text; public Button replay; public InputField replayPath; } }
ET/Unity/Assets/Scripts/ModelView/Client/LockStep/UI/UILSLobby/UILSLobbyComponent.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ModelView/Client/LockStep/UI/UILSLobby/UILSLobbyComponent.cs", "repo_id": "ET", "token_count": 92 }
170
fileFormatVersion: 2 guid: f6f2376fee49a244889f2068ef220f29 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ModelView/Client/Module/UI/AUIEvent.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ModelView/Client/Module/UI/AUIEvent.cs.meta", "repo_id": "ET", "token_count": 93 }
171
fileFormatVersion: 2 guid: 2d2febae4460b594db87d4653c77323d MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ModelView/Client/Plugins/Example/ModelView.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ModelView/Client/Plugins/Example/ModelView.cs.meta", "repo_id": "ET", "token_count": 94 }
172
fileFormatVersion: 2 guid: 125579f6ccd4db0489697c78faddeeb7 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Core/RcAtomicInteger.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Core/RcAtomicInteger.cs.meta", "repo_id": "ET", "token_count": 94 }
173
fileFormatVersion: 2 guid: 5f1fa2c501e92ff419faa5ac39a8267d MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Core/RcImmutableArray.Enumerable.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Core/RcImmutableArray.Enumerable.cs.meta", "repo_id": "ET", "token_count": 95 }
174
fileFormatVersion: 2 guid: 3fe28e25a997118408602e0d0030b9ee MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Core/RcTelemetry.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Core/RcTelemetry.cs.meta", "repo_id": "ET", "token_count": 93 }
175
namespace DotRecast.Detour.Crowd { public class DtObstacleAvoidanceParams { public float velBias; public float weightDesVel; public float weightCurVel; public float weightSide; public float weightToi; public float horizTime; public int gridSize; ...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Crowd/DtObstacleAvoidanceParams.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Crowd/DtObstacleAvoidanceParams.cs", "repo_id": "ET", "token_count": 721 }
176
/* Copyright (c) 2009-2010 Mikko Mononen memon@inside.org recast4j copyright (c) 2015-2019 Piotr Piastucki piotr@jtilia.org DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages ar...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Crowd/DtProximityGrid.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Crowd/DtProximityGrid.cs", "repo_id": "ET", "token_count": 2140 }
177
/* recast4j copyright (c) 2021 Piotr Piastucki piotr@jtilia.org DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted t...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Dynamic/Io/VoxelFileWriter.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Dynamic/Io/VoxelFileWriter.cs", "repo_id": "ET", "token_count": 1836 }
178
using System.Collections.Generic; using DotRecast.Core; using DotRecast.Recast; using static DotRecast.Recast.RcConstants; namespace DotRecast.Detour.Extras.Jumplink { public class EdgeExtractor { public JumpEdge[] ExtractEdges(RcPolyMesh mesh) { List<JumpEdge> edges = new List<Jum...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Extras/Jumplink/EdgeExtractor.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Extras/Jumplink/EdgeExtractor.cs", "repo_id": "ET", "token_count": 2015 }
179
using System; using System.Collections.Generic; using System.Linq; using DotRecast.Core; using DotRecast.Recast; using static DotRecast.Core.RcMath; namespace DotRecast.Detour.Extras.Jumplink { public class JumpLinkBuilder { private readonly EdgeExtractor edgeExtractor = new EdgeExtractor(); pr...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Extras/Jumplink/JumpLinkBuilder.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Extras/Jumplink/JumpLinkBuilder.cs", "repo_id": "ET", "token_count": 2034 }
180
using System; using DotRecast.Core; namespace DotRecast.Detour.Extras.Jumplink { public class Trajectory { public float Lerp(float f, float g, float u) { return u * g + (1f - u) * f; } public virtual RcVec3f Apply(RcVec3f start, RcVec3f end, float u) { ...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Extras/Jumplink/Trajectory.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.Extras/Jumplink/Trajectory.cs", "repo_id": "ET", "token_count": 193 }
181
fileFormatVersion: 2 guid: fd6e31654ac8b9146a4bd9487da362c2 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.TileCache/DtObstacleState.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.TileCache/DtObstacleState.cs.meta", "repo_id": "ET", "token_count": 95 }
182
fileFormatVersion: 2 guid: 6df6169bf50d87a40a3856473d6f7fbf MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.TileCache/ObstacleRequest.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour.TileCache/ObstacleRequest.cs.meta", "repo_id": "ET", "token_count": 95 }
183
/* recast4j copyright (c) 2021 Piotr Piastucki piotr@jtilia.org DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted t...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DefaultQueryHeuristic.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DefaultQueryHeuristic.cs", "repo_id": "ET", "token_count": 495 }
184
/* Copyright (c) 2009-2010 Mikko Mononen memon@inside.org recast4j copyright (c) 2015-2019 Piotr Piastucki piotr@jtilia.org DotRecast Copyright (c) 2023 Choi Ikpil ikpil@naver.com This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages ar...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DtMeshHeader.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DtMeshHeader.cs", "repo_id": "ET", "token_count": 1462 }
185
using DotRecast.Core; namespace DotRecast.Detour { public class DtNoOpDtPolygonByCircleConstraint : IDtPolygonByCircleConstraint { public static readonly DtNoOpDtPolygonByCircleConstraint Shared = new DtNoOpDtPolygonByCircleConstraint(); private DtNoOpDtPolygonByCircleConstraint() { ...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DtNoOpDtPolygonByCircleConstraint.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DtNoOpDtPolygonByCircleConstraint.cs", "repo_id": "ET", "token_count": 217 }
186
using System; using DotRecast.Core; namespace DotRecast.Detour { /** * Calculate the intersection between a polygon and a circle. A dodecagon is used as an approximation of the circle. */ public class DtStrictDtPolygonByCircleConstraint : IDtPolygonByCircleConstraint { private const int ...
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DtStrictDtPolygonByCircleConstraint.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/DtStrictDtPolygonByCircleConstraint.cs", "repo_id": "ET", "token_count": 1287 }
187
fileFormatVersion: 2 guid: 11e52dbda0081a04aaf92a7847e5078f folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/Io.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/Io.meta", "repo_id": "ET", "token_count": 69 }
188
fileFormatVersion: 2 guid: dfddead832c655640ad1fb76eec6e838 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/Io/IOUtils.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Detour/Io/IOUtils.cs.meta", "repo_id": "ET", "token_count": 93 }
189
fileFormatVersion: 2 guid: bc3eafd30bb2057468b6ea063d9cab0d MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Recast/RcConstants.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Recast/RcConstants.cs.meta", "repo_id": "ET", "token_count": 96 }
190
fileFormatVersion: 2 guid: 144c657f2a9a9fe41ac27487aebe805c MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Recast/RcHeightfield.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Recast/RcHeightfield.cs.meta", "repo_id": "ET", "token_count": 93 }
191
fileFormatVersion: 2 guid: 9d91b765fd48cb047baf8f36204c7c0e MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Recast/RcPolyMeshRaycast.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/DotRecast/Recast/RcPolyMeshRaycast.cs.meta", "repo_id": "ET", "token_count": 95 }
192
using System; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Security; namespace ET { internal struct AsyncETVoidMethodBuilder { private IStateMachineWrap iStateMachineWrap; // 1. Static Create method. [DebuggerHidden] public static Async...
ET/Unity/Assets/Scripts/ThirdParty/ETTask/AsyncETVoidMethodBuilder.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/ETTask/AsyncETVoidMethodBuilder.cs", "repo_id": "ET", "token_count": 1102 }
193
fileFormatVersion: 2 guid: 96533933eb80840fea1fde1774562a3d folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/Kcp.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/Kcp.meta", "repo_id": "ET", "token_count": 68 }
194
fileFormatVersion: 2 guid: 4444b255d2b878f47895e6e0a19ba413 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/NativeCollection/UnsafeType/Map.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/NativeCollection/UnsafeType/Map.meta", "repo_id": "ET", "token_count": 70 }
195
fileFormatVersion: 2 guid: d94ea1ea18a27b34f8ccb7f5db9533bc MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Scripts/ThirdParty/NativeCollection/UnsafeType/SortedSet/Node.cs.meta/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/NativeCollection/UnsafeType/SortedSet/Node.cs.meta", "repo_id": "ET", "token_count": 96 }
196
/* Copyright (C) <2009-2011> <Thorben Linneweber, Jitter Physics> * * This software is provided 'as-is', without any express or implied * warranty. In no event will the authors be held liable for any damages * arising from the use of this software. * * Permission is granted to anyone to use this software for any...
ET/Unity/Assets/Scripts/ThirdParty/TrueSync/TSVector4.cs/0
{ "file_path": "ET/Unity/Assets/Scripts/ThirdParty/TrueSync/TSVector4.cs", "repo_id": "ET", "token_count": 12668 }
197
fileFormatVersion: 2 guid: 34e4bdcc77fe10844b9018f1b0ebde27 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
ET/Unity/Assets/Settings/IgnoreAsmdef/Hotfix/Server.meta/0
{ "file_path": "ET/Unity/Assets/Settings/IgnoreAsmdef/Hotfix/Server.meta", "repo_id": "ET", "token_count": 69 }
198
<linker> <assembly fullname="Unity.Core" preserve="all"/> <assembly fullname="Unity.Mono" preserve="all"/> <assembly fullname="Unity.ThirdParty" preserve="all"/> <assembly fullname="UnityEngine" preserve="all"/> <assembly fullname="System" preserve="all"/> <assembly fullname="CommandLine" preser...
ET/Unity/Assets/link.xml/0
{ "file_path": "ET/Unity/Assets/link.xml", "repo_id": "ET", "token_count": 313 }
199
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!30 &1 GraphicsSettings: m_ObjectHideFlags: 0 serializedVersion: 14 m_Deferred: m_Mode: 1 m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} m_DeferredReflections: m_Mode: 1 m_Shader: {fileID: 74, guid: 0000000000000000f00000000...
ET/Unity/ProjectSettings/GraphicsSettings.asset/0
{ "file_path": "ET/Unity/ProjectSettings/GraphicsSettings.asset", "repo_id": "ET", "token_count": 1066 }
200
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!5 &1 TimeManager: m_ObjectHideFlags: 0 Fixed Timestep: 0.02 Maximum Allowed Timestep: 0.33333334 m_TimeScale: 1
ET/Unity/ProjectSettings/TimeManager.asset/0
{ "file_path": "ET/Unity/ProjectSettings/TimeManager.asset", "repo_id": "ET", "token_count": 77 }
201
/* Copyright (c) 2015 Ki 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, publish, distribute, sublic...
ILSpy/ICSharpCode.BamlDecompiler/Baml/BamlNode.cs/0
{ "file_path": "ILSpy/ICSharpCode.BamlDecompiler/Baml/BamlNode.cs", "repo_id": "ILSpy", "token_count": 1895 }
202
/* Copyright (c) 2015 Ki 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, publish, distribute, sublic...
ILSpy/ICSharpCode.BamlDecompiler/XamlContext.cs/0
{ "file_path": "ILSpy/ICSharpCode.BamlDecompiler/XamlContext.cs", "repo_id": "ILSpy", "token_count": 2649 }
203
// 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.TestRunner/Program.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.TestRunner/Program.cs", "repo_id": "ILSpy", "token_count": 607 }
204
// 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.Tests/ProjectDecompiler/TargetFrameworkTests.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/ProjectDecompiler/TargetFrameworkTests.cs", "repo_id": "ILSpy", "token_count": 1441 }
205
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ICSharpCode.Decompiler.Tests.TestCases.Correctness { class DeconstructionTests { public static void Main() { new DeconstructionTests().Test(); } public struct MyInt { public...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Correctness/DeconstructionTests.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Correctness/DeconstructionTests.cs", "repo_id": "ILSpy", "token_count": 2579 }
206
open System let disposable() = { new IDisposable with member x.Dispose() = () } let getSeq() = seq { yield 1; } let getList() = [ 1 ] let getArray() = [| 1 |] [<EntryPoint>] let main argv = // nested using scopes? use disp1 = use disp2 = disposable() Console.WriteLine "Hello 1" disp...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/FSharpLoops.fs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/FSharpLoops.fs", "repo_id": "ILSpy", "token_count": 274 }
207
using System; public sealed class EvType : MulticastDelegate { } [Serializable] public class OwningClass { public event EvType EvName; }
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue1145.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue1145.cs", "repo_id": "ILSpy", "token_count": 47 }
208
// Metadata version: v4.0.30319 .assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4.. .ver 4:0:0:0 } .assembly ConsoleApp11 { .ver 1:0:0:0 } .module ConsoleApp11.exe // MVID: {B973FCD6-A9C4-48A9-8291-26DDC248E208} .imagebase 0x00400000 .file alignment 0x0000...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue1681.il/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue1681.il", "repo_id": "ILSpy", "token_count": 461 }
209
.assembly extern mscorlib { .publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4.. .ver 4:0:0:0 } .assembly Issue684 { .ver 1:0:0:0 } .module Issue684.exe .class public auto ansi abstract sealed Issue684 extends [mscorlib]System.Object { // Methods .method static privatescope ...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue684.il/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/ILPretty/Issue684.il", "repo_id": "ILSpy", "token_count": 1513 }
210
<?xml version="1.0" encoding="utf-8"?> <symbols> <files> <file id="1" name="ICSharpCode.Decompiler.Tests.TestCases.PdbGen\CustomPdbId.cs" language="C#" checksumAlgorithm="SHA256"><![CDATA[using System; namespace ICSharpCode.Decompiler.Tests.TestCases.PdbGen; public class CustomPdbId { public static void Main(s...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/PdbGen/CustomPdbId.xml/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/PdbGen/CustomPdbId.xml", "repo_id": "ILSpy", "token_count": 181 }
211
#pragma warning disable format // 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 u...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/CS73_StackAllocInitializers.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/CS73_StackAllocInitializers.cs", "repo_id": "ILSpy", "token_count": 3094 }
212
using System; namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty { internal class DynamicTests { private class Base { public Base(object baseObj) { } } private class Derived : Base { public Derived(dynamic d) : base((object)d) { } } private struct MyValueType { priva...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/DynamicTests.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/DynamicTests.cs", "repo_id": "ILSpy", "token_count": 4820 }
213
// 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, m...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/QueryExpressions.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/QueryExpressions.cs", "repo_id": "ILSpy", "token_count": 2416 }
214
// 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, m...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/UnsafeCode.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Pretty/UnsafeCode.cs", "repo_id": "ILSpy", "token_count": 5279 }
215
using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; [CompilerGenerated] internal sealed class _003CPrivateImplementationDetails_003E { [StructLayout(LayoutKind.Explicit, Pack = 1, Size = 12)] private struct __StaticArrayInitTypeSize_003D12 { } internal static readonly __Sta...
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Ugly/NoArrayInitializers.Expected.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/Ugly/NoArrayInitializers.Expected.cs", "repo_id": "ILSpy", "token_count": 348 }
216
Imports System Module Program Sub SelectOnString() Select Case Environment.CommandLine Case "123" Console.WriteLine("a") Case "444" Console.WriteLine("b") Case "222" Console.WriteLine("c") Case "11" Console.WriteLine("d") Case "dd" Console.WriteLine("e") Case "sss" Console....
ILSpy/ICSharpCode.Decompiler.Tests/TestCases/VBPretty/Select.vb/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/TestCases/VBPretty/Select.vb", "repo_id": "ILSpy", "token_count": 195 }
217
// Copyright (c) 2017 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.Tests/Util/BitSetTests.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler.Tests/Util/BitSetTests.cs", "repo_id": "ILSpy", "token_count": 1037 }
218
// 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/CSharp/OutputVisitor/GenericGrammarAmbiguityVisitor.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/OutputVisitor/GenericGrammarAmbiguityVisitor.cs", "repo_id": "ILSpy", "token_count": 1471 }
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/Resolver/TypeInference.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Resolver/TypeInference.cs", "repo_id": "ILSpy", "token_count": 15136 }
220
// // AssignmentExpression.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 // i...
ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/AssignmentExpression.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/AssignmentExpression.cs", "repo_id": "ILSpy", "token_count": 3272 }
221
// // LambdaExpression.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 th...
ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/LambdaExpression.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/LambdaExpression.cs", "repo_id": "ILSpy", "token_count": 980 }
222
// 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/ThrowExpression.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Expressions/ThrowExpression.cs", "repo_id": "ILSpy", "token_count": 695 }
223
// // PreProcessorDirective.cs // // Author: // Mike Krüger <mkrueger@xamarin.com> // // Copyright (c) 2011 Xamarin Inc. // // 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 with...
ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/GeneralScope/PreProcessorDirective.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/GeneralScope/PreProcessorDirective.cs", "repo_id": "ILSpy", "token_count": 1776 }
224
// // UncheckedStatement.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 // i...
ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Statements/UncheckedStatement.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/Statements/UncheckedStatement.cs", "repo_id": "ILSpy", "token_count": 754 }
225
// // EnumMemberDeclaration.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/TypeMembers/EnumMemberDeclaration.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Syntax/TypeMembers/EnumMemberDeclaration.cs", "repo_id": "ILSpy", "token_count": 779 }
226
// 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/CSharp/Transforms/ContextTrackingVisitor.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Transforms/ContextTrackingVisitor.cs", "repo_id": "ILSpy", "token_count": 1241 }
227
// 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/CSharp/Transforms/ReplaceMethodCallsWithOperators.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/CSharp/Transforms/ReplaceMethodCallsWithOperators.cs", "repo_id": "ILSpy", "token_count": 7266 }
228
// 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/Disassembler/ReflectionDisassembler.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/Disassembler/ReflectionDisassembler.cs", "repo_id": "ILSpy", "token_count": 26329 }
229
<?xml version="1.0" encoding="utf-8"?> <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <TargetFramework>netstandard2.0</TargetFramework> <PackageId>ICSharpCode.Decompiler</PackageId> <PackageVersion>8.0.0.0-noversion</PackageVersion> <Title>ILSpy Decompiler Engine</Title> <Authors>ILSpy Contr...
ILSpy/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/ICSharpCode.Decompiler.csproj", "repo_id": "ILSpy", "token_count": 15098 }
230
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using ICSharpCode.Decompiler.TypeSystem; using ICSharpCode.Decompiler.Util; namespace ICSharpCode.Decompiler.IL.ControlFlow { /// <summary> /// C# switch statements are not necessarily compiled into IL switch instructions....
ILSpy/ICSharpCode.Decompiler/IL/ControlFlow/SwitchAnalysis.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/IL/ControlFlow/SwitchAnalysis.cs", "repo_id": "ILSpy", "token_count": 4557 }
231
#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/BlockContainer.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/IL/Instructions/BlockContainer.cs", "repo_id": "ILSpy", "token_count": 4793 }
232
// 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/IL/Instructions/InstructionCollection.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/IL/Instructions/InstructionCollection.cs", "repo_id": "ILSpy", "token_count": 4258 }
233
// Copyright (c) 2011-2016 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, /...
ILSpy/ICSharpCode.Decompiler/IL/Transforms/DelegateConstruction.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/IL/Transforms/DelegateConstruction.cs", "repo_id": "ILSpy", "token_count": 3979 }
234
// 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/IntroduceNativeIntTypeOnLocals.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/IL/Transforms/IntroduceNativeIntTypeOnLocals.cs", "repo_id": "ILSpy", "token_count": 1274 }
235
// Copyright (c) 2017 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/StatementTransform.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/IL/Transforms/StatementTransform.cs", "repo_id": "ILSpy", "token_count": 1893 }
236
// 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/Metadata/DotNetCorePathFinder.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/Metadata/DotNetCorePathFinder.cs", "repo_id": "ILSpy", "token_count": 3933 }
237
// 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/Output/IAmbience.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/Output/IAmbience.cs", "repo_id": "ILSpy", "token_count": 1584 }
238
// 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/Conversion.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/Semantics/Conversion.cs", "repo_id": "ILSpy", "token_count": 6216 }
239
// 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/DecompilerTypeSystem.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/DecompilerTypeSystem.cs", "repo_id": "ILSpy", "token_count": 4920 }
240
// 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/INamedElement.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/INamedElement.cs", "repo_id": "ILSpy", "token_count": 788 }
241
// 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/AttributeListBuilder.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/Implementation/AttributeListBuilder.cs", "repo_id": "ILSpy", "token_count": 5549 }
242
// Copyright (c) 2019 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/TypeSystem/Implementation/LocalFunctionMethod.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/Implementation/LocalFunctionMethod.cs", "repo_id": "ILSpy", "token_count": 2147 }
243
// 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/Implementation/SpecializedField.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/Implementation/SpecializedField.cs", "repo_id": "ILSpy", "token_count": 760 }
244
// 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/TypeSystem/TypeSystemExtensions.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/TypeSystem/TypeSystemExtensions.cs", "repo_id": "ILSpy", "token_count": 8597 }
245
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #nullable enable using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Runtime.CompilerServices; namespace System { /// <summary>Represent a type can be use...
ILSpy/ICSharpCode.Decompiler/Util/Index.cs/0
{ "file_path": "ILSpy/ICSharpCode.Decompiler/Util/Index.cs", "repo_id": "ILSpy", "token_count": 1834 }
246