├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe ├── NuGet.targets └── packages.config ├── CSharpSource ├── Binder │ ├── AliasAndExternAliasDirective.cs │ ├── AliasAndUsingDirective.cs │ ├── Binder.OverflowChecks.cs │ ├── Binder.QueryTranslationState.cs │ ├── Binder.QueryUnboundLambdaState.cs │ ├── Binder.RangeVariableMap.cs │ ├── Binder.WithQueryLambdaParametersBinder.cs │ ├── Binder.cs │ ├── BinderFactory.BinderFactoryVisitor.cs │ ├── BinderFactory.NodeUsage.cs │ ├── BinderFactory.cs │ ├── BinderFlags.cs │ ├── BinderFlagsExtensions.cs │ ├── Binder_AnonymousTypes.cs │ ├── Binder_Attributes.cs │ ├── Binder_Await.cs │ ├── Binder_Constraints.cs │ ├── Binder_Conversions.cs │ ├── Binder_Crefs.cs │ ├── Binder_Deconstruct.cs │ ├── Binder_Expressions.cs │ ├── Binder_Flags.cs │ ├── Binder_Initializers.cs │ ├── Binder_InterpolatedString.cs │ ├── Binder_Invocation.cs │ ├── Binder_Lambda.cs │ ├── Binder_Lookup.cs │ ├── Binder_NameConflicts.cs │ ├── Binder_Operators.cs │ ├── Binder_Patterns.cs │ ├── Binder_Query.cs │ ├── Binder_QueryErrors.cs │ ├── Binder_Statements.cs │ ├── Binder_Symbols.cs │ ├── Binder_Unsafe.cs │ ├── Binder_XmlNameAttribute.cs │ ├── BlockBinder.cs │ ├── BuckStopsHereBinder.cs │ ├── CatchClauseBinder.cs │ ├── ConstantFieldsInProgress.cs │ ├── ConstantFieldsInProgressBinder.cs │ ├── ContextualAttributeBinder.cs │ ├── EarlyWellKnownAttributeBinder.cs │ ├── EmbeddedStatementBinder.cs │ ├── ExecutableCodeBinder.cs │ ├── ExpressionListVariableBinder.cs │ ├── ExpressionVariableBinder.cs │ ├── ExpressionVariableFinder.cs │ ├── ExtensionMethodScope.cs │ ├── FixedStatementBinder.cs │ ├── ForEachEnumeratorInfo.cs │ ├── ForEachLoopBinder.cs │ ├── ForLoopBinder.cs │ ├── HostObjectModeBinder.cs │ ├── ImplicitlyTypedFieldBinder.cs │ ├── ImportChain.cs │ ├── Imports.cs │ ├── InContainerBinder.cs │ ├── InMethodBinder.cs │ ├── LocalBinderFactory.cs │ ├── LocalInProgressBinder.cs │ ├── LocalScopeBinder.cs │ ├── LockBinder.cs │ ├── LockOrUsingBinder.cs │ ├── LookupOptions.cs │ ├── LookupResult.cs │ ├── LookupResultKind.cs │ ├── LookupSymbolsInfo.cs │ ├── LoopBinderContext.cs │ ├── MethodGroupResolution.cs │ ├── NameofBinder.cs │ ├── NamespaceOrTypeAndUsingDirective.cs │ ├── PatternSwitchBinder.cs │ ├── ScriptLocalScopeBinder.cs │ ├── Semantics │ │ ├── AccessCheck.cs │ │ ├── BestTypeInferrer.cs │ │ ├── Conversions │ │ │ ├── BestIndex.cs │ │ │ ├── Conversion.cs │ │ │ ├── ConversionEasyOut.cs │ │ │ ├── ConversionKind.cs │ │ │ ├── ConversionKindExtensions.cs │ │ │ ├── Conversions.cs │ │ │ ├── ConversionsBase.cs │ │ │ ├── LambdaConversionResult.cs │ │ │ ├── TypeConversions.cs │ │ │ ├── UserDefinedConversionAnalysis.cs │ │ │ ├── UserDefinedConversionResult.cs │ │ │ ├── UserDefinedConversions.cs │ │ │ ├── UserDefinedExplicitConversions.cs │ │ │ └── UserDefinedImplicitConversions.cs │ │ ├── Operators │ │ │ ├── BinaryOperatorAnalysisResult.cs │ │ │ ├── BinaryOperatorEasyOut.cs │ │ │ ├── BinaryOperatorOverloadResolution.cs │ │ │ ├── BinaryOperatorOverloadResolutionResult.cs │ │ │ ├── BinaryOperatorSignature.cs │ │ │ ├── OperatorAnalysisResultKind.cs │ │ │ ├── OperatorFacts.cs │ │ │ ├── OperatorKind.cs │ │ │ ├── OperatorKindExtensions.cs │ │ │ ├── UnaryOperatorAnalysisResult.cs │ │ │ ├── UnaryOperatorEasyOut.cs │ │ │ ├── UnaryOperatorOverloadResolution.cs │ │ │ ├── UnaryOperatorOverloadResolutionResult.cs │ │ │ └── UnaryOperatorSignature.cs │ │ ├── OverloadResolution │ │ │ ├── AnalyzedArguments.cs │ │ │ ├── ArgumentAnalysisResult.cs │ │ │ ├── ArgumentAnalysisResultKind.cs │ │ │ ├── MemberAnalysisResult.cs │ │ │ ├── MemberResolutionKind.cs │ │ │ ├── MemberResolutionResult.cs │ │ │ ├── MethodGroup.cs │ │ │ ├── MethodTypeInference.cs │ │ │ ├── OverloadResolution.cs │ │ │ ├── OverloadResolutionResult.cs │ │ │ └── OverloadResolution_ArgsToParameters.cs │ │ └── SemanticFacts.cs │ ├── SimpleLocalScopeBinder.cs │ ├── SingleLookupResult.cs │ ├── SubsumptionDiagnosticBuilder.cs │ ├── SwitchBinder.cs │ ├── TypeofBinder.cs │ ├── UsingStatementBinder.cs │ ├── WhileBinder.cs │ ├── WithClassTypeParametersBinder.cs │ ├── WithCrefTypeParametersBinder.cs │ ├── WithLambdaParametersBinder.cs │ ├── WithMethodTypeParametersBinder.cs │ ├── WithParametersBinder.cs │ └── WithTypeParametersBinder.cs ├── BoundTree │ ├── BoundDiscardExpression.cs │ ├── BoundExpression.cs │ ├── BoundExpressionExtensions.cs │ ├── BoundMethodGroup.cs │ ├── BoundMethodGroupFlags.cs │ ├── BoundNode.cs │ ├── BoundNodeExtensions.cs │ ├── BoundNodes.xml │ ├── BoundObjectCreationExpression.cs │ ├── BoundQueryClause.cs │ ├── BoundSequencePoint.cs │ ├── BoundStatementExtensions.cs │ ├── BoundTreeRewriter.cs │ ├── BoundTreeVisitors.cs │ ├── BoundTreeWalker.cs │ ├── Constructors.cs │ ├── DecisionTree.cs │ ├── DecisionTreeBuilder.cs │ ├── Expression.cs │ ├── Formatting.cs │ ├── GenerateNodes.bat │ ├── NoOpStatementFlavor.cs │ ├── OutDeconstructVarPendingInference.cs │ ├── PseudoVariableExpressions.cs │ ├── Statement.cs │ ├── UnboundLambda.cs │ └── VariablePendingInference.cs ├── CSharpAnalyzerDriver │ └── CSharpDeclarationComputer.cs ├── CSharpCodeAnalysis.csproj ├── CSharpCompilationOptions.cs ├── CSharpExtensions.cs ├── CSharpFileSystemExtensions.cs ├── CSharpParseOptions.cs ├── CSharpResources.Designer.cs ├── CSharpResources.resx ├── CodeGen │ ├── CodeGenerator.cs │ ├── EmitAddress.cs │ ├── EmitArrayInitializer.cs │ ├── EmitConversion.cs │ ├── EmitExpression.cs │ ├── EmitOperators.cs │ ├── EmitStatement.cs │ └── Optimizer.cs ├── CommandLine │ ├── CSharpCommandLineArguments.cs │ ├── CSharpCommandLineParser.cs │ ├── CSharpCompiler.cs │ └── CommandLineDiagnosticFormatter.cs ├── Compilation │ ├── AttributeSemanticModel.cs │ ├── AwaitExpressionInfo.cs │ ├── BuiltInOperators.cs │ ├── CSharpCompilation.cs │ ├── CSharpCompilationReference.cs │ ├── CSharpCompilerDiagnosticAnalyzer.cs │ ├── CSharpDiagnosticFilter.cs │ ├── CSharpScriptCompilationInfo.cs │ ├── CSharpSemanticModel.cs │ ├── ForEachStatementInfo.cs │ ├── InitializerSemanticModel.cs │ ├── LexicalOrderSymbolComparer.cs │ ├── MemberSemanticModel.NodeMapBuilder.cs │ ├── MemberSemanticModel.SpeculativeMemberSemanticModel.cs │ ├── MemberSemanticModel.cs │ ├── MethodBodySemanticModel.cs │ ├── QueryClauseInfo.cs │ ├── SpeculativeSyntaxTreeSemanticModel.cs │ ├── SymbolInfoFactory.cs │ ├── SyntaxAndDeclarationManager.LazyState.cs │ ├── SyntaxAndDeclarationManager.cs │ ├── SyntaxTreeSemanticModel.cs │ ├── SyntaxTreeSemanticModel_RegionAnalysisContext.cs │ └── TypeInfo.cs ├── Compiler │ ├── AnonymousTypeMethodBodySynthesizer.cs │ ├── ClsComplianceChecker.cs │ ├── Compiler.cs │ ├── DocumentationCommentCompiler.DocumentationCommentWalker.cs │ ├── DocumentationCommentCompiler.IncludeElementExpander.cs │ ├── DocumentationCommentCompiler.cs │ ├── EntryPointCandidateFinder.cs │ ├── MethodBodySynthesizer.Lowered.cs │ ├── MethodBodySynthesizer.cs │ ├── MethodCompiler.cs │ ├── ModuleCompilationState.cs │ ├── SynthesizedMetadataCompiler.cs │ ├── TypeCompilationState.cs │ └── UnprocessedDocumentationCommentFinder.cs ├── Declarations │ ├── Declaration.cs │ ├── DeclarationKind.cs │ ├── DeclarationModifiers.cs │ ├── DeclarationTable.Cache.cs │ ├── DeclarationTable.cs │ ├── DeclarationTreeBuilder.cs │ ├── MergedNamespaceDeclaration.cs │ ├── MergedNamespaceOrTypeDeclaration.cs │ ├── MergedTypeDeclaration.cs │ ├── RootSingleNamespaceDeclaration.cs │ ├── SingleNamespaceDeclaration.cs │ ├── SingleNamespaceDeclarationEx.cs │ ├── SingleNamespaceOrTypeDeclaration.cs │ └── SingleTypeDeclaration.cs ├── DocumentationComments │ ├── DocumentationCommentIDVisitor.PartVisitor.cs │ ├── DocumentationCommentIDVisitor.cs │ ├── PEDocumentationCommentUtils.cs │ └── SourceDocumentationCommentUtils.cs ├── Emitter │ ├── EditAndContinue │ │ ├── CSharpDefinitionMap.cs │ │ ├── CSharpLambdaSyntaxFacts.cs │ │ ├── CSharpSymbolMatcher.cs │ │ ├── EmitHelpers.cs │ │ └── PEDeltaAssemblyBuilder.cs │ ├── Model │ │ ├── ArrayTypeSymbolAdapter.cs │ │ ├── AssemblyReference.cs │ │ ├── AttributeDataAdapter.cs │ │ ├── CustomModifierAdapter.cs │ │ ├── DynamicTypeSymbolAdapter.cs │ │ ├── EventSymbolAdapter.cs │ │ ├── ExpandedVarargsMethodReference.cs │ │ ├── FieldSymbolAdapter.cs │ │ ├── GenericMethodInstanceReference.cs │ │ ├── GenericNamespaceTypeInstanceReference.cs │ │ ├── GenericNestedTypeInstanceReference.cs │ │ ├── GenericTypeInstanceReference.cs │ │ ├── MethodReference.cs │ │ ├── MethodSymbolAdapter.cs │ │ ├── ModuleReference.cs │ │ ├── NamedTypeReference.cs │ │ ├── NamedTypeSymbolAdapter.cs │ │ ├── NamespaceSymbolAdapter.cs │ │ ├── PEAssemblyBuilder.cs │ │ ├── PEModuleBuilder.cs │ │ ├── PENetModuleBuilder.cs │ │ ├── ParameterSymbolAdapter.cs │ │ ├── ParameterTypeInformation.cs │ │ ├── PointerTypeSymbolAdapter.cs │ │ ├── PropertySymbolAdapter.cs │ │ ├── SpecializedFieldReference.cs │ │ ├── SpecializedGenericMethodInstanceReference.cs │ │ ├── SpecializedGenericNestedTypeInstanceReference.cs │ │ ├── SpecializedMethodReference.cs │ │ ├── SpecializedNestedTypeReference.cs │ │ ├── SymbolAdapter.cs │ │ ├── SynthesizedPrivateImplementationDetailsStaticConstructor.cs │ │ ├── TypeMemberReference.cs │ │ └── TypeParameterSymbolAdapter.cs │ └── NoPia │ │ ├── EmbeddedEvent.cs │ │ ├── EmbeddedField.cs │ │ ├── EmbeddedMethod.cs │ │ ├── EmbeddedParameter.cs │ │ ├── EmbeddedProperty.cs │ │ ├── EmbeddedType.cs │ │ ├── EmbeddedTypeParameter.cs │ │ └── EmbeddedTypesManager.cs ├── Errors │ ├── CSDiagnostic.cs │ ├── CSDiagnosticInfo.cs │ ├── CSharpDiagnosticFormatter.cs │ ├── DiagnosticBagExtensions.cs │ ├── DiagnosticInfoWithSymbols.cs │ ├── ErrorCode.cs │ ├── ErrorFacts.cs │ ├── LazyObsoleteDiagnosticInfo.cs │ ├── MessageID.cs │ ├── MessageProvider.cs │ ├── SyntaxDiagnosticInfo.cs │ ├── XmlParseErrorCode.cs │ └── XmlSyntaxDiagnosticInfo.cs ├── FlowAnalysis │ ├── AbstractFlowPass.AbstractLocalState.cs │ ├── AbstractFlowPass.cs │ ├── AbstractRegionControlFlowPass.cs │ ├── AbstractRegionDataFlowPass.cs │ ├── AlwaysAssignedWalker.cs │ ├── CSharpDataFlowAnalysis.cs │ ├── ControlFlowAnalysis.cs │ ├── ControlFlowPass.cs │ ├── DataFlowPass.LocalFunctions.cs │ ├── DataFlowPass.VariableIdentifier.cs │ ├── DataFlowPass.cs │ ├── DataFlowsInWalker.cs │ ├── DataFlowsOutWalker.cs │ ├── EmptyStructTypeCache.cs │ ├── EntryPointsWalker.cs │ ├── ExitPointsWalker.cs │ ├── Flow Analysis Design.docx │ ├── FlowAnalysisPass.cs │ ├── PreciseAbstractFlowPass.AbstractLocalState.cs │ ├── PreciseAbstractFlowPass.cs │ ├── PreciseAbstractFlowPass_Switch.cs │ ├── ReadWriteWalker.cs │ ├── RegionAnalysisContext.cs │ ├── RegionReachableWalker.cs │ ├── UnassignedAddressTakenVariablesWalker.cs │ ├── UnassignedVariablesWalker.cs │ └── VariablesDeclaredWalker.cs ├── Generated │ ├── BoundNodes.xml.Generated.cs │ ├── ErrorFacts.Generated.cs │ ├── GeneratedInternalsVisibleTo.cs │ ├── Syntax.xml.Internal.Generated.cs │ ├── Syntax.xml.Main.Generated.cs │ └── Syntax.xml.Syntax.Generated.cs ├── GlobalSuppressions.cs ├── LanguageVersion.cs ├── Lowering │ ├── AsyncRewriter │ │ ├── AsyncConstructor.cs │ │ ├── AsyncExceptionHandlerRewriter.cs │ │ ├── AsyncMethodBuilderMemberCollection.cs │ │ ├── AsyncMethodToStateMachineRewriter.cs │ │ ├── AsyncRewriter.cs │ │ ├── AsyncStateMachine.cs │ │ └── AwaitExpressionSpiller.cs │ ├── DiagnosticsPass_ExpressionTrees.cs │ ├── DiagnosticsPass_Warnings.cs │ ├── Extensions.cs │ ├── InitializerRewriter.cs │ ├── Instrumentation │ │ ├── CompoundInstrumenter.cs │ │ ├── DebugInfoInjector.cs │ │ ├── DebugInfoInjector_SequencePoints.cs │ │ ├── DynamicAnalysisInjector.cs │ │ └── Instrumenter.cs │ ├── IteratorRewriter │ │ ├── IteratorConstructor.cs │ │ ├── IteratorFinallyMethodSymbol.cs │ │ ├── IteratorMethodToStateMachineRewriter.IteratorFinallyFrame.cs │ │ ├── IteratorMethodToStateMachineRewriter.YieldsInTryAnalysis.cs │ │ ├── IteratorMethodToStateMachineRewriter.cs │ │ ├── IteratorRewriter.cs │ │ └── IteratorStateMachine.cs │ ├── LambdaRewriter │ │ ├── ClosureKind.cs │ │ ├── ExpressionLambdaRewriter.cs │ │ ├── LambdaCapturedVariable.cs │ │ ├── LambdaFrame.cs │ │ ├── LambdaFrameConstructor.cs │ │ ├── LambdaRewriter.Analysis.cs │ │ ├── LambdaRewriter.LocalFunctionReferenceRewriter.cs │ │ ├── LambdaRewriter.cs │ │ ├── PartiallyLoweredLocalFunctionReference.cs │ │ └── SynthesizedLambdaMethod.cs │ ├── LocalRewriter │ │ ├── DynamicSiteContainer.cs │ │ ├── LocalRewriter.cs │ │ ├── LocalRewriter_AnonymousObjectCreation.cs │ │ ├── LocalRewriter_AsOperator.cs │ │ ├── LocalRewriter_AssignmentOperator.cs │ │ ├── LocalRewriter_Await.cs │ │ ├── LocalRewriter_BinaryOperator.cs │ │ ├── LocalRewriter_Block.cs │ │ ├── LocalRewriter_BreakStatement.cs │ │ ├── LocalRewriter_Call.cs │ │ ├── LocalRewriter_CompoundAssignmentOperator.cs │ │ ├── LocalRewriter_ConditionalAccess.cs │ │ ├── LocalRewriter_ConditionalOperator.cs │ │ ├── LocalRewriter_ContinueStatement.cs │ │ ├── LocalRewriter_Conversion.cs │ │ ├── LocalRewriter_DeconstructionAssignmentOperator.cs │ │ ├── LocalRewriter_DelegateCreationExpression.cs │ │ ├── LocalRewriter_DoStatement.cs │ │ ├── LocalRewriter_Event.cs │ │ ├── LocalRewriter_ExpressionStatement.cs │ │ ├── LocalRewriter_Field.cs │ │ ├── LocalRewriter_FixedStatement.cs │ │ ├── LocalRewriter_ForEachStatement.cs │ │ ├── LocalRewriter_ForStatement.cs │ │ ├── LocalRewriter_GotoStatement.cs │ │ ├── LocalRewriter_HostObjectMemberReference.cs │ │ ├── LocalRewriter_IfStatement.cs │ │ ├── LocalRewriter_IndexerAccess.cs │ │ ├── LocalRewriter_IsOperator.cs │ │ ├── LocalRewriter_LabeledStatement.cs │ │ ├── LocalRewriter_Literal.cs │ │ ├── LocalRewriter_LocalDeclaration.cs │ │ ├── LocalRewriter_LockStatement.cs │ │ ├── LocalRewriter_MultipleLocalDeclarations.cs │ │ ├── LocalRewriter_NullCoalescingOperator.cs │ │ ├── LocalRewriter_ObjectCreationExpression.cs │ │ ├── LocalRewriter_ObjectOrCollectionInitializerExpression.cs │ │ ├── LocalRewriter_PatternSwitchStatement.cs │ │ ├── LocalRewriter_Patterns.cs │ │ ├── LocalRewriter_PointerElementAccess.cs │ │ ├── LocalRewriter_PreviousSubmissionReference.cs │ │ ├── LocalRewriter_PropertyAccess.cs │ │ ├── LocalRewriter_Query.cs │ │ ├── LocalRewriter_ReturnStatement.cs │ │ ├── LocalRewriter_StackAlloc.cs │ │ ├── LocalRewriter_StringConcat.cs │ │ ├── LocalRewriter_StringInterpolation.cs │ │ ├── LocalRewriter_SwitchStatement.cs │ │ ├── LocalRewriter_ThrowStatement.cs │ │ ├── LocalRewriter_TryStatement.cs │ │ ├── LocalRewriter_TupleCreationExpression.cs │ │ ├── LocalRewriter_UnaryOperator.cs │ │ ├── LocalRewriter_UsingStatement.cs │ │ ├── LocalRewriter_WhileStatement.cs │ │ ├── LocalRewriter_Yield.cs │ │ ├── LoweredDynamicOperation.cs │ │ └── LoweredDynamicOperationFactory.cs │ ├── MethodToClassRewriter.cs │ ├── StateMachineRewriter │ │ ├── CapturedSymbol.cs │ │ ├── IteratorAndAsyncCaptureWalker.cs │ │ ├── MethodToStateMachineRewriter.cs │ │ ├── StateMachineFieldSymbol.cs │ │ ├── StateMachineHoistedLocalSymbol.cs │ │ ├── StateMachineRewriter.cs │ │ ├── StateMachineStates.cs │ │ ├── StateMachineTypeSymbol.cs │ │ ├── SynthesizedStateMachineMethod.cs │ │ └── SynthesizedStateMachineProperty.cs │ ├── SynthesizedMethodBaseSymbol.cs │ ├── SynthesizedSubmissionFields.cs │ ├── SyntheticBoundNodeFactory.cs │ ├── TempHelpers.cs │ └── UnmatchedGotoFinder.cs ├── Parser │ ├── AbstractLexer.cs │ ├── BlendedNode.cs │ ├── Blender.Cursor.cs │ ├── Blender.Reader.cs │ ├── Blender.cs │ ├── CharacterInfo.cs │ ├── DirectiveParser.cs │ ├── Directives.cs │ ├── DocumentationCommentParser.cs │ ├── DocumentationCommentXmlTokens.cs │ ├── LanguageParser.cs │ ├── LanguageParser_InterpolatedString.cs │ ├── LanguageParser_Patterns.cs │ ├── Lexer.cs │ ├── LexerCache.cs │ ├── Lexer_StringLiteral.cs │ ├── QuickScanner.cs │ ├── SlidingTextWindow.cs │ ├── SyntaxFactoryContext.cs │ ├── SyntaxParser.ResetPoint.cs │ └── SyntaxParser.cs ├── Properties │ └── AssemblyInfo.cs ├── PublicAPI.Shipped.txt ├── PublicAPI.Unshipped.txt ├── SymbolDisplay │ ├── ObjectDisplay.cs │ ├── SymbolDisplay.cs │ ├── SymbolDisplayVisitor.Members.cs │ ├── SymbolDisplayVisitor.Types.cs │ ├── SymbolDisplayVisitor.cs │ ├── SymbolDisplayVisitor_Constants.cs │ └── SymbolDisplayVisitor_Minimal.cs ├── Symbols │ ├── AbstractTypeMap.cs │ ├── AbstractTypeParameterMap.cs │ ├── AccessibilityExtensions.cs │ ├── AliasSymbol.cs │ ├── AnonymousTypes │ │ ├── AnonymousTypeDescriptor.cs │ │ ├── AnonymousTypeField.cs │ │ ├── AnonymousTypeManager.SymbolCollection.cs │ │ ├── AnonymousTypeManager.Templates.cs │ │ ├── AnonymousTypeManager.cs │ │ ├── PublicSymbols │ │ │ └── AnonymousType.TypePublicSymbol.cs │ │ └── SynthesizedSymbols │ │ │ ├── AnonymousType.ConstructorSymbol.cs │ │ │ ├── AnonymousType.EqualsMethodSymbol.cs │ │ │ ├── AnonymousType.FieldSymbol.cs │ │ │ ├── AnonymousType.GetHashCodeMethodSymbol.cs │ │ │ ├── AnonymousType.PropertyAccessorSymbol.cs │ │ │ ├── AnonymousType.PropertySymbol.cs │ │ │ ├── AnonymousType.SynthesizedMethodBase.cs │ │ │ ├── AnonymousType.TemplateSymbol.cs │ │ │ ├── AnonymousType.ToStringMethodSymbol.cs │ │ │ └── AnonymousType.TypeParameterSymbol.cs │ ├── ArrayTypeSymbol.cs │ ├── AssemblySymbol.cs │ ├── Attributes │ │ ├── AttributeData.cs │ │ ├── PEAttributeData.cs │ │ ├── RetargetingAttributeData.cs │ │ ├── SourceAttributeData.cs │ │ └── WellKnownAttributeData │ │ │ ├── ParameterEarlyWellKnownAttributeData.cs │ │ │ ├── PropertyEarlyWellKnownAttributeData.cs │ │ │ └── TypeWellKnownAttributeData.cs │ ├── BaseTypeAnalysis.cs │ ├── Compilation_WellKnownMembers.cs │ ├── CompletionPart.cs │ ├── ConstantValueUtils.cs │ ├── ConstraintsHelper.cs │ ├── ConstructedMethodSymbol.cs │ ├── ConstructedNamedTypeSymbol.cs │ ├── ConversionSignatureComparer.cs │ ├── CustomModifier.cs │ ├── DiscardSymbol.cs │ ├── DynamicTypeEraser.cs │ ├── DynamicTypeSymbol.cs │ ├── EnumConversions.cs │ ├── ErrorMethodSymbol.cs │ ├── ErrorPropertySymbol.cs │ ├── ErrorTypeSymbol.ErrorTypeParameterSymbol.cs │ ├── ErrorTypeSymbol.cs │ ├── EventSymbol.cs │ ├── EventSymbolExtensions.cs │ ├── ExtendedErrorTypeSymbol.cs │ ├── FieldOrPropertyInitializer.cs │ ├── FieldSymbol.cs │ ├── LabelSymbol.cs │ ├── LexicalSortKey.cs │ ├── LocalDeclarationKind.cs │ ├── LocalSymbol.cs │ ├── MemberSignatureComparer.cs │ ├── MemberSymbolExtensions.cs │ ├── MergedNamespaceSymbol.cs │ ├── Metadata │ │ └── PE │ │ │ ├── DynamicTypeDecoder.cs │ │ │ ├── MemberRefMetadataDecoder.cs │ │ │ ├── MetadataDecoder.cs │ │ │ ├── PEAssemblySymbol.cs │ │ │ ├── PEEventSymbol.cs │ │ │ ├── PEFieldSymbol.cs │ │ │ ├── PEGlobalNamespaceSymbol.cs │ │ │ ├── PEMethodSymbol.cs │ │ │ ├── PEModuleSymbol.cs │ │ │ ├── PENamedTypeSymbol.cs │ │ │ ├── PENamespaceSymbol.cs │ │ │ ├── PENestedNamespaceSymbol.cs │ │ │ ├── PEParameterSymbol.cs │ │ │ ├── PEPropertySymbol.cs │ │ │ ├── PETypeParameterSymbol.cs │ │ │ ├── SymbolFactory.cs │ │ │ └── TupleTypeDecoder.cs │ ├── MetadataOrSourceAssemblySymbol.cs │ ├── MethodSymbol.cs │ ├── MethodSymbolExtensions.cs │ ├── MissingAssemblySymbol.cs │ ├── MissingCorLibrarySymbol.cs │ ├── MissingMetadataTypeSymbol.cs │ ├── MissingModuleSymbol.cs │ ├── MissingNamespaceSymbol.cs │ ├── ModuleSymbol.cs │ ├── MutableTypeMap.cs │ ├── NamedTypeSymbol.cs │ ├── NamespaceExtent.cs │ ├── NamespaceOrTypeSymbol.cs │ ├── NamespaceSymbol.cs │ ├── NoPiaAmbiguousCanonicalTypeSymbol.cs │ ├── NoPiaIllegalGenericInstantiationSymbol.cs │ ├── NoPiaMissingCanonicalTypeSymbol.cs │ ├── NonMissingAssemblySymbol.cs │ ├── NonMissingModuleSymbol.cs │ ├── ObsoleteAttributeHelpers.cs │ ├── OverriddenOrHiddenMembersHelpers.cs │ ├── OverriddenOrHiddenMembersResult.cs │ ├── ParameterSignature.cs │ ├── ParameterSymbol.cs │ ├── PointerTypeSymbol.cs │ ├── PreprocessingSymbol.cs │ ├── PropertyOrEventSymbolExtensions.cs │ ├── PropertySymbol.cs │ ├── PropertySymbolExtensions.cs │ ├── PublicSymbolTable.cd │ ├── RangeVariableSymbol.cs │ ├── ReducedExtensionMethodSymbol.cs │ ├── RefKindExtensions.cs │ ├── ReferenceManager.cs │ ├── Retargeting │ │ ├── RetargetingAssemblySymbol.cs │ │ ├── RetargetingEventSymbol.cs │ │ ├── RetargetingFieldSymbol.cs │ │ ├── RetargetingMethodSymbol.cs │ │ ├── RetargetingModuleSymbol.cs │ │ ├── RetargetingNamedTypeSymbol.cs │ │ ├── RetargetingNamespaceSymbol.cs │ │ ├── RetargetingParameterSymbol.cs │ │ ├── RetargetingPropertySymbol.cs │ │ ├── RetargetingSymbolTranslator.cs │ │ └── RetargetingTypeParameterSymbol.cs │ ├── SignatureOnlyMethodSymbol.cs │ ├── SignatureOnlyParameterSymbol.cs │ ├── SignatureOnlyPropertySymbol.cs │ ├── Source │ │ ├── AttributeLocation.cs │ │ ├── ConstantEvaluationHelpers.cs │ │ ├── CrefTypeParameterSymbol.cs │ │ ├── CustomModifierUtils.cs │ │ ├── ExplicitInterfaceHelpers.cs │ │ ├── GlobalExpressionVariable.cs │ │ ├── IAttributeTargetSymbol.cs │ │ ├── ImplicitNamedTypeSymbol.cs │ │ ├── IndexedTypeParameterSymbol.cs │ │ ├── LambdaSymbol.cs │ │ ├── LocalFunctionSymbol.cs │ │ ├── ModifierUtils.cs │ │ ├── ParameterHelpers.cs │ │ ├── SourceAssemblySymbol.cs │ │ ├── SourceClonedParameterSymbol.cs │ │ ├── SourceComplexParameterSymbol.cs │ │ ├── SourceConstructorSymbol.cs │ │ ├── SourceCustomEventAccessorSymbol.cs │ │ ├── SourceCustomEventSymbol.cs │ │ ├── SourceDelegateMethodSymbol.cs │ │ ├── SourceDestructorSymbol.cs │ │ ├── SourceEnumConstantSymbol.cs │ │ ├── SourceEventAccessorSymbol.cs │ │ ├── SourceEventFieldSymbol.cs │ │ ├── SourceEventSymbol.cs │ │ ├── SourceFieldLikeEventSymbol.cs │ │ ├── SourceFieldSymbol.cs │ │ ├── SourceFixedFieldSymbol.cs │ │ ├── SourceLabelSymbol.cs │ │ ├── SourceLocalSymbol.cs │ │ ├── SourceMemberContainerSymbol.cs │ │ ├── SourceMemberContainerSymbol_ImplementationChecks.cs │ │ ├── SourceMemberFieldSymbol.cs │ │ ├── SourceMemberMethodSymbol.cs │ │ ├── SourceMethodSymbol.cs │ │ ├── SourceModuleSymbol.cs │ │ ├── SourceNamedTypeSymbol.cs │ │ ├── SourceNamedTypeSymbol_Bases.cs │ │ ├── SourceNamedTypeSymbol_Enum.cs │ │ ├── SourceNamespaceSymbol.cs │ │ ├── SourceNamespaceSymbol_Completion.cs │ │ ├── SourceParameterSymbol.cs │ │ ├── SourceParameterSymbolBase.cs │ │ ├── SourcePropertyAccessorSymbol.cs │ │ ├── SourcePropertySymbol.cs │ │ ├── SourceSimpleParameterSymbol.cs │ │ ├── SourceTypeParameterSymbol.cs │ │ ├── SourceUserDefinedConversionSymbol.cs │ │ ├── SourceUserDefinedOperatorSymbol.cs │ │ ├── SourceUserDefinedOperatorSymbolBase.cs │ │ ├── SynthesizedAttributeData.cs │ │ ├── ThisParameterSymbol.cs │ │ ├── TypeParameterBuilder.cs │ │ └── TypeParameterConstraintClause.cs │ ├── SpecialTypeExtensions.cs │ ├── SubstitutedEventSymbol.cs │ ├── SubstitutedFieldSymbol.cs │ ├── SubstitutedMethodSymbol.cs │ ├── SubstitutedNamedTypeSymbol.cs │ ├── SubstitutedParameterSymbol.cs │ ├── SubstitutedPropertySymbol.cs │ ├── SubstitutedTypeParameterSymbol.cs │ ├── Symbol.cs │ ├── SymbolCompletionState.cs │ ├── SymbolDistinguisher.cs │ ├── SymbolExtensions.cs │ ├── SymbolKindExtensions.cs │ ├── SymbolVisitor.cs │ ├── SymbolVisitor`1.cs │ ├── SymbolVisitor`2.cs │ ├── Symbol_Attributes.cs │ ├── Synthesized │ │ ├── GeneratedLabelSymbol.cs │ │ ├── GeneratedNameKind.cs │ │ ├── GeneratedNames.cs │ │ ├── SynthesizedAccessorValueParameterSymbol.cs │ │ ├── SynthesizedBackingFieldSymbol.cs │ │ ├── SynthesizedContainer.cs │ │ ├── SynthesizedDelegateSymbol.cs │ │ ├── SynthesizedEntryPointSymbol.cs │ │ ├── SynthesizedEnumValueFieldSymbol.cs │ │ ├── SynthesizedExplicitImplementationForwardingMethod.cs │ │ ├── SynthesizedFieldLikeEventAccessorSymbol.cs │ │ ├── SynthesizedFieldSymbol.cs │ │ ├── SynthesizedFieldSymbolBase.cs │ │ ├── SynthesizedGlobalMethodSymbol.cs │ │ ├── SynthesizedImplementationMethod.cs │ │ ├── SynthesizedInstanceConstructor.cs │ │ ├── SynthesizedInstanceMethodSymbol.cs │ │ ├── SynthesizedInteractiveInitializerMethod.cs │ │ ├── SynthesizedIntrinsicOperatorSymbol.cs │ │ ├── SynthesizedLambdaCacheFieldSymbol.cs │ │ ├── SynthesizedLocal.cs │ │ ├── SynthesizedParameterSymbol.cs │ │ ├── SynthesizedSealedPropertyAccessor.cs │ │ ├── SynthesizedStaticConstructor.cs │ │ ├── SynthesizedStringHashFunctionSymbol.cs │ │ ├── SynthesizedSubmissionConstructor.cs │ │ ├── SynthesizedSubstitutedTypeParameterSymbol.cs │ │ └── TypeSubstitutedLocalSymbol.cs │ ├── Tuples │ │ ├── TupleErrorFieldSymbol.cs │ │ ├── TupleEventSymbol.cs │ │ ├── TupleFieldSymbol.cs │ │ ├── TupleMethodSymbol.cs │ │ ├── TupleParameterSymbol.cs │ │ ├── TuplePropertySymbol.cs │ │ └── TupleTypeSymbol.cs │ ├── TypeMap.cs │ ├── TypeParameterBounds.cs │ ├── TypeParameterSymbol.cs │ ├── TypeParameterSymbolExtensions.cs │ ├── TypeSymbol.SymbolAndDiagnostics.cs │ ├── TypeSymbol.cs │ ├── TypeSymbolExtensions.cs │ ├── TypeUnification.cs │ ├── TypeWithModifiers.cs │ ├── TypedConstantExtensions.cs │ ├── UnboundGenericType.cs │ ├── UnsupportedMetadataTypeSymbol.cs │ ├── VarianceSafety.cs │ └── Wrapped │ │ ├── WrappedEventSymbol.cs │ │ ├── WrappedFieldSymbol.cs │ │ ├── WrappedMethodSymbol.cs │ │ ├── WrappedNamedTypeSymbol.cs │ │ ├── WrappedParameterSymbol.cs │ │ ├── WrappedPropertySymbol.cs │ │ └── WrappedTypeParameterSymbol.cs ├── Syntax │ ├── AliasedQualifiedNameSyntax.cs │ ├── AnonymousMethodExpressionSyntax.cs │ ├── ArrayRankSpecifierSyntax.cs │ ├── AttributeSyntax.cs │ ├── AttributeTargetSpecifierSyntax.cs │ ├── CSharpLineDirectiveMap.cs │ ├── CSharpPragmaWarningStateMap.cs │ ├── CSharpSyntaxNode.cs │ ├── CSharpSyntaxRewriter.cs │ ├── CSharpSyntaxTree.DebuggerSyntaxTree.cs │ ├── CSharpSyntaxTree.Dummy.cs │ ├── CSharpSyntaxTree.ParsedSyntaxTree.cs │ ├── CSharpSyntaxTree.cs │ ├── CSharpSyntaxVisitor.cs │ ├── CSharpSyntaxWalker.cs │ ├── CompilationUnitSyntax.cs │ ├── ConstructorDeclarationSyntax.cs │ ├── DeclarationStatementSyntax.cs │ ├── DelegateDeclarationSyntax.cs │ ├── DestructorDeclarationSyntax.cs │ ├── DirectiveTriviaSyntax.cs │ ├── ExpressionStatementSyntax.cs │ ├── GenericNameSyntax.cs │ ├── IdentifierNameSyntax.cs │ ├── IndexerDeclarationSyntax.cs │ ├── InternalSyntax │ │ ├── CSharpSyntaxNode.cs │ │ ├── CSharpSyntaxNodeCache.cs │ │ ├── CSharpSyntaxRewriter.cs │ │ ├── CSharpSyntaxVisitor.cs │ │ ├── DirectiveTriviaSyntax.cs │ │ ├── IdentifierNameSyntax.cs │ │ ├── StructuredTriviaSyntax.cs │ │ ├── SyntaxFactory.cs │ │ ├── SyntaxFirstTokenReplacer.cs │ │ ├── SyntaxLastTokenReplacer.cs │ │ ├── SyntaxToken.MissingTokenWithTrivia.cs │ │ ├── SyntaxToken.SyntaxIdentifier.cs │ │ ├── SyntaxToken.SyntaxIdentifierExtended.cs │ │ ├── SyntaxToken.SyntaxIdentifierWithTrailingTrivia.cs │ │ ├── SyntaxToken.SyntaxIdentifierWithTrivia.cs │ │ ├── SyntaxToken.SyntaxLiteral.cs │ │ ├── SyntaxToken.SyntaxLiteralWithTrivia.cs │ │ ├── SyntaxToken.SyntaxTokenWithTrivia.cs │ │ ├── SyntaxToken.cs │ │ ├── SyntaxTrivia.cs │ │ └── TypeSyntax.cs │ ├── LambdaUtilities.cs │ ├── LookupPosition.cs │ ├── MethodDeclarationSyntax.cs │ ├── NameSyntax.cs │ ├── NamespaceDeclarationSyntax.cs │ ├── NamespaceDeclarationSyntaxReference.cs │ ├── ParameterListSyntax.cs │ ├── ParameterSyntax.cs │ ├── PropertyDeclarationSyntax.cs │ ├── QualifiedNameSyntax.cs │ ├── SimpleNameSyntax.cs │ ├── SimpleSyntaxReference.cs │ ├── SkippedTokensTriviaSyntax.cs │ ├── StructuredTriviaSyntax.cs │ ├── Syntax.xml │ ├── SyntaxEquivalence.cs │ ├── SyntaxExtensions.cs │ ├── SyntaxFactory.cs │ ├── SyntaxFacts.cs │ ├── SyntaxKind.cs │ ├── SyntaxKindEqualityComparer.cs │ ├── SyntaxKindExtensions.cs │ ├── SyntaxKindFacts.cs │ ├── SyntaxNodeExtensions.cs │ ├── SyntaxNodeRemover.cs │ ├── SyntaxNormalizer.cs │ ├── SyntaxReplacer.cs │ ├── SyntaxTreeDiagnosticEnumerator.cs │ ├── TypeDeclarationSyntax.cs │ ├── TypeSyntax.cs │ └── XmlNameAttributeElementKind.cs ├── UseSiteDiagnosticsCheckEnforcer │ ├── BaseLine.txt │ └── Run.bat ├── Utilities │ ├── EnumExtensions.cs │ ├── FirstAmongEqualsSet.cs │ ├── FunctionExtensions.cs │ └── TypeSymbolExtensions.cs └── packages.config ├── CoreLib ├── Common │ └── PinnableBufferCache.cs ├── CoreLib.csproj ├── Impl │ ├── ArgIterator.cs │ ├── Buffer.cs │ ├── Console.cs │ ├── Decimal.cs │ ├── Delegate.cs │ ├── Environment.cs │ ├── Globalization │ │ └── CultureInfo.cs │ ├── IO │ │ └── __ConsoleStream.cs │ ├── Math.cs │ ├── Number.cs │ ├── Runtime │ │ ├── CompilerServices │ │ │ └── RuntimeHelpers.cs │ │ └── InteropServices │ │ │ ├── CriticalHandle.cs │ │ │ ├── DependentHandle.cs │ │ │ ├── GCHandle.cs │ │ │ └── SafeHandle.cs │ ├── RuntimeTypeHandle.cs │ ├── String.cs │ ├── Threading │ │ ├── Monitor.cs │ │ ├── Overlapped.cs │ │ ├── Thread.cs │ │ ├── ThreadPool.cs │ │ ├── Timer.cs │ │ └── WaitHandle.cs │ ├── Type.cs │ └── __Attributes.cs ├── ImplPAL │ └── Win32 │ │ └── Win32Native.cs ├── Microsoft │ └── Win32 │ │ ├── SafeHandles │ │ ├── SafeFileHandle.cs │ │ ├── SafeFileMappingHandle.cs │ │ ├── SafeFindHandle.cs │ │ ├── SafeLibraryHandle.cs │ │ ├── SafeLocalAllocHandle.cs │ │ ├── SafeRegistryHandle.cs │ │ ├── SafeViewOfFileHandle.cs │ │ ├── SafeWaitHandle.cs │ │ └── Win32SafeHandles.cs │ │ └── Win32Native.cs ├── Properties │ └── AssemblyInfo.cs └── System │ ├── Action.cs │ ├── Activator.cs │ ├── AggregateException.cs │ ├── AppContext │ ├── AppContext.cs │ ├── AppContextDefaultValues.Defaults.Central.cs │ ├── AppContextDefaultValues.Defaults.cs │ ├── AppContextDefaultValues.cs │ └── AppContextSwitches.cs │ ├── AppDomain.cs │ ├── AppDomainUnloadedException.cs │ ├── ApplicationException.cs │ ├── ArgIterator.cs │ ├── ArgumentException.cs │ ├── ArgumentNullException.cs │ ├── ArgumentOutOfRangeException.cs │ ├── ArithmeticException.cs │ ├── Array.cs │ ├── ArraySegment.cs │ ├── ArrayTypeMismatchException.cs │ ├── AssemblyInfo2.cs │ ├── AsyncCallback.cs │ ├── Attribute.cs │ ├── AttributeTargets.cs │ ├── AttributeUsageAttribute.cs │ ├── BCLDebug.cs │ ├── BadImageFormatException.cs │ ├── BitConverter.cs │ ├── Boolean.cs │ ├── Buffer.cs │ ├── Byte.cs │ ├── CLSCompliantAttribute.cs │ ├── Char.cs │ ├── CharEnumerator.cs │ ├── Collections │ ├── ArrayList.cs │ ├── Comparer.cs │ ├── Concurrent │ │ ├── ConcurrentDictionary.cs │ │ ├── ConcurrentQueue.cs │ │ ├── ConcurrentStack.cs │ │ ├── IProducerConsumerCollection.cs │ │ ├── OrderablePartitioner.cs │ │ ├── Partitioner.cs │ │ └── PartitionerStatic.cs │ ├── DictionaryEntry.cs │ ├── Generic │ │ ├── ArraySortHelper.cs │ │ ├── Comparer.cs │ │ ├── Dictionary.cs │ │ ├── EqualityComparer.cs │ │ ├── ICollection.cs │ │ ├── IComparer.cs │ │ ├── IDictionary.cs │ │ ├── IEnumerable.cs │ │ ├── IEnumerator.cs │ │ ├── IList.cs │ │ ├── IReadOnlyCollection.cs │ │ ├── IReadOnlyDictionary.cs │ │ ├── IReadOnlyList.cs │ │ ├── KeyNotFoundException.cs │ │ ├── KeyValuePair.cs │ │ ├── List.cs │ │ └── Queue.cs │ ├── HashTable.cs │ ├── ICollection.cs │ ├── IComparer.cs │ ├── IDictionary.cs │ ├── IDictionaryEnumerator.cs │ ├── IEnumerable.cs │ ├── IEnumerator.cs │ ├── IEqualityComparer.cs │ ├── IList.cs │ ├── IStructuralComparable.cs │ ├── IStructuralEquatable.cs │ ├── KeyValuePairs.cs │ ├── ObjectModel │ │ ├── Collection.cs │ │ ├── KeyedCollection.cs │ │ ├── ReadOnlyCollection.cs │ │ └── ReadOnlyDictionary.cs │ ├── Queue.cs │ └── stack.cs │ ├── CompatibilitySwitches.cs │ ├── ComponentModel │ └── EditorBrowsableAttribute.cs │ ├── Console.cs │ ├── ConsoleCancelEventArgs.cs │ ├── ConsoleColor.cs │ ├── ConsoleKey.cs │ ├── ConsoleKeyInfo.cs │ ├── ConsoleModifiers.cs │ ├── ConsoleSpecialKey.cs │ ├── ContextBoundObject.cs │ ├── Convert.cs │ ├── Currency.cs │ ├── DBNull.cs │ ├── DateTime.cs │ ├── DateTimeKind.cs │ ├── DayOfWeek.cs │ ├── Decimal.DecCalc.cs │ ├── Decimal.cs │ ├── DefaultBinder.cs │ ├── Delegate.cs │ ├── Diagnostics │ ├── CodeAnalysis │ │ └── SuppressMessageAttribute.cs │ ├── ConditionalAttribute.cs │ ├── Contracts │ │ └── Contracts.cs │ ├── Debugger.cs │ ├── DebuggerAttributes.cs │ ├── Eventing │ │ └── EventSource.cs │ └── Stopwatch.cs │ ├── DivideByZeroException.cs │ ├── Double.cs │ ├── Empty.cs │ ├── Enum.cs │ ├── Environment.cs │ ├── EventArgs.cs │ ├── EventHandler.cs │ ├── Exception.cs │ ├── FieldAccessException.cs │ ├── FlagsAttribute.cs │ ├── FormatException.cs │ ├── GC.cs │ ├── Globalization │ ├── CultureData.cs │ ├── CultureInfo.cs │ ├── CultureTypes.cs │ ├── DateTimeFormat.cs │ ├── DateTimeFormatInfo.cs │ ├── DateTimeParse.cs │ ├── DateTimeStyles.cs │ ├── DaylightTime.cs │ ├── DigitShapes.cs │ ├── NumberFormatInfo.cs │ ├── NumberStyles.cs │ └── Resources │ │ ├── CultureInfo.designer.cs │ │ ├── CultureInfo.en.resx │ │ └── CultureInfo.resx │ ├── Guid.cs │ ├── IAppDomainPauseManager.cs │ ├── IAsyncResult.cs │ ├── ICloneable.cs │ ├── IComparable.cs │ ├── IConvertible.cs │ ├── ICustomFormatter.cs │ ├── IDisposable.cs │ ├── IEquatable.cs │ ├── IFormatProvider.cs │ ├── IFormattable.cs │ ├── IO │ ├── BinaryReader.cs │ ├── BinaryWriter.cs │ ├── BufferedStream.cs │ ├── Directory.cs │ ├── DirectoryInfo.cs │ ├── DirectoryNotFoundException.cs │ ├── DriveInfo.cs │ ├── DriveNotFoundException.cs │ ├── EndOfStreamException.cs │ ├── File.cs │ ├── FileAccess.cs │ ├── FileAttributes.cs │ ├── FileInfo.cs │ ├── FileMode.cs │ ├── FileNotFoundException.cs │ ├── FileOptions.cs │ ├── FileSecurityState.cs │ ├── FileSecurityStateAccess.cs │ ├── FileShare.cs │ ├── FileStream.cs │ ├── FileSystemEnumerable.cs │ ├── FileSystemInfo.cs │ ├── IOException.cs │ ├── MemoryStream.cs │ ├── Path.cs │ ├── PathHelper.cs │ ├── PathTooLongException.cs │ ├── ReadLinesIterator.cs │ ├── SearchOption.cs │ ├── SeekOrigin.cs │ ├── Stream.cs │ ├── StreamReader.cs │ ├── StreamWriter.cs │ ├── StringReader.cs │ ├── StringWriter.cs │ ├── TextReader.cs │ ├── TextWriter.cs │ ├── __ConsoleStream.cs │ ├── __DebugOutputTextWriter.cs │ └── __Error.cs │ ├── IndexOutOfRangeException.cs │ ├── Int16.cs │ ├── Int32.cs │ ├── Int64.cs │ ├── IntPtr.cs │ ├── InvalidCastException.cs │ ├── InvalidOperationException.cs │ ├── Linq │ ├── Enumerable.cs │ ├── Error.cs │ ├── IQueryable.cs │ ├── LambdaExpression.cs │ ├── SR.cs │ └── Strings.cs │ ├── MarshalByRefObject.cs │ ├── Math.cs │ ├── MemberAccessException.cs │ ├── MidpointRounding.cs │ ├── MissingFieldException.cs │ ├── MissingMemberException.cs │ ├── MissingMethodException.cs │ ├── MulticastDelegate.cs │ ├── MulticastNotSupportedException.cs │ ├── NonSerializedAttribute.cs │ ├── NotImplementedException.cs │ ├── NotSupportedException.cs │ ├── NullReferenceException.cs │ ├── Nullable.cs │ ├── Number.cs │ ├── Object.cs │ ├── ObjectDisposedException.cs │ ├── ObsoleteAttribute.cs │ ├── OperatingSystem.cs │ ├── OperationCanceledException.cs │ ├── OutOfMemoryException.cs │ ├── OverflowException.cs │ ├── ParamArrayAttribute.cs │ ├── ParamsArray.cs │ ├── ParseNumbers.cs │ ├── PlatformID.cs │ ├── RankException.cs │ ├── Reflection │ ├── AmbiguousMatchException.cs │ ├── Assembly.cs │ ├── AssemblyAttributes.cs │ ├── AssemblyNameFlags.cs │ ├── AssemblyReflectionAttributes.cs │ ├── Associates.cs │ ├── Binder.cs │ ├── BindingFlags.cs │ ├── CallingConventions.cs │ ├── ConstructorInfo.cs │ ├── CustomAttribute.cs │ ├── CustomAttributeFormatException.cs │ ├── DefaultMemberAttribute.cs │ ├── EventAttributes.cs │ ├── EventInfo.cs │ ├── FieldAttributes.cs │ ├── FieldInfo.cs │ ├── FieldReflectionAttributes.cs │ ├── GenericParameterAttributes.cs │ ├── ICustomAttributeProvider.cs │ ├── IReflect.cs │ ├── IReflectableType.cs │ ├── InterfaceMapping.cs │ ├── InvalidFilterCriteriaException.cs │ ├── LoaderAllocator.cs │ ├── MdConstant.cs │ ├── MdImport.cs │ ├── MemberFilter.cs │ ├── MemberInfo.cs │ ├── MemberTypes.cs │ ├── MethodAttributes.cs │ ├── MethodBase.cs │ ├── MethodImplAttributes.cs │ ├── MethodInfo.cs │ ├── Missing.cs │ ├── Module.cs │ ├── ParameterAttributes.cs │ ├── ParameterInfo.cs │ ├── ParameterModifier.cs │ ├── Pointer.cs │ ├── PropertyAttributes.cs │ ├── PropertyInfo.cs │ ├── TargetException.cs │ ├── TargetInvocationException.cs │ ├── TargetParameterCountException.cs │ ├── TypeAttributes.cs │ ├── TypeFilter.cs │ ├── TypeInfo.cs │ └── __Filters.cs │ ├── Resources │ └── ResourceManager.cs │ ├── RtType.cs │ ├── Runtime │ ├── CompilerServices │ │ ├── AccessedThroughPropertyAttribute.cs │ │ ├── AsyncMethodBuilder.cs │ │ ├── CompilerGeneratedAttribute.cs │ │ ├── ConditionalWeakTable.cs │ │ ├── CustomConstantAttribute.cs │ │ ├── DecimalConstantAttribute.cs │ │ ├── DynamicAttribute.cs │ │ ├── ExtensionAttribute.cs │ │ ├── FixedBufferAttribute.cs │ │ ├── IAsyncStateMachine.cs │ │ ├── INotifyCompletion.cs │ │ ├── IndexerNameAttribute.cs │ │ ├── InternalsVisibleToAttribute.cs │ │ ├── IsVolatile.cs │ │ ├── MethodImplAttribute.cs │ │ ├── RuntimeHelpers.cs │ │ ├── TaskAwaiter.cs │ │ ├── TypeForwardedToAttribute.cs │ │ ├── YieldAwaitable.cs │ │ └── jithelpers.cs │ ├── ExceptionServices │ │ └── ExceptionServicesCommon.cs │ ├── InteropServices │ │ ├── Attributes.cs │ │ ├── CallingConvention.cs │ │ ├── CharSet.cs │ │ ├── CriticalHandle.cs │ │ ├── GcHandle.cs │ │ ├── LayoutKind.cs │ │ ├── Marshal.cs │ │ ├── SafeBuffer.cs │ │ └── SafeHandle.cs │ ├── Reliability │ │ ├── CriticalFinalizerObject.cs │ │ ├── PrePrepareMethodAttribute.cs │ │ └── ReliabilityContractAttribute.cs │ ├── Remoting │ │ ├── RemotingServices.cs │ │ └── __TransparentProxy.cs │ └── Versioning │ │ ├── BinaryCompatibility.cs │ │ ├── NonVersionableAttribute.cs │ │ └── TargetFrameworkId.cs │ ├── RuntimeArgumentHandle.cs │ ├── RuntimeHandles.cs │ ├── SByte.cs │ ├── Security │ ├── Attributes.cs │ ├── Permissions │ │ ├── FileIOPermission.cs │ │ ├── PermissionAttributes.cs │ │ ├── PermissionState.cs │ │ └── SecurityPermission.cs │ ├── Principal │ │ ├── IIdentity.cs │ │ ├── IPrincipal.cs │ │ └── TokenAccessLevels.cs │ ├── SafeSecurityHandles.cs │ ├── SecurityException.cs │ └── SecurityState.cs │ ├── SerializableAttribute.cs │ ├── Single.cs │ ├── String.cs │ ├── StringComparer.cs │ ├── StringComparison.cs │ ├── SystemException.cs │ ├── TargetFrameworkAttribute.cs │ ├── Text │ ├── ASCIIEncoding.cs │ ├── Decoder.cs │ ├── DecoderExceptionFallback.cs │ ├── DecoderFallback.cs │ ├── DecoderNLS.cs │ ├── DecoderReplacementFallback.cs │ ├── Encoder.cs │ ├── EncoderExceptionFallback.cs │ ├── EncoderFallback.cs │ ├── EncoderNLS.cs │ ├── EncoderReplacementFallback.cs │ ├── Encoding.cs │ ├── EncodingInfo.cs │ ├── InternalDecoderBestFitFallback.cs │ ├── InternalEncoderBestFitFallback.cs │ ├── Normalization.cs │ ├── StringBuilder.cs │ ├── StringBuilderCache.cs │ ├── UTF8Encoding.cs │ └── UnicodeEncoding.cs │ ├── ThreadAttributes.cs │ ├── ThreadStaticAttribute.cs │ ├── Threading │ ├── AbandonedMutexException.cs │ ├── AsyncLocal.cs │ ├── AutoResetEvent.cs │ ├── CancellationToken.cs │ ├── CancellationTokenRegistration.cs │ ├── CancellationTokenSource.cs │ ├── EventResetMode.cs │ ├── EventWaitHandle.cs │ ├── ExecutionContext.cs │ ├── Interlocked.cs │ ├── LazyInitializer.cs │ ├── LockRecursionException.cs │ ├── ManualResetEvent.cs │ ├── ManualResetEventSlim.cs │ ├── Monitor.cs │ ├── Mutex.cs │ ├── Overlapped.cs │ ├── ParameterizedThreadStart.cs │ ├── SendOrPostCallback.cs │ ├── SpinLock.cs │ ├── SpinWait.cs │ ├── SynchronizationContext.cs │ ├── SynchronizationLockException.cs │ ├── Tasks │ │ ├── AsyncCausalityTracer.cs │ │ ├── FutureFactory.cs │ │ ├── Parallel.cs │ │ ├── ParallelLoopState.cs │ │ ├── ParallelRangeManager.cs │ │ ├── TPLETWProvider.cs │ │ ├── Task.cs │ │ ├── TaskCanceledException.cs │ │ ├── TaskContinuation.cs │ │ ├── TaskExceptionHolder.cs │ │ ├── TaskFactory.cs │ │ ├── TaskScheduler.cs │ │ ├── TaskSchedulerException.cs │ │ ├── ThreadPoolTaskScheduler.cs │ │ └── future.cs │ ├── Thread.cs │ ├── ThreadAbortException.cs │ ├── ThreadPool.cs │ ├── ThreadPriority.cs │ ├── ThreadStart.cs │ ├── ThreadState.cs │ ├── ThreadStateException.cs │ ├── Timeout.cs │ ├── Timer.cs │ ├── Volatile.cs │ ├── WaitHandle.cs │ └── WaitHandleCannotBeOpenedException.cs │ ├── ThrowHelper.cs │ ├── TimeSpan.cs │ ├── TimeZone.cs │ ├── Tuple.cs │ ├── Type.cs │ ├── TypeCode.cs │ ├── TypeLoadException.cs │ ├── TypedReference.cs │ ├── UInt16.cs │ ├── UInt32.cs │ ├── UInt64.cs │ ├── UIntPtr.cs │ ├── UnauthorizedAccessException.cs │ ├── ValueType.cs │ ├── Version.cs │ ├── Void.cs │ ├── WeakReference.cs │ ├── _LocalDataStore.cs │ ├── _LocalDataStoreMgr.cs │ ├── __Filters.cs │ ├── __HResults.cs │ └── random.cs ├── CoreSource ├── AdditionalTextFile.cs ├── AnalyzerDriver │ ├── AnalyzerExceptionDescriptionBuilder.cs │ ├── DeclarationComputer.cs │ └── DeclarationInfo.cs ├── AssemblyUtilities.cs ├── Binding │ └── AbstractLookupSymbolsInfo.cs ├── CaseInsensitiveComparison.cs ├── CodeAnalysis.csproj ├── CodeAnalysisResources.Designer.cs ├── CodeAnalysisResources.resx ├── CodeAnalysisResourcesLocalizableErrorArgument.cs ├── CodeGen │ ├── ArrayMembers.cs │ ├── BasicBlock.cs │ ├── ClosureDebugInfo.cs │ ├── CompilationTestData.cs │ ├── DebugDocumentProvider.cs │ ├── DebugId.cs │ ├── DynamicAnalysisMethodBodyData.cs │ ├── EmitState.cs │ ├── ILBuilder.cs │ ├── ILBuilderConversions.cs │ ├── ILBuilderEmit.cs │ ├── ILEmitStyle.cs │ ├── ILOpCodeExtensions.cs │ ├── ITokenDeferral.cs │ ├── ItemTokenMap.cs │ ├── LabelInfo.cs │ ├── LambdaDebugInfo.cs │ ├── LocalConstantDefinition.cs │ ├── LocalDebugId.cs │ ├── LocalDefinition.cs │ ├── LocalOrParameter.cs │ ├── LocalScopeManager.cs │ ├── LocalSlotDebugInfo.cs │ ├── LocalSlotManager.cs │ ├── MetadataConstant.cs │ ├── MetadataCreateArray.cs │ ├── MetadataNamedArgument.cs │ ├── MetadataTypeOf.cs │ ├── MethodBody.cs │ ├── PermissionSetAttribute.cs │ ├── PrivateImplementationDetails.cs │ ├── RawSequencePoint.cs │ ├── ReferenceDependencyWalker.cs │ ├── ScopeType.cs │ ├── SequencePointList.cs │ ├── SignatureOnlyLocalDefinition.cs │ ├── SwitchIntegralJumpTableEmitter.SwitchBucket.cs │ ├── SwitchIntegralJumpTableEmitter.cs │ ├── SwitchStringJumpTableEmitter.cs │ ├── SynthesizedLocalOrdinalsDispenser.cs │ ├── TokenMap.cs │ ├── VariableSlotAllocator.cs │ └── Win32Res.cs ├── Collections │ ├── ArrayBuilderExtensions.cs │ ├── ArrayElement.cs │ ├── BitVector.cs │ ├── Boxes.cs │ ├── ByteSequenceComparer.cs │ ├── CachingDictionary.cs │ ├── CachingFactory.cs │ ├── ConcurrentCache.cs │ ├── ConsListExtensions.cs │ ├── EnumerableExtensions.cs │ ├── Grouping.cs │ ├── HashSetExtensions.cs │ ├── IdentifierCollection.Collection.cs │ ├── IdentifierCollection.cs │ ├── ImmutableArrayExtensions.cs │ ├── ImmutableMemoryStream.cs │ ├── KeyedStack.cs │ ├── OrderPreservingMultiDictionary.cs │ ├── OrderedSet.cs │ ├── SmallConcurrentSetOfInts.cs │ ├── SmallDictionary.cs │ ├── StaticCast.cs │ └── UnionCollection.cs ├── CommandLine │ ├── CommandLineAnalyzerReference.cs │ ├── CommandLineReference.cs │ ├── CommandLineSourceFile.cs │ ├── CommonCommandLineArguments.cs │ ├── CommonCommandLineParser.cs │ ├── CommonCompiler.CompilerEmitStreamProvider.cs │ ├── CommonCompiler.ExistingReferencesResolver.cs │ ├── CommonCompiler.LoggingMetadataFileReferenceResolver.cs │ ├── CommonCompiler.LoggingSourceFileResolver.cs │ ├── CommonCompiler.LoggingStrongNameProvider.cs │ ├── CommonCompiler.LoggingXmlFileResolver.cs │ ├── CommonCompiler.cs │ ├── ErrorLogger.cs │ └── TouchedFileLogger.cs ├── CommitHashAttribute.cs ├── Compilation.EmitStreamProvider.cs ├── Compilation │ ├── CandidateReason.cs │ ├── CommonModuleCompilationState.cs │ ├── CommonSyntaxAndDeclarationManager.cs │ ├── Compilation.cs │ ├── CompilationOptions.cs │ ├── CompilationStage.cs │ ├── ControlFlowAnalysis.cs │ ├── DataFlowAnalysis.cs │ ├── EmitResult.cs │ ├── Expression.cs │ ├── Extensions.cs │ ├── LoadDirective.cs │ ├── OperationExtensions.cs │ ├── OptimizationLevel.cs │ ├── ParseOptions.cs │ ├── Platform.cs │ ├── PreprocessingSymbolInfo.cs │ ├── ScriptCompilationInfo.cs │ ├── SemanticModel.cs │ ├── SourceReferenceResolver.cs │ ├── SpeculativeBindingOption.cs │ ├── Statement.cs │ ├── SubsystemVersion.cs │ ├── SymbolFilter.cs │ ├── SymbolInfo.cs │ ├── TypeInfo.cs │ └── XmlReferenceResolver.cs ├── ConstantValue.cs ├── ConstantValueSpecialized.cs ├── CorLightup.cs ├── CryptographicHashProvider.cs ├── CvtRes.cs ├── Dependencies │ ├── CodeAnalysis.Metadata │ │ ├── CustomDebugInfoConstants.cs │ │ ├── CustomDebugInfoEncoder.cs │ │ ├── CustomDebugInfoKind.cs │ │ ├── CustomDebugInfoReader.cs │ │ ├── CustomDebugInfoRecord.cs │ │ ├── DynamicLocalInfo.cs │ │ ├── ImportTargetKind.cs │ │ ├── PortableCustomDebugInfoKinds.cs │ │ ├── StateMachineHoistedLocalScope.cs │ │ ├── TupleElementNamesInfo.cs │ │ └── VBImportScopeKind.cs │ └── PooledObjects │ │ ├── ArrayBuilder.Enumerator.cs │ │ ├── ArrayBuilder.cs │ │ ├── ObjectPool`1.cs │ │ ├── PooledDictionary.cs │ │ ├── PooledHashSet.cs │ │ └── PooledStringBuilder.cs ├── Desktop │ ├── AssemblyPortabilityPolicy.cs │ ├── AssemblyVersion.cs │ ├── DesktopAssemblyIdentityComparer.Fx.cs │ └── DesktopAssemblyIdentityComparer.cs ├── Diagnostic │ ├── CommonDiagnosticComparer.cs │ ├── CommonMessageProvider.cs │ ├── Diagnostic.cs │ ├── DiagnosticBag.cs │ ├── DiagnosticDescriptor.cs │ ├── DiagnosticFormatter.cs │ ├── DiagnosticInfo.cs │ ├── DiagnosticSeverity.cs │ ├── DiagnosticWithInfo.cs │ ├── Diagnostic_SimpleDiagnostic.cs │ ├── ExternalFileLocation.cs │ ├── FileLinePositionSpan.cs │ ├── IMessageSerializable.cs │ ├── LocalizableResourceString.FixedLocalizableString.cs │ ├── LocalizableResourceString.cs │ ├── LocalizableString.cs │ ├── Location.cs │ ├── LocationKind.cs │ ├── MetadataLocation.cs │ ├── NoLocation.cs │ ├── ReportDiagnostic.cs │ ├── SourceLocation.cs │ ├── SuppressionInfo.cs │ ├── WellKnownDiagnosticTags.cs │ └── XmlLocation.cs ├── DiagnosticAnalyzer │ ├── AdditionalText.cs │ ├── AnalysisContextInfo.cs │ ├── AnalysisResult.cs │ ├── AnalysisResultBuilder.cs │ ├── AnalysisScope.cs │ ├── AnalysisState.AnalyzerStateData.cs │ ├── AnalysisState.PerAnalyzerState.cs │ ├── AnalysisState.StateKind.cs │ ├── AnalysisState.SyntaxReferenceAnalyzerStateData.cs │ ├── AnalysisState.cs │ ├── AnalysisValueProvider.cs │ ├── AnalyzerActionCounts.cs │ ├── AnalyzerAssemblyLoader.cs │ ├── AnalyzerDriver.CompilationData.cs │ ├── AnalyzerDriver.cs │ ├── AnalyzerExecutor.cs │ ├── AnalyzerFileReference.cs │ ├── AnalyzerImageReference.cs │ ├── AnalyzerLoadFailureEventArgs.cs │ ├── AnalyzerManager.AnalyzerExecutionContext.cs │ ├── AnalyzerManager.cs │ ├── AnalyzerOptions.cs │ ├── AnalyzerReference.cs │ ├── AnalyzerTelemetry.cs │ ├── AsyncQueue.cs │ ├── CompilationAnalysisValueProvider.cs │ ├── CompilationAnalysisValueProviderFactory.cs │ ├── CompilationCompletedEvent.cs │ ├── CompilationEvent.cs │ ├── CompilationStartedEvent.cs │ ├── CompilationUnitCompletedEvent.cs │ ├── CompilationWithAnalyzers.cs │ ├── CompilationWithAnalyzersOptions.cs │ ├── CompilerDiagnosticAnalyzer.CompilationAnalyzer.cs │ ├── CompilerDiagnosticAnalyzer.cs │ ├── DiagnosticAnalysisContext.cs │ ├── DiagnosticAnalysisContextHelpers.cs │ ├── DiagnosticAnalyzer.cs │ ├── DiagnosticAnalyzerAction.cs │ ├── DiagnosticAnalyzerAttribute.cs │ ├── DiagnosticAnalyzerExtensions.cs │ ├── DiagnosticQueue.cs │ ├── DiagnosticStartAnalysisScope.cs │ ├── IAnalyzerAssemblyLoader.cs │ ├── SourceTextValueProvider.cs │ ├── SuppressMessageAttributeState.TargetSymbolResolver.cs │ ├── SuppressMessageAttributeState.cs │ ├── SuppressMessageInfo.cs │ ├── SymbolDeclaredCompilationEvent.cs │ ├── SyntaxTreeValueProvider.cs │ └── UnresolvedAnalyzerReference.cs ├── DocumentationCommentId.cs ├── DocumentationComments │ ├── DocumentationCommentIncludeCache.cs │ ├── DocumentationProvider.NullDocumentationProvider.cs │ ├── DocumentationProvider.cs │ ├── XmlDocumentationCommentTextReader.XmlStream.cs │ └── XmlDocumentationCommentTextReader.cs ├── DocumentationMode.cs ├── EmbeddedText.cs ├── Emit │ ├── AnonymousTypeKey.cs │ ├── AnonymousTypeValue.cs │ ├── CommonPEModuleBuilder.cs │ ├── Context.cs │ ├── DebugDocumentsBuilder.cs │ ├── DebugInformationFormat.cs │ ├── EditAndContinue │ │ ├── AddedOrChangedMethodInfo.cs │ │ ├── DefinitionMap.cs │ │ ├── DeltaMetadataWriter.cs │ │ ├── EmitBaseline.cs │ │ ├── EmitDifferenceResult.cs │ │ ├── EncHoistedLocalInfo.cs │ │ ├── EncHoistedLocalMetadata.cs │ │ ├── EncLocalInfo.cs │ │ ├── EncVariableSlotAllocator.cs │ │ ├── IPEDeltaAssemblyBuilder.cs │ │ ├── LambdaSyntaxFacts.cs │ │ ├── SymbolChange.cs │ │ ├── SymbolChanges.cs │ │ └── SymbolMatcher.cs │ ├── EditAndContinueMethodDebugInformation.cs │ ├── EmitOptions.cs │ ├── ErrorType.cs │ ├── InstrumentationKind.cs │ ├── ModulePropertiesForSerialization.cs │ ├── NoPia │ │ ├── CommonEmbeddedEvent.cs │ │ ├── CommonEmbeddedField.cs │ │ ├── CommonEmbeddedMember.cs │ │ ├── CommonEmbeddedMethod.cs │ │ ├── CommonEmbeddedParameter.cs │ │ ├── CommonEmbeddedProperty.cs │ │ ├── CommonEmbeddedType.cs │ │ ├── CommonEmbeddedTypeParameter.cs │ │ ├── EmbeddedTypesManager.cs │ │ └── VtblGap.cs │ ├── SemanticEdit.cs │ └── SemanticEditKind.cs ├── EncodedStringText.cs ├── EnumConstantHelper.cs ├── FileKey.cs ├── FileSystem │ ├── CompilerPathUtilities.cs │ ├── FileUtilities.cs │ ├── PathKind.cs │ ├── PathUtilities.cs │ └── RelativePathResolver.cs ├── FileSystemExtensions.cs ├── GlobalSuppressions.cs ├── InternalImplementationOnlyAttribute.cs ├── InternalUtilities │ ├── ArrayExtensions.cs │ ├── AssemblyIdentityUtils.cs │ ├── BitArithmeticUtilities.cs │ ├── BlobBuildingStream.cs │ ├── CommandLineUtilities.cs │ ├── CompilerOptionParseUtilities.cs │ ├── ConcurrentDictionaryExtensions.cs │ ├── ConcurrentLruCache.cs │ ├── ConcurrentSet.cs │ ├── ConsList`1.cs │ ├── DecimalUtilities.cs │ ├── DocumentationCommentXmlNames.cs │ ├── EmptyComparer.cs │ ├── EncodingExtensions.cs │ ├── EnumField.cs │ ├── EnumUtilties.cs │ ├── EnumerableExtensions.cs │ ├── ExceptionUtilities.cs │ ├── FailFast.cs │ ├── FatalError.cs │ ├── FileNameUtilities.cs │ ├── GeneratedCodeUtilities.cs │ ├── Hash.cs │ ├── IReadOnlySet.cs │ ├── ISetExtensions.cs │ ├── ImmutableArrayExtensions.cs │ ├── ImmutableArrayInterop.cs │ ├── ImmutableListExtensions.cs │ ├── ImmutableSetWithInsertionOrder`1.cs │ ├── IncrementalHashExtensions.cs │ ├── InterlockedOperations.cs │ ├── JsonWriter.cs │ ├── KeyValuePair.cs │ ├── MultiDictionary.cs │ ├── NoThrowStreamDisposer.cs │ ├── OneOrMany.cs │ ├── OrderedMultiDictionary.cs │ ├── PlatformInformation.cs │ ├── ReadOnlyUnmanagedMemoryStream.cs │ ├── ReaderWriterLockSlimExtensions.cs │ ├── ReferenceEqualityComparer.cs │ ├── ReflectionUtilities.cs │ ├── SemaphoreSlimExtensions.cs │ ├── SetWithInsertionOrder.cs │ ├── SpecializedCollections.Empty.Collection.cs │ ├── SpecializedCollections.Empty.Dictionary.cs │ ├── SpecializedCollections.Empty.Enumerable.cs │ ├── SpecializedCollections.Empty.Enumerator.cs │ ├── SpecializedCollections.Empty.Enumerator`1.cs │ ├── SpecializedCollections.Empty.List.cs │ ├── SpecializedCollections.Empty.Set.cs │ ├── SpecializedCollections.Empty.cs │ ├── SpecializedCollections.ReadOnly.Collection.cs │ ├── SpecializedCollections.ReadOnly.Enumerable`1.cs │ ├── SpecializedCollections.ReadOnly.Enumerable`2.cs │ ├── SpecializedCollections.ReadOnly.Set.cs │ ├── SpecializedCollections.Singleton.Collection`1.cs │ ├── SpecializedCollections.Singleton.Enumerator`1.cs │ ├── SpecializedCollections.cs │ ├── StackGuard.cs │ ├── StreamExtensions.cs │ ├── StringExtensions.cs │ ├── StringOrdinalComparer.cs │ ├── StringTable.cs │ ├── SuppressUnmanagedCodeSecurityAttribute.cs │ ├── TextChangeRangeExtensions.cs │ ├── TextKeyedCache.cs │ ├── ThreadSafeFlagOperations.cs │ ├── ThreeState.cs │ ├── UICultureUtilities.cs │ ├── UnicodeCharacterUtilities.cs │ ├── WeakList.cs │ ├── WeakReferenceExtensions.cs │ └── XmlUtilities.cs ├── Interop │ ├── ClrStrongName.cs │ ├── IClrMetaHost.cs │ ├── IClrRuntimeInfo.cs │ ├── IClrStrongName.cs │ └── IVsSQM.cs ├── MemberDescriptor.cs ├── MetadataReader │ ├── EmbeddedResource.cs │ ├── LocalSlotConstraints.cs │ ├── MetadataDecoder.cs │ ├── MetadataHelpers.cs │ ├── MetadataImportOptions.cs │ ├── MetadataReaderExtensions.cs │ ├── MetadataTypeCodeExtensions.cs │ ├── MetadataTypeName.Key.cs │ ├── MetadataTypeName.cs │ ├── ModuleExtensions.cs │ ├── PEAssembly.cs │ ├── PEModule.cs │ ├── SymbolFactory.cs │ ├── TypeAttributesExtensions.cs │ ├── TypeNameDecoder.cs │ └── UnsupportedSignatureContent.cs ├── MetadataReference │ ├── AssemblyIdentity.DisplayName.cs │ ├── AssemblyIdentity.cs │ ├── AssemblyIdentityComparer.cs │ ├── AssemblyIdentityExtensions.cs │ ├── AssemblyIdentityMap.cs │ ├── AssemblyIdentityParts.cs │ ├── AssemblyMetadata.cs │ ├── CompilationReference.cs │ ├── Metadata.cs │ ├── MetadataImageKind.cs │ ├── MetadataImageReference.cs │ ├── MetadataReference.cs │ ├── MetadataReferenceProperties.cs │ ├── MetadataReferenceResolver.cs │ ├── ModuleMetadata.cs │ ├── PortableExecutableReference.cs │ ├── ReferenceDirective.cs │ └── UnresolvedMetadataReference.cs ├── NativePdbWriter │ ├── ComMemoryStream.cs │ ├── ISymUnmanagedAsyncMethodPropertiesWriter.cs │ ├── ISymUnmanagedWriter.cs │ ├── IUnsafeComStream.cs │ ├── PdbMetadataWrapper.cs │ └── PdbWriter.cs ├── Operations │ ├── ArgumentKind.cs │ ├── BinaryOperandsKind.cs │ ├── BinaryOperationKind.cs │ ├── BranchKind.cs │ ├── CaseKind.cs │ ├── ConversionKind.cs │ ├── Expressions.cs │ ├── IAddressOfExpression.cs │ ├── IArgument.cs │ ├── IArrayCreationExpression.cs │ ├── IArrayElementReferenceExpression.cs │ ├── IArrayInitializer.cs │ ├── IAssignmentExpression.cs │ ├── IAwaitExpression.cs │ ├── IBinaryOperatorExpression.cs │ ├── IBlockStatement.cs │ ├── IBranchStatement.cs │ ├── ICaseClause.cs │ ├── ICatchClause.cs │ ├── ICompoundAssignmentExpression.cs │ ├── IConditionalAccessExpression.cs │ ├── IConditionalAccessInstanceExpression.cs │ ├── IConditionalChoiceExpression.cs │ ├── IConversionExpression.cs │ ├── IDefaultValueExpression.cs │ ├── IEmptyStatement.cs │ ├── IEndStatement.cs │ ├── IEventAssignmentExpression.cs │ ├── IEventReferenceExpression.cs │ ├── IExpressionStatement.cs │ ├── IFieldInitializer.cs │ ├── IFieldReferenceExpression.cs │ ├── IFixedStatement.cs │ ├── IForEachLoopStatement.cs │ ├── IForLoopStatement.cs │ ├── IForWhileUntilLoopStatement.cs │ ├── IHasArgumentsExpression.cs │ ├── IHasOperatorMethodExpression.cs │ ├── IIfStatement.cs │ ├── IIncrementExpression.cs │ ├── IIndexedPropertyReferenceExpression.cs │ ├── IInstanceReferenceExpression.cs │ ├── IInvalidExpression.cs │ ├── IInvalidStatement.cs │ ├── IInvocationExpression.cs │ ├── IIsTypeExpression.cs │ ├── ILabelStatement.cs │ ├── ILambdaExpression.cs │ ├── ILateBoundMemberReferenceExpression.cs │ ├── ILiteralExpression.cs │ ├── ILocalReferenceExpression.cs │ ├── ILockStatement.cs │ ├── ILoopStatement.cs │ ├── IMemberReferenceExpression.cs │ ├── IMethodBindingExpression.cs │ ├── INullCoalescingExpression.cs │ ├── IObjectCreationExpression.cs │ ├── IOmittedArgumentExpression.cs │ ├── IOperation.cs │ ├── IOperationKind.cs │ ├── IParameterInitializer.cs │ ├── IParameterReferenceExpression.cs │ ├── IParenthesizedExpression.cs │ ├── IPlaceholderExpression.cs │ ├── IPointerIndirectionReferenceExpression.cs │ ├── IPropertyInitializer.cs │ ├── IPropertyReferenceExpression.cs │ ├── IRangeCaseClause.cs │ ├── IRelationalCaseClause.cs │ ├── IReturnStatement.cs │ ├── ISingleValueCaseClause.cs │ ├── ISizeOfExpression.cs │ ├── IStopStatement.cs │ ├── ISwitchCase.cs │ ├── ISwitchStatement.cs │ ├── ISymbolInitializer.cs │ ├── ISyntheticLocalReferenceExpression.cs │ ├── IThrowStatement.cs │ ├── ITryStatement.cs │ ├── ITypeOfExpression.cs │ ├── ITypeOperationExpression.cs │ ├── ITypeParameterObjectCreationExpression.cs │ ├── IUnaryOperatorExpression.cs │ ├── IUnboundLambdaExpression.cs │ ├── IUsingStatement.cs │ ├── IVariableDeclaration.cs │ ├── IVariableDeclarationStatement.cs │ ├── IWhileUntilLoopStatement.cs │ ├── IWithStatement.cs │ ├── InstanceReferenceKind.cs │ ├── LoopKind.cs │ ├── OperationVisitor.cs │ ├── OperationWalker.cs │ ├── SimpleBinaryOperationKind.cs │ ├── SimpleUnaryOperationKind.cs │ ├── SyntheticLocalKind.cs │ ├── UnaryAndBinaryOperationExtensions.cs │ ├── UnaryOperandKind.cs │ └── UnaryOperationKind.cs ├── Optional.cs ├── OutputKind.cs ├── PEWriter │ ├── AssemblyReferenceAlias.cs │ ├── Constants.cs │ ├── Core.cs │ ├── CustomDebugInfoWriter.cs │ ├── DebugSourceDocument.cs │ ├── DebugSourceInfo.cs │ ├── ExceptionHandlerRegion.cs │ ├── ExportedType.cs │ ├── Expressions.cs │ ├── FullMetadataWriter.cs │ ├── ICustomAttribute.cs │ ├── IFileReference.cs │ ├── IImportScope.cs │ ├── ITypeReferenceExtensions.cs │ ├── InheritedTypeParameter.cs │ ├── InstructionOperandTypes.cs │ ├── LocalScope.cs │ ├── ManagedResource.cs │ ├── MemberRefComparer.cs │ ├── Members.cs │ ├── MetadataVisitor.cs │ ├── MetadataWriter.DynamicAnalysis.cs │ ├── MetadataWriter.PortablePdb.cs │ ├── MetadataWriter.cs │ ├── MethodSpecComparer.cs │ ├── Miscellaneous.cs │ ├── ModifiedTypeReference.cs │ ├── NativeResourceWriter.cs │ ├── NoPiaReferenceIndexer.cs │ ├── PeWriter.cs │ ├── PooledBlobBuilder.cs │ ├── ReferenceIndexer.cs │ ├── ReferenceIndexerBase.cs │ ├── ReturnValueParameter.cs │ ├── RootModuleType.cs │ ├── SequencePoint.cs │ ├── SourceSpan.cs │ ├── TypeLibTypeFlags.cs │ ├── TypeNameSerializer.cs │ ├── TypeSpecComparer.cs │ ├── Types.cs │ ├── Units.cs │ └── UsedNamespaceOrType.cs ├── PrimitiveTypeCodeExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── PublicAPI.Shipped.txt ├── PublicAPI.Unshipped.txt ├── RealParser.cs ├── ReferenceManager │ ├── AssemblyData.cs │ ├── AssemblyDataForAssemblyBeingBuilt.cs │ ├── AssemblyReferenceBinding.cs │ ├── AssemblyReferenceCandidate.cs │ ├── BoundInputAssembly.cs │ ├── CommonReferenceManager.Binding.cs │ ├── CommonReferenceManager.Resolution.cs │ ├── CommonReferenceManager.State.cs │ ├── Compilation_MetadataCache.cs │ ├── MergedAliases.cs │ ├── ModuleReferences.cs │ └── UnifiedAssembly.cs ├── ResourceDescription.cs ├── ResourceException.cs ├── Resources │ └── default.win32manifest ├── RuleSet │ ├── InvalidRuleSetException.cs │ ├── RuleSet.cs │ ├── RuleSetInclude.cs │ ├── RuleSetProcessor.cs │ └── RuleSetSchema.xsd ├── Serialization │ ├── IObjectWritable.cs │ ├── ObjectBinder.cs │ ├── StreamObjectReader.cs │ └── StreamObjectWriter.cs ├── SignatureComparer.cs ├── SourceCodeKind.cs ├── SourceFileResolver.cs ├── SpecialMember.cs ├── SpecialMembers.cs ├── SpecialType.cs ├── SpecialTypeExtensions.cs ├── SpecialTypes.cs ├── StrongName │ ├── CryptoBlobParser.cs │ ├── DesktopStrongNameProvider.cs │ ├── StrongNameKeys.cs │ └── StrongNameProvider.cs ├── SwitchConstantValueHelper.cs ├── SymbolDisplay │ ├── AbstractSymbolDisplayVisitor.cs │ ├── AbstractSymbolDisplayVisitor_Minimal.cs │ ├── FormattedSymbol.cs │ ├── FormattedSymbolList.cs │ ├── ObjectDisplayExtensions.cs │ ├── ObjectDisplayOptions.cs │ ├── SymbolDisplayCompilerInternalOptions.cs │ ├── SymbolDisplayDelegateStyle.cs │ ├── SymbolDisplayExtensionMethodStyle.cs │ ├── SymbolDisplayExtensions.cs │ ├── SymbolDisplayFormat.cs │ ├── SymbolDisplayGenericsOptions.cs │ ├── SymbolDisplayGlobalNamespaceStyle.cs │ ├── SymbolDisplayKindOptions.cs │ ├── SymbolDisplayLocalOptions.cs │ ├── SymbolDisplayMemberOptions.cs │ ├── SymbolDisplayMiscellaneousOptions.cs │ ├── SymbolDisplayParameterOptions.cs │ ├── SymbolDisplayPart.cs │ ├── SymbolDisplayPartKind.cs │ ├── SymbolDisplayPropertyStyle.cs │ └── SymbolDisplayTypeQualificationStyle.cs ├── Symbols │ ├── Accessibility.cs │ ├── AnonymousTypes │ │ └── CommonAnonymousTypeManager.cs │ ├── Attributes │ │ ├── AttributeDescription.cs │ │ ├── AttributeUsageInfo.cs │ │ ├── CommonAssemblyWellKnownAttributeData.cs │ │ ├── CommonAttributeData.cs │ │ ├── CommonAttributeDataComparer.cs │ │ ├── CommonEventEarlyWellKnownAttributeData.cs │ │ ├── CommonEventWellKnownAttributeData.cs │ │ ├── CommonFieldEarlyWellKnownAttributeData.cs │ │ ├── CommonFieldWellKnownAttributeData.cs │ │ ├── CommonMethodEarlyWellKnownAttributeData.cs │ │ ├── CommonMethodWellKnownAttributeData.cs │ │ ├── CommonModuleWellKnownAttributeData.cs │ │ ├── CommonParameterEarlyWellKnownAttributeData.cs │ │ ├── CommonParameterWellKnownAttributeData.cs │ │ ├── CommonPropertyEarlyWellKnownAttributeData.cs │ │ ├── CommonPropertyWellKnownAttributeData.cs │ │ ├── CommonReturnTypeWellKnownAttributeData.cs │ │ ├── CommonTypeEarlyWellKnownAttributeData.cs │ │ ├── CommonTypeWellKnownAttributeData.cs │ │ ├── CustomAttributesBag.cs │ │ ├── DecodeWellKnownAttributeArguments.cs │ │ ├── EarlyDecodeWellKnownAttributeArguments.cs │ │ ├── EarlyWellKnownAttributeData.cs │ │ ├── IMarshalAsAttributeTarget.cs │ │ ├── ISecurityAttributeTarget.cs │ │ ├── MarshalAsAttributeDecoder.cs │ │ ├── MarshalPseudoCustomAttributeData.cs │ │ ├── ObsoleteAttributeData.cs │ │ ├── SecurityWellKnownAttributeData.cs │ │ └── WellKnownAttributeData.cs │ ├── CommonAttributeDataExtensions.cs │ ├── CustomModifier.cs │ ├── CustomModifiersTuple.cs │ ├── IAliasSymbol.cs │ ├── IArrayTypeSymbol.cs │ ├── IAssemblySymbol.cs │ ├── IAssemblySymbolInternal.cs │ ├── IDiscardSymbol.cs │ ├── IDynamicTypeSymbol.cs │ ├── IErrorTypeSymbol.cs │ ├── IEventSymbol.cs │ ├── IFieldSymbol.cs │ ├── ILabelSymbol.cs │ ├── ILocalSymbol.cs │ ├── ILocalSymbolInternal.cs │ ├── IMethodSymbol.cs │ ├── IMethodSymbolInternal.cs │ ├── IModuleSymbol.cs │ ├── INamedTypeSymbol.cs │ ├── INamespaceOrTypeSymbol.cs │ ├── INamespaceSymbol.cs │ ├── IParameterSymbol.cs │ ├── IPointerTypeSymbol.cs │ ├── IPreprocessingSymbol.cs │ ├── IPropertySymbol.cs │ ├── IRangeVariableSymbol.cs │ ├── ISourceAssemblySymbol.cs │ ├── ISourceAssemblySymbolInternal.cs │ ├── ISymbol.cs │ ├── ISymbolExtensions.cs │ ├── ISynthesizedMethodBodyImplementationSymbol.cs │ ├── ITypeParameterSymbol.cs │ ├── ITypeSymbol.cs │ ├── LanguageNames.cs │ ├── MethodKind.cs │ ├── NamespaceKind.cs │ ├── PlatformInvokeInformation.cs │ ├── RefKind.cs │ ├── SymbolKind.cs │ ├── SymbolKindExtensions.cs │ ├── SymbolVisitor.cs │ ├── SymbolVisitor`1.cs │ ├── TypeCompareKind.cs │ ├── TypeKind.cs │ ├── TypeLayout.cs │ ├── TypeParameterKind.cs │ ├── TypedConstant.cs │ ├── TypedConstantKind.cs │ ├── TypedConstantValue.cs │ ├── VarianceKind.cs │ └── WellKnownMemberNames.cs ├── Syntax │ ├── AbstractWarningStateMap.cs │ ├── AnnotationExtensions.cs │ ├── ChildSyntaxList.Enumerator.cs │ ├── ChildSyntaxList.Reversed.cs │ ├── ChildSyntaxList.cs │ ├── GreenNode.cs │ ├── GreenNodeExtensions.cs │ ├── ICompilationUnitSyntax.cs │ ├── ISkippedTokensTriviaSyntax.cs │ ├── IStructuredTriviaSyntax.cs │ ├── InternalSyntax │ │ ├── ChildSyntaxList.Enumerator.cs │ │ ├── ChildSyntaxList.Reversed.Enumerator.cs │ │ ├── ChildSyntaxList.Reversed.cs │ │ ├── ChildSyntaxList.cs │ │ ├── GreenNodeExtensions.cs │ │ ├── SeparatedSyntaxList.cs │ │ ├── SeparatedSyntaxListBuilder.cs │ │ ├── SyntaxDiagnosticInfoList.cs │ │ ├── SyntaxList.WithLotsOfChildren.cs │ │ ├── SyntaxList.WithManyChildren.cs │ │ ├── SyntaxList.WithThreeChildren.cs │ │ ├── SyntaxList.WithTwoChildren.cs │ │ ├── SyntaxList.cs │ │ ├── SyntaxListBuilder.cs │ │ ├── SyntaxListBuilderExtensions.cs │ │ ├── SyntaxListBuilder`1.cs │ │ ├── SyntaxListPool.cs │ │ ├── SyntaxList`1.Enumerator.cs │ │ ├── SyntaxList`1.cs │ │ └── SyntaxNodeCache.cs │ ├── LineDirectiveMap.LineMappingEntry.cs │ ├── LineDirectiveMap.cs │ ├── LineVisibility.cs │ ├── SeparatedSyntaxList.Enumerator.cs │ ├── SeparatedSyntaxList.cs │ ├── SeparatedSyntaxListBuilder.cs │ ├── SyntaxAnnotation.cs │ ├── SyntaxDiffer.cs │ ├── SyntaxList.SeparatedWithManyChildren.cs │ ├── SyntaxList.SeparatedWithManyWeakChildren.cs │ ├── SyntaxList.WithManyChildren.cs │ ├── SyntaxList.WithManyWeakChildren.cs │ ├── SyntaxList.WithThreeChildren.cs │ ├── SyntaxList.WithTwoChildren.cs │ ├── SyntaxList.cs │ ├── SyntaxListBuilder.cs │ ├── SyntaxListBuilderExtensions.cs │ ├── SyntaxListBuilder`1.cs │ ├── SyntaxList`1.Enumerator.cs │ ├── SyntaxList`1.cs │ ├── SyntaxNavigator.cs │ ├── SyntaxNode.Iterators.cs │ ├── SyntaxNode.cs │ ├── SyntaxNodeExtensions.cs │ ├── SyntaxNodeExtensions_Tracking.cs │ ├── SyntaxNodeLocationComparer.cs │ ├── SyntaxNodeOrToken.cs │ ├── SyntaxNodeOrTokenList.cs │ ├── SyntaxNodeOrTokenListBuilder.cs │ ├── SyntaxReference.cs │ ├── SyntaxRemoveOptions.cs │ ├── SyntaxToken.cs │ ├── SyntaxTokenList.Enumerator.cs │ ├── SyntaxTokenList.Reversed.cs │ ├── SyntaxTokenList.cs │ ├── SyntaxTokenListBuilder.cs │ ├── SyntaxTree.cs │ ├── SyntaxTreeComparer.cs │ ├── SyntaxTreeExtensions.cs │ ├── SyntaxTrivia.cs │ ├── SyntaxTriviaList.Enumerator.cs │ ├── SyntaxTriviaList.Reversed.cs │ ├── SyntaxTriviaList.cs │ ├── SyntaxTriviaListBuilder.cs │ ├── SyntaxWalker.cs │ ├── SyntaxWalkerDepth.cs │ └── TranslationSyntaxReference.cs ├── SynthesizedLocalKind.cs ├── System │ └── Reflection │ │ ├── BlobBuilder.cs │ │ ├── BlobWriter.cs │ │ ├── Internal │ │ └── Utilities │ │ │ └── BlobUtilities.cs │ │ └── Metadata │ │ └── Ecma335 │ │ ├── MetadataBuilder.Heaps.cs │ │ └── MetadataBuilder.Tables.cs ├── Text │ ├── ChangedText.cs │ ├── CompositeText.cs │ ├── LargeText.cs │ ├── LargeTextWriter.cs │ ├── LinePosition.cs │ ├── LinePositionSpan.cs │ ├── SourceHashAlgorithm.cs │ ├── SourceText.cs │ ├── SourceTextComparer.cs │ ├── SourceTextContainer.cs │ ├── SourceTextStream.cs │ ├── SourceTextWriter.cs │ ├── StringBuilderText.cs │ ├── StringText.cs │ ├── StringTextWriter.cs │ ├── SubText.cs │ ├── TextChange.cs │ ├── TextChangeEventArgs.cs │ ├── TextChangeRange.cs │ ├── TextLine.cs │ ├── TextLineCollection.cs │ ├── TextSpan.cs │ └── TextUtilities.cs ├── TextLineSpan.cs ├── TreeDumper.cs ├── VersionHelper.cs ├── WellKnownMember.cs ├── WellKnownMembers.cs ├── WellKnownTypes.cs ├── Xml │ └── XmlCharType.cs ├── XmlFileResolver.cs └── packages.config ├── Il2Native.Logic ├── CCodeFilesGenerator.cs ├── CCodeUnitsBuilder.cs ├── CCodeWriterBase.cs ├── CCodeWriterText.cs ├── CLangKeywords.cs ├── CodeAnalysisHelpers.cs ├── Cs2CGenerator.cs ├── DOM │ ├── CCodeBase.cs │ ├── CCodeClass.cs │ ├── CCodeClassDeclaration.cs │ ├── CCodeDeclaration.cs │ ├── CCodeDefinition.cs │ ├── CCodeDelegateWrapperClass.cs │ ├── CCodeFieldDeclaration.cs │ ├── CCodeFieldDefinition.cs │ ├── CCodeInternalImplementationMethodDeclaration.cs │ ├── CCodeMethodDeclaration.cs │ ├── CCodeMethodDefinition.cs │ ├── CCodeUnit.cs │ ├── Helpers.cs │ ├── Implementations │ │ ├── ArrayTypeImpl.cs │ │ ├── AssembliesInfoResolver.cs │ │ ├── AssemblySymbolImpl.cs │ │ ├── FieldImpl.cs │ │ ├── IAssembliesInfoResolver.cs │ │ ├── LocalImpl.cs │ │ ├── MethodImpl.cs │ │ ├── NamedTypeImpl.cs │ │ ├── NamespaceImpl.cs │ │ ├── ParameterImpl.cs │ │ ├── PointerTypeImpl.cs │ │ ├── TypeImpl.cs │ │ ├── TypeParameterSymbolImpl.cs │ │ └── ValueTypeAsClassTypeImpl.cs │ └── Synthesized │ │ ├── CCodeArrowOperatorDeclaration.cs │ │ ├── CCodeCastOperatorDeclaration.cs │ │ ├── CCodeCloneVirtualMethod.cs │ │ ├── CCodeEqualsVirtualMethod.cs │ │ ├── CCodeGetArrayElementSizeVirtualMethod.cs │ │ ├── CCodeGetSizeVirtualMethod.cs │ │ ├── CCodeGetTypeDescriptorDeclaration.cs │ │ ├── CCodeGetTypeVirtualMethodDeclaration.cs │ │ ├── CCodeGetTypeVirtualMethodDefinition.cs │ │ ├── CCodeHashVirtualMethod.cs │ │ ├── CCodeIsPrimitiveTypeArrayVirtualMethod.cs │ │ ├── CCodeIsTypeVirtualMethodDeclaration.cs │ │ ├── CCodeIsTypeVirtualMethodDefinition.cs │ │ ├── CCodeNewOperatorDeclaration.cs │ │ ├── CCodeNewOperatorPointerDeclaration.cs │ │ ├── CCodeObjectCastOperatorDeclaration.cs │ │ ├── CCodeObjectCastOperatorDefinition.cs │ │ ├── CCodeRuntimeTypeConstructorDeclaration.cs │ │ ├── CCodeSpecialTypeOrEnumConstructorDeclaration.cs │ │ ├── Interface │ │ ├── CCodeGetInterfaceVirtualMethodDeclaration.cs │ │ ├── CCodeGetInterfaceVirtualMethodDefinition.cs │ │ ├── CCodeInterfaceCastOperatorDeclaration.cs │ │ └── CCodeInterfaceWrapperClass.cs │ │ ├── MethodBodies.cs │ │ └── MethodsTable │ │ ├── CCodeBoxRefDeclaration.cs │ │ ├── CCodeGetTypeDeclaration.cs │ │ ├── CCodeMethodsTableClass.cs │ │ ├── CCodeNewDeclaration.cs │ │ └── CCodeUnboxToDeclaration.cs ├── DOM2 │ ├── Access.cs │ ├── AddressOfOperator.cs │ ├── ArgList.cs │ ├── ArgListOperator.cs │ ├── ArrayAccess.cs │ ├── ArrayCreation.cs │ ├── ArrayInitialization.cs │ ├── ArrayLength.cs │ ├── AsOperator.cs │ ├── AssignmentOperator.cs │ ├── Base.cs │ ├── BaseReference.cs │ ├── BinaryOperator.cs │ ├── Block.cs │ ├── BlockStatement.cs │ ├── BreakStatement.cs │ ├── Call.cs │ ├── Cast.cs │ ├── CatchBlock.cs │ ├── ConditionalGoto.cs │ ├── ConditionalOperator.cs │ ├── ConditionalReceiver.cs │ ├── ContinueStatement.cs │ ├── Conversion.cs │ ├── DefaultOperator.cs │ ├── DelegateCreationExpression.cs │ ├── DoStatement.cs │ ├── ElementAccessExpression.cs │ ├── Expression.cs │ ├── ExpressionStatement.cs │ ├── FieldAccess.cs │ ├── ForEachIteratorStatement.cs │ ├── ForEachSimpleArrayStatement.cs │ ├── ForStatement.cs │ ├── GotoStatement.cs │ ├── IfStatement.cs │ ├── IsOperator.cs │ ├── IteratorScope.cs │ ├── Kinds.cs │ ├── Label.cs │ ├── LabelStatement.cs │ ├── LambdaCall.cs │ ├── LambdaExpression.cs │ ├── Literal.cs │ ├── Local.cs │ ├── LoweredConditionalAccess.cs │ ├── MakeRefOperator.cs │ ├── MethodBody.cs │ ├── MethodGroup.cs │ ├── MethodPointer.cs │ ├── NoOpStatement.cs │ ├── NullCoalescingOperator.cs │ ├── ObjectCreationExpression.cs │ ├── Parameter.cs │ ├── Parenthesis.cs │ ├── PointerIndirectionOperator.cs │ ├── PostfixUnaryExpression.cs │ ├── PrefixPostfixUnaryExpressionBase.cs │ ├── PrefixUnaryExpression.cs │ ├── RefTypeOperator.cs │ ├── RefValueOperator.cs │ ├── ReturnStatement.cs │ ├── SideEffectsAsLambdaCallExpression.cs │ ├── SizeOfOperator.cs │ ├── StackAllocArrayCreation.cs │ ├── Statement.cs │ ├── SwitchLabel.cs │ ├── SwitchSection.cs │ ├── SwitchStatement.cs │ ├── ThisReference.cs │ ├── ThrowExpression.cs │ ├── ThrowStatement.cs │ ├── TryStatement.cs │ ├── TypeDefStatement.cs │ ├── TypeExpression.cs │ ├── TypeOfOperator.cs │ ├── UnaryAssignmentOperator.cs │ ├── UnaryOperator.cs │ ├── VariableDeclaration.cs │ └── WhileStatement.cs ├── Helpers.cs ├── Il2Converter.cs ├── Il2Native.Logic.csproj ├── Il2Native.Logic.csproj.user ├── NativeImplementations │ ├── CoreLib │ │ ├── Microsoft │ │ │ └── Win32 │ │ │ │ └── Win32Native.cpp │ │ └── System │ │ │ ├── Array.cpp │ │ │ ├── Buffer.cpp │ │ │ ├── DateTime.cpp │ │ │ ├── Diagnostics │ │ │ └── Debugger.cpp │ │ │ ├── Environment.cpp │ │ │ ├── GC.cpp │ │ │ ├── Math.cpp │ │ │ ├── ModuleHandle.cpp │ │ │ ├── Number.cpp │ │ │ ├── Object.cpp │ │ │ ├── Runtime │ │ │ ├── CompilerServices │ │ │ │ ├── JitHelpers.hpp │ │ │ │ └── RuntimeHelpers.cpp │ │ │ └── InteropServices │ │ │ │ └── Marshal.cpp │ │ │ ├── RuntimeTypeHandle.cpp │ │ │ ├── String.cpp │ │ │ ├── Threading │ │ │ ├── Interlocked.cpp │ │ │ ├── Interlocked.hpp │ │ │ ├── Monitor.cpp │ │ │ ├── Thread.cpp │ │ │ └── WaitHandle.cpp │ │ │ └── TypedReference.cpp │ ├── System.Console │ │ ├── Interop_Kernel32.cpp │ │ └── Interop_User32.cpp │ └── System.Private.CoreLib │ │ ├── Internal │ │ └── Runtime │ │ │ └── Augments │ │ │ └── RuntimeThread.cpp │ │ ├── Interop_BCrypt.cpp │ │ ├── Interop_Crypt32.cpp │ │ ├── Interop_Kernel32.cpp │ │ ├── Interop_Normaliz.cpp │ │ ├── Interop_OleAut32.cpp │ │ ├── Interop_User32.cpp │ │ ├── Microsoft │ │ └── Win32 │ │ │ ├── OAVariantLib.cpp │ │ │ ├── SafeHandles │ │ │ └── SafeRegistryHandle.cpp │ │ │ ├── UnsafeNativeMethods.cpp │ │ │ ├── UnsafeNativeMethods_ManifestEtw.cpp │ │ │ └── Win32Native.cpp │ │ ├── System.Private.CoreLib.cpp │ │ ├── System │ │ ├── AppDomain.cpp │ │ ├── AppDomainManager.cpp │ │ ├── Array.cpp │ │ ├── BCLDebug.cpp │ │ ├── Buffer.cpp │ │ ├── CLRConfig.cpp │ │ ├── Currency.cpp │ │ ├── DateTime.cpp │ │ ├── Decimal.cpp │ │ ├── DefaultBinder.cpp │ │ ├── Delegate.cpp │ │ ├── Diagnostics │ │ │ ├── Assert.cpp │ │ │ ├── Debugger.cpp │ │ │ ├── Log.cpp │ │ │ └── StackTrace.cpp │ │ ├── Enum.cpp │ │ ├── Environment.cpp │ │ ├── Exception.cpp │ │ ├── GC.cpp │ │ ├── Globalization │ │ │ ├── CompareInfo.cpp │ │ │ └── EncodingTable.cpp │ │ ├── IO │ │ │ ├── FileLoadException.cpp │ │ │ └── Stream.cpp │ │ ├── Math.cpp │ │ ├── MathF.cpp │ │ ├── MissingMemberException.cpp │ │ ├── ModuleHandle.cpp │ │ ├── Number.cpp │ │ ├── Object.cpp │ │ ├── ParseNumbers.cpp │ │ ├── Reflection │ │ │ ├── AssemblyName.cpp │ │ │ ├── CustomAttribute.cpp │ │ │ ├── CustomAttributeEncodedArgument.cpp │ │ │ ├── Emit │ │ │ │ ├── AssemblyBuilder.cpp │ │ │ │ ├── ModuleBuilder.cpp │ │ │ │ ├── PunkSafeHandle.cpp │ │ │ │ ├── TypeBuilder.cpp │ │ │ │ └── TypeNameBuilder.cpp │ │ │ ├── LoaderAllocatorScout.cpp │ │ │ ├── Metadata │ │ │ │ └── AssemblyExtensions.cpp │ │ │ ├── MetadataImport.cpp │ │ │ ├── RtFieldInfo.cpp │ │ │ ├── RuntimeAssembly.cpp │ │ │ └── RuntimeModule.cpp │ │ ├── Resources │ │ │ └── ManifestBasedResourceGroveler.cpp │ │ ├── Runtime │ │ │ ├── CompilerServices │ │ │ │ ├── DependentHandle.cpp │ │ │ │ ├── JitHelpers.cpp │ │ │ │ ├── JitHelpers.hpp │ │ │ │ └── RuntimeHelpers.cpp │ │ │ ├── InteropServices │ │ │ │ ├── ArrayWithOffset.cpp │ │ │ │ ├── CriticalHandle.cpp │ │ │ │ ├── GCHandle.cpp │ │ │ │ ├── Marshal.cpp │ │ │ │ ├── RuntimeEnvironment.cpp │ │ │ │ ├── SafeBuffer.cpp │ │ │ │ ├── SafeHandle.cpp │ │ │ │ └── WindowsRuntime │ │ │ │ │ ├── RuntimeClass.cpp │ │ │ │ │ ├── UnsafeNativeMethods.cpp │ │ │ │ │ └── WindowsRuntimeBufferHelper.cpp │ │ │ ├── Loader │ │ │ │ └── AssemblyLoadContext.cpp │ │ │ ├── MemoryFailPoint.cpp │ │ │ ├── RuntimeImports.cpp │ │ │ └── Serialization │ │ │ │ └── FormatterServices.cpp │ │ ├── RuntimeFieldHandle.cpp │ │ ├── RuntimeMethodHandle.cpp │ │ ├── RuntimeType.cpp │ │ ├── RuntimeTypeHandle.cpp │ │ ├── SafeTypeNameParserHandle.cpp │ │ ├── Signature.cpp │ │ ├── String.cpp │ │ ├── StubHelpers │ │ │ ├── DateMarshaler.cpp │ │ │ ├── EventArgsMarshaler.cpp │ │ │ ├── InterfaceMarshaler.cpp │ │ │ ├── MngdHiddenLengthArrayMarshaler.cpp │ │ │ ├── MngdNativeArrayMarshaler.cpp │ │ │ ├── MngdRefCustomMarshaler.cpp │ │ │ ├── MngdSafeArrayMarshaler.cpp │ │ │ ├── ObjectMarshaler.cpp │ │ │ ├── StubHelpers.cpp │ │ │ ├── UriMarshaler.cpp │ │ │ ├── ValueClassMarshaler.cpp │ │ │ └── WinRTTypeNameConverter.cpp │ │ ├── Text │ │ │ └── StringBuilder.cpp │ │ ├── Threading │ │ │ ├── Interlocked.cpp │ │ │ ├── Monitor.cpp │ │ │ ├── OverlappedData.cpp │ │ │ ├── RegisteredWaitHandleSafe.cpp │ │ │ ├── SynchronizationContext.cpp │ │ │ ├── Thread.cpp │ │ │ ├── ThreadPool.cpp │ │ │ ├── TimerQueue.cpp │ │ │ └── WaitHandle.cpp │ │ ├── Type.cpp │ │ ├── TypeLoadException.cpp │ │ ├── TypeNameParser.cpp │ │ ├── TypedReference.cpp │ │ ├── Utf8String.cpp │ │ ├── ValueType.cpp │ │ ├── Variant.cpp │ │ ├── WeakReference.cpp │ │ └── WeakReferenceT1.hpp │ │ └── Windows │ │ └── Foundation │ │ └── Diagnostics │ │ └── TracingStatusChangedEventArgs.cpp ├── Project │ ├── Helpers.cs │ ├── IntrinsicFunctions.cs │ ├── ProjectLoader.cs │ ├── ProjectProperties.cs │ └── Tasks │ │ ├── FindBestConfigurations.cs │ │ ├── GenerateResourcesCode.cs │ │ └── Task.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Android.mk │ ├── Application.mk │ ├── CoreLibImpl.zip │ ├── PrecompiledHeader.txt │ ├── System_ConsoleImpl.zip │ ├── System_Private_CoreLibImpl.zip │ ├── c_declarations.c │ ├── c_definitions.c │ ├── c_forward_declarations.c │ ├── c_include.c │ ├── c_template_definitions.c │ ├── decimals.cpp │ ├── intrin.cpp │ ├── intrin_template.h │ └── overflow.h ├── Settings.StyleCop ├── StyleCop.Cache └── packages.config ├── Il2Native.sln ├── Il2Native.suo ├── Il2Native ├── App.config ├── Il2Native.CmdLine.csproj ├── Il2Native.CmdLine.csproj.user ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Settings.StyleCop └── packages.config ├── Ll2NativeTests ├── CompilerHelper.cs ├── CoreCLRTests.cs ├── Ll2NativeTests.csproj ├── Ll2NativeTests.csproj.user ├── MSTests.cs ├── MonoLibTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Settings.StyleCop ├── SscliLibTests.cs ├── app.config └── packages.config ├── README.md ├── Shared └── DesktopShim.cs └── packages └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/BinderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/BinderFactory.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/BinderFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/BinderFlags.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Attributes.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Await.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Await.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Constraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Constraints.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Conversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Conversions.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Crefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Crefs.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Deconstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Deconstruct.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Expressions.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Flags.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Initializers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Initializers.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Invocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Invocation.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Lambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Lambda.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Lookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Lookup.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_NameConflicts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_NameConflicts.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Operators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Operators.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Patterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Patterns.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Query.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_QueryErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_QueryErrors.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Statements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Statements.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Symbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Symbols.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Binder_Unsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Binder_Unsafe.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/BlockBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/BlockBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/BuckStopsHereBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/BuckStopsHereBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/CatchClauseBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/CatchClauseBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/ExecutableCodeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/ExecutableCodeBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/ExtensionMethodScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/ExtensionMethodScope.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/FixedStatementBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/FixedStatementBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/ForEachLoopBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/ForEachLoopBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/ForLoopBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/ForLoopBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/HostObjectModeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/HostObjectModeBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/ImportChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/ImportChain.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/Imports.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/InContainerBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/InContainerBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/InMethodBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/InMethodBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LocalBinderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LocalBinderFactory.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LocalScopeBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LocalScopeBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LockBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LockBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LockOrUsingBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LockOrUsingBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LookupOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LookupOptions.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LookupResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LookupResult.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LookupResultKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LookupResultKind.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LookupSymbolsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LookupSymbolsInfo.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/LoopBinderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/LoopBinderContext.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/NameofBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/NameofBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/PatternSwitchBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/PatternSwitchBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/SingleLookupResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/SingleLookupResult.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/SwitchBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/SwitchBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/TypeofBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/TypeofBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/UsingStatementBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/UsingStatementBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/WhileBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/WhileBinder.cs -------------------------------------------------------------------------------- /CSharpSource/Binder/WithParametersBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Binder/WithParametersBinder.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundExpression.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundMethodGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundMethodGroup.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundNode.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundNodes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundNodes.xml -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundQueryClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundQueryClause.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundTreeRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundTreeRewriter.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundTreeVisitors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundTreeVisitors.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/BoundTreeWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/BoundTreeWalker.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/Constructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/Constructors.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/DecisionTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/DecisionTree.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/Expression.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/Formatting.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/GenerateNodes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/GenerateNodes.bat -------------------------------------------------------------------------------- /CSharpSource/BoundTree/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/Statement.cs -------------------------------------------------------------------------------- /CSharpSource/BoundTree/UnboundLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/BoundTree/UnboundLambda.cs -------------------------------------------------------------------------------- /CSharpSource/CSharpCodeAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CSharpCodeAnalysis.csproj -------------------------------------------------------------------------------- /CSharpSource/CSharpCompilationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CSharpCompilationOptions.cs -------------------------------------------------------------------------------- /CSharpSource/CSharpExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CSharpExtensions.cs -------------------------------------------------------------------------------- /CSharpSource/CSharpFileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CSharpFileSystemExtensions.cs -------------------------------------------------------------------------------- /CSharpSource/CSharpParseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CSharpParseOptions.cs -------------------------------------------------------------------------------- /CSharpSource/CSharpResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CSharpResources.Designer.cs -------------------------------------------------------------------------------- /CSharpSource/CSharpResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CSharpResources.resx -------------------------------------------------------------------------------- /CSharpSource/CodeGen/CodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CodeGen/CodeGenerator.cs -------------------------------------------------------------------------------- /CSharpSource/CodeGen/EmitAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CodeGen/EmitAddress.cs -------------------------------------------------------------------------------- /CSharpSource/CodeGen/EmitConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CodeGen/EmitConversion.cs -------------------------------------------------------------------------------- /CSharpSource/CodeGen/EmitExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CodeGen/EmitExpression.cs -------------------------------------------------------------------------------- /CSharpSource/CodeGen/EmitOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CodeGen/EmitOperators.cs -------------------------------------------------------------------------------- /CSharpSource/CodeGen/EmitStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CodeGen/EmitStatement.cs -------------------------------------------------------------------------------- /CSharpSource/CodeGen/Optimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CodeGen/Optimizer.cs -------------------------------------------------------------------------------- /CSharpSource/CommandLine/CSharpCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/CommandLine/CSharpCompiler.cs -------------------------------------------------------------------------------- /CSharpSource/Compilation/QueryClauseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Compilation/QueryClauseInfo.cs -------------------------------------------------------------------------------- /CSharpSource/Compilation/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Compilation/TypeInfo.cs -------------------------------------------------------------------------------- /CSharpSource/Compiler/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Compiler/Compiler.cs -------------------------------------------------------------------------------- /CSharpSource/Compiler/MethodCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Compiler/MethodCompiler.cs -------------------------------------------------------------------------------- /CSharpSource/Declarations/Declaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Declarations/Declaration.cs -------------------------------------------------------------------------------- /CSharpSource/Emitter/Model/SymbolAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Emitter/Model/SymbolAdapter.cs -------------------------------------------------------------------------------- /CSharpSource/Emitter/NoPia/EmbeddedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Emitter/NoPia/EmbeddedEvent.cs -------------------------------------------------------------------------------- /CSharpSource/Emitter/NoPia/EmbeddedField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Emitter/NoPia/EmbeddedField.cs -------------------------------------------------------------------------------- /CSharpSource/Emitter/NoPia/EmbeddedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Emitter/NoPia/EmbeddedType.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/CSDiagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/CSDiagnostic.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/CSDiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/CSDiagnosticInfo.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/ErrorCode.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/ErrorFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/ErrorFacts.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/MessageID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/MessageID.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/MessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/MessageProvider.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/SyntaxDiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/SyntaxDiagnosticInfo.cs -------------------------------------------------------------------------------- /CSharpSource/Errors/XmlParseErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Errors/XmlParseErrorCode.cs -------------------------------------------------------------------------------- /CSharpSource/FlowAnalysis/DataFlowPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/FlowAnalysis/DataFlowPass.cs -------------------------------------------------------------------------------- /CSharpSource/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CSharpSource/LanguageVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/LanguageVersion.cs -------------------------------------------------------------------------------- /CSharpSource/Lowering/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Lowering/Extensions.cs -------------------------------------------------------------------------------- /CSharpSource/Lowering/TempHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Lowering/TempHelpers.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/AbstractLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/AbstractLexer.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/BlendedNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/BlendedNode.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/Blender.Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/Blender.Cursor.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/Blender.Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/Blender.Reader.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/Blender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/Blender.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/CharacterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/CharacterInfo.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/DirectiveParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/DirectiveParser.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/Directives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/Directives.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/LanguageParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/LanguageParser.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/Lexer.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/LexerCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/LexerCache.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/Lexer_StringLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/Lexer_StringLiteral.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/QuickScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/QuickScanner.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/SlidingTextWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/SlidingTextWindow.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/SyntaxFactoryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/SyntaxFactoryContext.cs -------------------------------------------------------------------------------- /CSharpSource/Parser/SyntaxParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Parser/SyntaxParser.cs -------------------------------------------------------------------------------- /CSharpSource/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CSharpSource/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /CSharpSource/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /CSharpSource/SymbolDisplay/ObjectDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/SymbolDisplay/ObjectDisplay.cs -------------------------------------------------------------------------------- /CSharpSource/SymbolDisplay/SymbolDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/SymbolDisplay/SymbolDisplay.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/AbstractTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/AbstractTypeMap.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/AliasSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/AliasSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ArrayTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ArrayTypeSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/AssemblySymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/AssemblySymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/BaseTypeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/BaseTypeAnalysis.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/CompletionPart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/CompletionPart.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ConstantValueUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ConstantValueUtils.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ConstraintsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ConstraintsHelper.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/CustomModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/CustomModifier.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/DiscardSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/DiscardSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/DynamicTypeEraser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/DynamicTypeEraser.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/DynamicTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/DynamicTypeSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/EnumConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/EnumConversions.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ErrorMethodSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ErrorMethodSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ErrorPropertySymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ErrorPropertySymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ErrorTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ErrorTypeSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/EventSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/EventSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/FieldSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/FieldSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/LabelSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/LabelSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/LexicalSortKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/LexicalSortKey.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/LocalSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/LocalSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/MethodSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/MethodSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/MissingModuleSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/MissingModuleSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ModuleSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ModuleSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/MutableTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/MutableTypeMap.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/NamedTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/NamedTypeSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/NamespaceExtent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/NamespaceExtent.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/NamespaceSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/NamespaceSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ParameterSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ParameterSignature.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ParameterSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ParameterSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/PointerTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/PointerTypeSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/PreprocessingSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/PreprocessingSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/PropertySymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/PropertySymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/PublicSymbolTable.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/PublicSymbolTable.cd -------------------------------------------------------------------------------- /CSharpSource/Symbols/RangeVariableSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/RangeVariableSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/RefKindExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/RefKindExtensions.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/ReferenceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/ReferenceManager.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/Source/LambdaSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/Source/LambdaSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/Symbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/SymbolDistinguisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/SymbolDistinguisher.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/SymbolExtensions.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/SymbolVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/SymbolVisitor.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/SymbolVisitor`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/SymbolVisitor`1.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/SymbolVisitor`2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/SymbolVisitor`2.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/Symbol_Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/Symbol_Attributes.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/TypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/TypeMap.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/TypeParameterBounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/TypeParameterBounds.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/TypeParameterSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/TypeParameterSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/TypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/TypeSymbol.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/TypeUnification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/TypeUnification.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/TypeWithModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/TypeWithModifiers.cs -------------------------------------------------------------------------------- /CSharpSource/Symbols/VarianceSafety.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Symbols/VarianceSafety.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/AttributeSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/AttributeSyntax.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/CSharpSyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/CSharpSyntaxNode.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/CSharpSyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/CSharpSyntaxTree.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/GenericNameSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/GenericNameSyntax.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/LambdaUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/LambdaUtilities.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/LookupPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/LookupPosition.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/NameSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/NameSyntax.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/ParameterSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/ParameterSyntax.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SimpleNameSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SimpleNameSyntax.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/Syntax.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/Syntax.xml -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxEquivalence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxEquivalence.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxExtensions.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxFactory.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxFacts.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxKind.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxKindFacts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxKindFacts.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxNodeRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxNodeRemover.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxNormalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxNormalizer.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/SyntaxReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/SyntaxReplacer.cs -------------------------------------------------------------------------------- /CSharpSource/Syntax/TypeSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Syntax/TypeSyntax.cs -------------------------------------------------------------------------------- /CSharpSource/Utilities/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/Utilities/EnumExtensions.cs -------------------------------------------------------------------------------- /CSharpSource/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CSharpSource/packages.config -------------------------------------------------------------------------------- /CoreLib/Common/PinnableBufferCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Common/PinnableBufferCache.cs -------------------------------------------------------------------------------- /CoreLib/CoreLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/CoreLib.csproj -------------------------------------------------------------------------------- /CoreLib/Impl/ArgIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/ArgIterator.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Buffer.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Console.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Decimal.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Delegate.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Environment.cs -------------------------------------------------------------------------------- /CoreLib/Impl/IO/__ConsoleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/IO/__ConsoleStream.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Math.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Number.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Number.cs -------------------------------------------------------------------------------- /CoreLib/Impl/RuntimeTypeHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/RuntimeTypeHandle.cs -------------------------------------------------------------------------------- /CoreLib/Impl/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/String.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Threading/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Threading/Monitor.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Threading/Overlapped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Threading/Overlapped.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Threading/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Threading/Thread.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Threading/ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Threading/ThreadPool.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Threading/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Threading/Timer.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Threading/WaitHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Threading/WaitHandle.cs -------------------------------------------------------------------------------- /CoreLib/Impl/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/Type.cs -------------------------------------------------------------------------------- /CoreLib/Impl/__Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Impl/__Attributes.cs -------------------------------------------------------------------------------- /CoreLib/ImplPAL/Win32/Win32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/ImplPAL/Win32/Win32Native.cs -------------------------------------------------------------------------------- /CoreLib/Microsoft/Win32/Win32Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Microsoft/Win32/Win32Native.cs -------------------------------------------------------------------------------- /CoreLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Action.cs -------------------------------------------------------------------------------- /CoreLib/System/Activator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Activator.cs -------------------------------------------------------------------------------- /CoreLib/System/AggregateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/AggregateException.cs -------------------------------------------------------------------------------- /CoreLib/System/AppContext/AppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/AppContext/AppContext.cs -------------------------------------------------------------------------------- /CoreLib/System/AppDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/AppDomain.cs -------------------------------------------------------------------------------- /CoreLib/System/ApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ApplicationException.cs -------------------------------------------------------------------------------- /CoreLib/System/ArgIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ArgIterator.cs -------------------------------------------------------------------------------- /CoreLib/System/ArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ArgumentException.cs -------------------------------------------------------------------------------- /CoreLib/System/ArgumentNullException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ArgumentNullException.cs -------------------------------------------------------------------------------- /CoreLib/System/ArithmeticException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ArithmeticException.cs -------------------------------------------------------------------------------- /CoreLib/System/Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Array.cs -------------------------------------------------------------------------------- /CoreLib/System/ArraySegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ArraySegment.cs -------------------------------------------------------------------------------- /CoreLib/System/AssemblyInfo2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/AssemblyInfo2.cs -------------------------------------------------------------------------------- /CoreLib/System/AsyncCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/AsyncCallback.cs -------------------------------------------------------------------------------- /CoreLib/System/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Attribute.cs -------------------------------------------------------------------------------- /CoreLib/System/AttributeTargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/AttributeTargets.cs -------------------------------------------------------------------------------- /CoreLib/System/BCLDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/BCLDebug.cs -------------------------------------------------------------------------------- /CoreLib/System/BitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/BitConverter.cs -------------------------------------------------------------------------------- /CoreLib/System/Boolean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Boolean.cs -------------------------------------------------------------------------------- /CoreLib/System/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Buffer.cs -------------------------------------------------------------------------------- /CoreLib/System/Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Byte.cs -------------------------------------------------------------------------------- /CoreLib/System/CLSCompliantAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/CLSCompliantAttribute.cs -------------------------------------------------------------------------------- /CoreLib/System/Char.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Char.cs -------------------------------------------------------------------------------- /CoreLib/System/CharEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/CharEnumerator.cs -------------------------------------------------------------------------------- /CoreLib/System/Collections/ArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Collections/ArrayList.cs -------------------------------------------------------------------------------- /CoreLib/System/Collections/Comparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Collections/Comparer.cs -------------------------------------------------------------------------------- /CoreLib/System/Collections/HashTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Collections/HashTable.cs -------------------------------------------------------------------------------- /CoreLib/System/Collections/IComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Collections/IComparer.cs -------------------------------------------------------------------------------- /CoreLib/System/Collections/IList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Collections/IList.cs -------------------------------------------------------------------------------- /CoreLib/System/Collections/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Collections/Queue.cs -------------------------------------------------------------------------------- /CoreLib/System/Collections/stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Collections/stack.cs -------------------------------------------------------------------------------- /CoreLib/System/CompatibilitySwitches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/CompatibilitySwitches.cs -------------------------------------------------------------------------------- /CoreLib/System/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Console.cs -------------------------------------------------------------------------------- /CoreLib/System/ConsoleCancelEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ConsoleCancelEventArgs.cs -------------------------------------------------------------------------------- /CoreLib/System/ConsoleColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ConsoleColor.cs -------------------------------------------------------------------------------- /CoreLib/System/ConsoleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ConsoleKey.cs -------------------------------------------------------------------------------- /CoreLib/System/ConsoleKeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ConsoleKeyInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/ConsoleModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ConsoleModifiers.cs -------------------------------------------------------------------------------- /CoreLib/System/ConsoleSpecialKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ConsoleSpecialKey.cs -------------------------------------------------------------------------------- /CoreLib/System/ContextBoundObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ContextBoundObject.cs -------------------------------------------------------------------------------- /CoreLib/System/Convert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Convert.cs -------------------------------------------------------------------------------- /CoreLib/System/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Currency.cs -------------------------------------------------------------------------------- /CoreLib/System/DBNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/DBNull.cs -------------------------------------------------------------------------------- /CoreLib/System/DateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/DateTime.cs -------------------------------------------------------------------------------- /CoreLib/System/DateTimeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/DateTimeKind.cs -------------------------------------------------------------------------------- /CoreLib/System/DayOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/DayOfWeek.cs -------------------------------------------------------------------------------- /CoreLib/System/Decimal.DecCalc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Decimal.DecCalc.cs -------------------------------------------------------------------------------- /CoreLib/System/Decimal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Decimal.cs -------------------------------------------------------------------------------- /CoreLib/System/DefaultBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/DefaultBinder.cs -------------------------------------------------------------------------------- /CoreLib/System/Delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Delegate.cs -------------------------------------------------------------------------------- /CoreLib/System/Diagnostics/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Diagnostics/Debugger.cs -------------------------------------------------------------------------------- /CoreLib/System/Diagnostics/Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Diagnostics/Stopwatch.cs -------------------------------------------------------------------------------- /CoreLib/System/DivideByZeroException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/DivideByZeroException.cs -------------------------------------------------------------------------------- /CoreLib/System/Double.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Double.cs -------------------------------------------------------------------------------- /CoreLib/System/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Empty.cs -------------------------------------------------------------------------------- /CoreLib/System/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Enum.cs -------------------------------------------------------------------------------- /CoreLib/System/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Environment.cs -------------------------------------------------------------------------------- /CoreLib/System/EventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/EventArgs.cs -------------------------------------------------------------------------------- /CoreLib/System/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/EventHandler.cs -------------------------------------------------------------------------------- /CoreLib/System/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Exception.cs -------------------------------------------------------------------------------- /CoreLib/System/FieldAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/FieldAccessException.cs -------------------------------------------------------------------------------- /CoreLib/System/FlagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/FlagsAttribute.cs -------------------------------------------------------------------------------- /CoreLib/System/FormatException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/FormatException.cs -------------------------------------------------------------------------------- /CoreLib/System/GC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/GC.cs -------------------------------------------------------------------------------- /CoreLib/System/Guid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Guid.cs -------------------------------------------------------------------------------- /CoreLib/System/IAppDomainPauseManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IAppDomainPauseManager.cs -------------------------------------------------------------------------------- /CoreLib/System/IAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IAsyncResult.cs -------------------------------------------------------------------------------- /CoreLib/System/ICloneable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ICloneable.cs -------------------------------------------------------------------------------- /CoreLib/System/IComparable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IComparable.cs -------------------------------------------------------------------------------- /CoreLib/System/IConvertible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IConvertible.cs -------------------------------------------------------------------------------- /CoreLib/System/ICustomFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ICustomFormatter.cs -------------------------------------------------------------------------------- /CoreLib/System/IDisposable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IDisposable.cs -------------------------------------------------------------------------------- /CoreLib/System/IEquatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IEquatable.cs -------------------------------------------------------------------------------- /CoreLib/System/IFormatProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IFormatProvider.cs -------------------------------------------------------------------------------- /CoreLib/System/IFormattable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IFormattable.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/BinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/BinaryReader.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/BinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/BinaryWriter.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/BufferedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/BufferedStream.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/Directory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/Directory.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/DirectoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/DirectoryInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/DriveInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/DriveInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/File.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileAccess.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileAttributes.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileMode.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileOptions.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileSecurityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileSecurityState.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileShare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileShare.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileStream.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/FileSystemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/FileSystemInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/IOException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/IOException.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/MemoryStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/MemoryStream.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/Path.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/Path.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/PathHelper.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/ReadLinesIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/ReadLinesIterator.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/SearchOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/SearchOption.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/SeekOrigin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/SeekOrigin.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/Stream.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/StreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/StreamReader.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/StreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/StreamWriter.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/StringReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/StringReader.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/StringWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/StringWriter.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/TextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/TextReader.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/TextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/TextWriter.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/__ConsoleStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/__ConsoleStream.cs -------------------------------------------------------------------------------- /CoreLib/System/IO/__Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IO/__Error.cs -------------------------------------------------------------------------------- /CoreLib/System/Int16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Int16.cs -------------------------------------------------------------------------------- /CoreLib/System/Int32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Int32.cs -------------------------------------------------------------------------------- /CoreLib/System/Int64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Int64.cs -------------------------------------------------------------------------------- /CoreLib/System/IntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/IntPtr.cs -------------------------------------------------------------------------------- /CoreLib/System/InvalidCastException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/InvalidCastException.cs -------------------------------------------------------------------------------- /CoreLib/System/Linq/Enumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Linq/Enumerable.cs -------------------------------------------------------------------------------- /CoreLib/System/Linq/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Linq/Error.cs -------------------------------------------------------------------------------- /CoreLib/System/Linq/IQueryable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Linq/IQueryable.cs -------------------------------------------------------------------------------- /CoreLib/System/Linq/LambdaExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Linq/LambdaExpression.cs -------------------------------------------------------------------------------- /CoreLib/System/Linq/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Linq/SR.cs -------------------------------------------------------------------------------- /CoreLib/System/Linq/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Linq/Strings.cs -------------------------------------------------------------------------------- /CoreLib/System/MarshalByRefObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/MarshalByRefObject.cs -------------------------------------------------------------------------------- /CoreLib/System/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Math.cs -------------------------------------------------------------------------------- /CoreLib/System/MemberAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/MemberAccessException.cs -------------------------------------------------------------------------------- /CoreLib/System/MidpointRounding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/MidpointRounding.cs -------------------------------------------------------------------------------- /CoreLib/System/MissingFieldException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/MissingFieldException.cs -------------------------------------------------------------------------------- /CoreLib/System/MissingMemberException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/MissingMemberException.cs -------------------------------------------------------------------------------- /CoreLib/System/MissingMethodException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/MissingMethodException.cs -------------------------------------------------------------------------------- /CoreLib/System/MulticastDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/MulticastDelegate.cs -------------------------------------------------------------------------------- /CoreLib/System/NonSerializedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/NonSerializedAttribute.cs -------------------------------------------------------------------------------- /CoreLib/System/NotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/NotSupportedException.cs -------------------------------------------------------------------------------- /CoreLib/System/NullReferenceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/NullReferenceException.cs -------------------------------------------------------------------------------- /CoreLib/System/Nullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Nullable.cs -------------------------------------------------------------------------------- /CoreLib/System/Number.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Number.cs -------------------------------------------------------------------------------- /CoreLib/System/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Object.cs -------------------------------------------------------------------------------- /CoreLib/System/ObsoleteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ObsoleteAttribute.cs -------------------------------------------------------------------------------- /CoreLib/System/OperatingSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/OperatingSystem.cs -------------------------------------------------------------------------------- /CoreLib/System/OutOfMemoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/OutOfMemoryException.cs -------------------------------------------------------------------------------- /CoreLib/System/OverflowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/OverflowException.cs -------------------------------------------------------------------------------- /CoreLib/System/ParamArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ParamArrayAttribute.cs -------------------------------------------------------------------------------- /CoreLib/System/ParamsArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ParamsArray.cs -------------------------------------------------------------------------------- /CoreLib/System/ParseNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ParseNumbers.cs -------------------------------------------------------------------------------- /CoreLib/System/PlatformID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/PlatformID.cs -------------------------------------------------------------------------------- /CoreLib/System/RankException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/RankException.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/Assembly.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/Associates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/Associates.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/Binder.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/EventInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/FieldInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/FieldInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/IReflect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/IReflect.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/MdConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/MdConstant.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/MdImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/MdImport.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/MemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/MemberInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/MemberTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/MemberTypes.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/MethodBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/MethodBase.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/MethodInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/Missing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/Missing.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/Module.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/Pointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/Pointer.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/TypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/TypeFilter.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/TypeInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/Reflection/__Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Reflection/__Filters.cs -------------------------------------------------------------------------------- /CoreLib/System/RtType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/RtType.cs -------------------------------------------------------------------------------- /CoreLib/System/RuntimeArgumentHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/RuntimeArgumentHandle.cs -------------------------------------------------------------------------------- /CoreLib/System/RuntimeHandles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/RuntimeHandles.cs -------------------------------------------------------------------------------- /CoreLib/System/SByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/SByte.cs -------------------------------------------------------------------------------- /CoreLib/System/Security/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Security/Attributes.cs -------------------------------------------------------------------------------- /CoreLib/System/Security/SecurityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Security/SecurityState.cs -------------------------------------------------------------------------------- /CoreLib/System/SerializableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/SerializableAttribute.cs -------------------------------------------------------------------------------- /CoreLib/System/Single.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Single.cs -------------------------------------------------------------------------------- /CoreLib/System/String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/String.cs -------------------------------------------------------------------------------- /CoreLib/System/StringComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/StringComparer.cs -------------------------------------------------------------------------------- /CoreLib/System/StringComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/StringComparison.cs -------------------------------------------------------------------------------- /CoreLib/System/SystemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/SystemException.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/ASCIIEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/ASCIIEncoding.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/Decoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/Decoder.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/DecoderFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/DecoderFallback.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/DecoderNLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/DecoderNLS.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/Encoder.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/EncoderFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/EncoderFallback.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/EncoderNLS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/EncoderNLS.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/Encoding.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/EncodingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/EncodingInfo.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/Normalization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/Normalization.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/StringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/StringBuilder.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/UTF8Encoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/UTF8Encoding.cs -------------------------------------------------------------------------------- /CoreLib/System/Text/UnicodeEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Text/UnicodeEncoding.cs -------------------------------------------------------------------------------- /CoreLib/System/ThreadAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ThreadAttributes.cs -------------------------------------------------------------------------------- /CoreLib/System/ThreadStaticAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ThreadStaticAttribute.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/AsyncLocal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/AsyncLocal.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Interlocked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Interlocked.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Monitor.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Mutex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Mutex.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Overlapped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Overlapped.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/SpinLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/SpinLock.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/SpinWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/SpinWait.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Tasks/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Tasks/Task.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Tasks/future.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Tasks/future.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Thread.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/ThreadPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/ThreadPool.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/ThreadStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/ThreadStart.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/ThreadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/ThreadState.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Timeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Timeout.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Timer.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/Volatile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/Volatile.cs -------------------------------------------------------------------------------- /CoreLib/System/Threading/WaitHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Threading/WaitHandle.cs -------------------------------------------------------------------------------- /CoreLib/System/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ThrowHelper.cs -------------------------------------------------------------------------------- /CoreLib/System/TimeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/TimeSpan.cs -------------------------------------------------------------------------------- /CoreLib/System/TimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/TimeZone.cs -------------------------------------------------------------------------------- /CoreLib/System/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Tuple.cs -------------------------------------------------------------------------------- /CoreLib/System/Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Type.cs -------------------------------------------------------------------------------- /CoreLib/System/TypeCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/TypeCode.cs -------------------------------------------------------------------------------- /CoreLib/System/TypeLoadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/TypeLoadException.cs -------------------------------------------------------------------------------- /CoreLib/System/TypedReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/TypedReference.cs -------------------------------------------------------------------------------- /CoreLib/System/UInt16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/UInt16.cs -------------------------------------------------------------------------------- /CoreLib/System/UInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/UInt32.cs -------------------------------------------------------------------------------- /CoreLib/System/UInt64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/UInt64.cs -------------------------------------------------------------------------------- /CoreLib/System/UIntPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/UIntPtr.cs -------------------------------------------------------------------------------- /CoreLib/System/ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/ValueType.cs -------------------------------------------------------------------------------- /CoreLib/System/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Version.cs -------------------------------------------------------------------------------- /CoreLib/System/Void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/Void.cs -------------------------------------------------------------------------------- /CoreLib/System/WeakReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/WeakReference.cs -------------------------------------------------------------------------------- /CoreLib/System/_LocalDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/_LocalDataStore.cs -------------------------------------------------------------------------------- /CoreLib/System/_LocalDataStoreMgr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/_LocalDataStoreMgr.cs -------------------------------------------------------------------------------- /CoreLib/System/__Filters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/__Filters.cs -------------------------------------------------------------------------------- /CoreLib/System/__HResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/__HResults.cs -------------------------------------------------------------------------------- /CoreLib/System/random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreLib/System/random.cs -------------------------------------------------------------------------------- /CoreSource/AdditionalTextFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/AdditionalTextFile.cs -------------------------------------------------------------------------------- /CoreSource/AssemblyUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/AssemblyUtilities.cs -------------------------------------------------------------------------------- /CoreSource/CaseInsensitiveComparison.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CaseInsensitiveComparison.cs -------------------------------------------------------------------------------- /CoreSource/CodeAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeAnalysis.csproj -------------------------------------------------------------------------------- /CoreSource/CodeAnalysisResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeAnalysisResources.resx -------------------------------------------------------------------------------- /CoreSource/CodeGen/ArrayMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ArrayMembers.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/BasicBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/BasicBlock.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ClosureDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ClosureDebugInfo.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/DebugId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/DebugId.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/EmitState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/EmitState.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ILBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ILBuilder.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ILBuilderEmit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ILBuilderEmit.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ILEmitStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ILEmitStyle.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ILOpCodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ILOpCodeExtensions.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ITokenDeferral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ITokenDeferral.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ItemTokenMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ItemTokenMap.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LabelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LabelInfo.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LambdaDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LambdaDebugInfo.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LocalDebugId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LocalDebugId.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LocalDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LocalDefinition.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LocalOrParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LocalOrParameter.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LocalScopeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LocalScopeManager.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LocalSlotDebugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LocalSlotDebugInfo.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/LocalSlotManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/LocalSlotManager.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/MetadataConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/MetadataConstant.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/MetadataTypeOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/MetadataTypeOf.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/MethodBody.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/RawSequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/RawSequencePoint.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/ScopeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/ScopeType.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/SequencePointList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/SequencePointList.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/TokenMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/TokenMap.cs -------------------------------------------------------------------------------- /CoreSource/CodeGen/Win32Res.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CodeGen/Win32Res.cs -------------------------------------------------------------------------------- /CoreSource/Collections/ArrayElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/ArrayElement.cs -------------------------------------------------------------------------------- /CoreSource/Collections/BitVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/BitVector.cs -------------------------------------------------------------------------------- /CoreSource/Collections/Boxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/Boxes.cs -------------------------------------------------------------------------------- /CoreSource/Collections/CachingFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/CachingFactory.cs -------------------------------------------------------------------------------- /CoreSource/Collections/Grouping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/Grouping.cs -------------------------------------------------------------------------------- /CoreSource/Collections/KeyedStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/KeyedStack.cs -------------------------------------------------------------------------------- /CoreSource/Collections/OrderedSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/OrderedSet.cs -------------------------------------------------------------------------------- /CoreSource/Collections/StaticCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Collections/StaticCast.cs -------------------------------------------------------------------------------- /CoreSource/CommandLine/CommonCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CommandLine/CommonCompiler.cs -------------------------------------------------------------------------------- /CoreSource/CommandLine/ErrorLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CommandLine/ErrorLogger.cs -------------------------------------------------------------------------------- /CoreSource/CommitHashAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CommitHashAttribute.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/Compilation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/Compilation.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/EmitResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/EmitResult.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/Expression.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/Extensions.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/LoadDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/LoadDirective.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/ParseOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/ParseOptions.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/Platform.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/SemanticModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/SemanticModel.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/Statement.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/SymbolFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/SymbolFilter.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/SymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/SymbolInfo.cs -------------------------------------------------------------------------------- /CoreSource/Compilation/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Compilation/TypeInfo.cs -------------------------------------------------------------------------------- /CoreSource/ConstantValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/ConstantValue.cs -------------------------------------------------------------------------------- /CoreSource/ConstantValueSpecialized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/ConstantValueSpecialized.cs -------------------------------------------------------------------------------- /CoreSource/CorLightup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CorLightup.cs -------------------------------------------------------------------------------- /CoreSource/CryptographicHashProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CryptographicHashProvider.cs -------------------------------------------------------------------------------- /CoreSource/CvtRes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/CvtRes.cs -------------------------------------------------------------------------------- /CoreSource/Desktop/AssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Desktop/AssemblyVersion.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/Diagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/Diagnostic.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/DiagnosticBag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/DiagnosticBag.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/DiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/DiagnosticInfo.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/Location.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/LocationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/LocationKind.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/NoLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/NoLocation.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/SourceLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/SourceLocation.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/SuppressionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/SuppressionInfo.cs -------------------------------------------------------------------------------- /CoreSource/Diagnostic/XmlLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Diagnostic/XmlLocation.cs -------------------------------------------------------------------------------- /CoreSource/DocumentationCommentId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/DocumentationCommentId.cs -------------------------------------------------------------------------------- /CoreSource/DocumentationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/DocumentationMode.cs -------------------------------------------------------------------------------- /CoreSource/EmbeddedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/EmbeddedText.cs -------------------------------------------------------------------------------- /CoreSource/Emit/AnonymousTypeKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/AnonymousTypeKey.cs -------------------------------------------------------------------------------- /CoreSource/Emit/AnonymousTypeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/AnonymousTypeValue.cs -------------------------------------------------------------------------------- /CoreSource/Emit/CommonPEModuleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/CommonPEModuleBuilder.cs -------------------------------------------------------------------------------- /CoreSource/Emit/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/Context.cs -------------------------------------------------------------------------------- /CoreSource/Emit/DebugDocumentsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/DebugDocumentsBuilder.cs -------------------------------------------------------------------------------- /CoreSource/Emit/EmitOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/EmitOptions.cs -------------------------------------------------------------------------------- /CoreSource/Emit/ErrorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/ErrorType.cs -------------------------------------------------------------------------------- /CoreSource/Emit/InstrumentationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/InstrumentationKind.cs -------------------------------------------------------------------------------- /CoreSource/Emit/NoPia/VtblGap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/NoPia/VtblGap.cs -------------------------------------------------------------------------------- /CoreSource/Emit/SemanticEdit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/SemanticEdit.cs -------------------------------------------------------------------------------- /CoreSource/Emit/SemanticEditKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Emit/SemanticEditKind.cs -------------------------------------------------------------------------------- /CoreSource/EncodedStringText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/EncodedStringText.cs -------------------------------------------------------------------------------- /CoreSource/EnumConstantHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/EnumConstantHelper.cs -------------------------------------------------------------------------------- /CoreSource/FileKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/FileKey.cs -------------------------------------------------------------------------------- /CoreSource/FileSystem/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/FileSystem/FileUtilities.cs -------------------------------------------------------------------------------- /CoreSource/FileSystem/PathKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/FileSystem/PathKind.cs -------------------------------------------------------------------------------- /CoreSource/FileSystem/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/FileSystem/PathUtilities.cs -------------------------------------------------------------------------------- /CoreSource/FileSystemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/FileSystemExtensions.cs -------------------------------------------------------------------------------- /CoreSource/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/GlobalSuppressions.cs -------------------------------------------------------------------------------- /CoreSource/InternalUtilities/FailFast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/InternalUtilities/FailFast.cs -------------------------------------------------------------------------------- /CoreSource/InternalUtilities/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/InternalUtilities/Hash.cs -------------------------------------------------------------------------------- /CoreSource/InternalUtilities/WeakList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/InternalUtilities/WeakList.cs -------------------------------------------------------------------------------- /CoreSource/Interop/ClrStrongName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Interop/ClrStrongName.cs -------------------------------------------------------------------------------- /CoreSource/Interop/IClrMetaHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Interop/IClrMetaHost.cs -------------------------------------------------------------------------------- /CoreSource/Interop/IClrRuntimeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Interop/IClrRuntimeInfo.cs -------------------------------------------------------------------------------- /CoreSource/Interop/IClrStrongName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Interop/IClrStrongName.cs -------------------------------------------------------------------------------- /CoreSource/Interop/IVsSQM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Interop/IVsSQM.cs -------------------------------------------------------------------------------- /CoreSource/MemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/MemberDescriptor.cs -------------------------------------------------------------------------------- /CoreSource/MetadataReader/PEAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/MetadataReader/PEAssembly.cs -------------------------------------------------------------------------------- /CoreSource/MetadataReader/PEModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/MetadataReader/PEModule.cs -------------------------------------------------------------------------------- /CoreSource/MetadataReference/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/MetadataReference/Metadata.cs -------------------------------------------------------------------------------- /CoreSource/NativePdbWriter/PdbWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/NativePdbWriter/PdbWriter.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ArgumentKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ArgumentKind.cs -------------------------------------------------------------------------------- /CoreSource/Operations/BranchKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/BranchKind.cs -------------------------------------------------------------------------------- /CoreSource/Operations/CaseKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/CaseKind.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ConversionKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ConversionKind.cs -------------------------------------------------------------------------------- /CoreSource/Operations/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/Expressions.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IArgument.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IBlockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IBlockStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ICaseClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ICaseClause.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ICatchClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ICatchClause.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IEmptyStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IEmptyStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IEndStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IEndStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IFixedStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IFixedStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IIfStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IIfStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ILabelStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ILabelStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ILockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ILockStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ILoopStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ILoopStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IOperation.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IOperationKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IOperationKind.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IStopStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IStopStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ISwitchCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ISwitchCase.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IThrowStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IThrowStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/ITryStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/ITryStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IUsingStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IUsingStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/IWithStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/IWithStatement.cs -------------------------------------------------------------------------------- /CoreSource/Operations/LoopKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/LoopKind.cs -------------------------------------------------------------------------------- /CoreSource/Operations/OperationWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Operations/OperationWalker.cs -------------------------------------------------------------------------------- /CoreSource/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Optional.cs -------------------------------------------------------------------------------- /CoreSource/OutputKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/OutputKind.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/Constants.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/Core.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/DebugSourceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/DebugSourceInfo.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/ExportedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/ExportedType.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/Expressions.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/ICustomAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/ICustomAttribute.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/IFileReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/IFileReference.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/IImportScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/IImportScope.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/LocalScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/LocalScope.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/ManagedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/ManagedResource.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/MemberRefComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/MemberRefComparer.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/Members.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/Members.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/MetadataVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/MetadataVisitor.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/MetadataWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/MetadataWriter.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/Miscellaneous.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/Miscellaneous.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/PeWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/PeWriter.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/PooledBlobBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/PooledBlobBuilder.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/ReferenceIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/ReferenceIndexer.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/RootModuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/RootModuleType.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/SequencePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/SequencePoint.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/SourceSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/SourceSpan.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/TypeLibTypeFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/TypeLibTypeFlags.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/TypeSpecComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/TypeSpecComparer.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/Types.cs -------------------------------------------------------------------------------- /CoreSource/PEWriter/Units.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PEWriter/Units.cs -------------------------------------------------------------------------------- /CoreSource/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CoreSource/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /CoreSource/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /CoreSource/RealParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/RealParser.cs -------------------------------------------------------------------------------- /CoreSource/ResourceDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/ResourceDescription.cs -------------------------------------------------------------------------------- /CoreSource/ResourceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/ResourceException.cs -------------------------------------------------------------------------------- /CoreSource/RuleSet/RuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/RuleSet/RuleSet.cs -------------------------------------------------------------------------------- /CoreSource/RuleSet/RuleSetInclude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/RuleSet/RuleSetInclude.cs -------------------------------------------------------------------------------- /CoreSource/RuleSet/RuleSetProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/RuleSet/RuleSetProcessor.cs -------------------------------------------------------------------------------- /CoreSource/RuleSet/RuleSetSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/RuleSet/RuleSetSchema.xsd -------------------------------------------------------------------------------- /CoreSource/Serialization/ObjectBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Serialization/ObjectBinder.cs -------------------------------------------------------------------------------- /CoreSource/SignatureComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SignatureComparer.cs -------------------------------------------------------------------------------- /CoreSource/SourceCodeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SourceCodeKind.cs -------------------------------------------------------------------------------- /CoreSource/SourceFileResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SourceFileResolver.cs -------------------------------------------------------------------------------- /CoreSource/SpecialMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SpecialMember.cs -------------------------------------------------------------------------------- /CoreSource/SpecialMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SpecialMembers.cs -------------------------------------------------------------------------------- /CoreSource/SpecialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SpecialType.cs -------------------------------------------------------------------------------- /CoreSource/SpecialTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SpecialTypeExtensions.cs -------------------------------------------------------------------------------- /CoreSource/SpecialTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SpecialTypes.cs -------------------------------------------------------------------------------- /CoreSource/StrongName/StrongNameKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/StrongName/StrongNameKeys.cs -------------------------------------------------------------------------------- /CoreSource/SwitchConstantValueHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SwitchConstantValueHelper.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/Accessibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/Accessibility.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/CustomModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/CustomModifier.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IAliasSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IAliasSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IArrayTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IArrayTypeSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IAssemblySymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IAssemblySymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IDiscardSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IDiscardSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IDynamicTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IDynamicTypeSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IErrorTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IErrorTypeSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IEventSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IEventSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IFieldSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IFieldSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/ILabelSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/ILabelSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/ILocalSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/ILocalSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IMethodSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IMethodSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IModuleSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IModuleSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/INamedTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/INamedTypeSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/INamespaceSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/INamespaceSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IParameterSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IParameterSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IPointerTypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IPointerTypeSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/IPropertySymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/IPropertySymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/ISymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/ISymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/ISymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/ISymbolExtensions.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/ITypeSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/ITypeSymbol.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/LanguageNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/LanguageNames.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/MethodKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/MethodKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/NamespaceKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/NamespaceKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/RefKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/RefKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/SymbolKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/SymbolKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/SymbolVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/SymbolVisitor.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/SymbolVisitor`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/SymbolVisitor`1.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/TypeCompareKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/TypeCompareKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/TypeKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/TypeKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/TypeLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/TypeLayout.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/TypeParameterKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/TypeParameterKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/TypedConstant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/TypedConstant.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/TypedConstantKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/TypedConstantKind.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/TypedConstantValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/TypedConstantValue.cs -------------------------------------------------------------------------------- /CoreSource/Symbols/VarianceKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Symbols/VarianceKind.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/ChildSyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/ChildSyntaxList.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/GreenNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/GreenNode.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/GreenNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/GreenNodeExtensions.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/LineDirectiveMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/LineDirectiveMap.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/LineVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/LineVisibility.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SeparatedSyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SeparatedSyntaxList.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxAnnotation.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxDiffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxDiffer.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxList.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxListBuilder.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxListBuilder`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxListBuilder`1.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxList`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxList`1.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxNavigator.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxNode.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxNodeOrToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxNodeOrToken.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxReference.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxRemoveOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxRemoveOptions.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxToken.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxTokenList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxTokenList.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxTree.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxTreeComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxTreeComparer.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxTrivia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxTrivia.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxTriviaList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxTriviaList.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxWalker.cs -------------------------------------------------------------------------------- /CoreSource/Syntax/SyntaxWalkerDepth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Syntax/SyntaxWalkerDepth.cs -------------------------------------------------------------------------------- /CoreSource/SynthesizedLocalKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/SynthesizedLocalKind.cs -------------------------------------------------------------------------------- /CoreSource/Text/ChangedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/ChangedText.cs -------------------------------------------------------------------------------- /CoreSource/Text/CompositeText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/CompositeText.cs -------------------------------------------------------------------------------- /CoreSource/Text/LargeText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/LargeText.cs -------------------------------------------------------------------------------- /CoreSource/Text/LargeTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/LargeTextWriter.cs -------------------------------------------------------------------------------- /CoreSource/Text/LinePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/LinePosition.cs -------------------------------------------------------------------------------- /CoreSource/Text/LinePositionSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/LinePositionSpan.cs -------------------------------------------------------------------------------- /CoreSource/Text/SourceHashAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/SourceHashAlgorithm.cs -------------------------------------------------------------------------------- /CoreSource/Text/SourceText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/SourceText.cs -------------------------------------------------------------------------------- /CoreSource/Text/SourceTextComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/SourceTextComparer.cs -------------------------------------------------------------------------------- /CoreSource/Text/SourceTextContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/SourceTextContainer.cs -------------------------------------------------------------------------------- /CoreSource/Text/SourceTextStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/SourceTextStream.cs -------------------------------------------------------------------------------- /CoreSource/Text/SourceTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/SourceTextWriter.cs -------------------------------------------------------------------------------- /CoreSource/Text/StringBuilderText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/StringBuilderText.cs -------------------------------------------------------------------------------- /CoreSource/Text/StringText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/StringText.cs -------------------------------------------------------------------------------- /CoreSource/Text/StringTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/StringTextWriter.cs -------------------------------------------------------------------------------- /CoreSource/Text/SubText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/SubText.cs -------------------------------------------------------------------------------- /CoreSource/Text/TextChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/TextChange.cs -------------------------------------------------------------------------------- /CoreSource/Text/TextChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/TextChangeEventArgs.cs -------------------------------------------------------------------------------- /CoreSource/Text/TextChangeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/TextChangeRange.cs -------------------------------------------------------------------------------- /CoreSource/Text/TextLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/TextLine.cs -------------------------------------------------------------------------------- /CoreSource/Text/TextLineCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/TextLineCollection.cs -------------------------------------------------------------------------------- /CoreSource/Text/TextSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/TextSpan.cs -------------------------------------------------------------------------------- /CoreSource/Text/TextUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Text/TextUtilities.cs -------------------------------------------------------------------------------- /CoreSource/TextLineSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/TextLineSpan.cs -------------------------------------------------------------------------------- /CoreSource/TreeDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/TreeDumper.cs -------------------------------------------------------------------------------- /CoreSource/VersionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/VersionHelper.cs -------------------------------------------------------------------------------- /CoreSource/WellKnownMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/WellKnownMember.cs -------------------------------------------------------------------------------- /CoreSource/WellKnownMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/WellKnownMembers.cs -------------------------------------------------------------------------------- /CoreSource/WellKnownTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/WellKnownTypes.cs -------------------------------------------------------------------------------- /CoreSource/Xml/XmlCharType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/Xml/XmlCharType.cs -------------------------------------------------------------------------------- /CoreSource/XmlFileResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/XmlFileResolver.cs -------------------------------------------------------------------------------- /CoreSource/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/CoreSource/packages.config -------------------------------------------------------------------------------- /Il2Native.Logic/CCodeFilesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/CCodeFilesGenerator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/CCodeUnitsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/CCodeUnitsBuilder.cs -------------------------------------------------------------------------------- /Il2Native.Logic/CCodeWriterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/CCodeWriterBase.cs -------------------------------------------------------------------------------- /Il2Native.Logic/CCodeWriterText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/CCodeWriterText.cs -------------------------------------------------------------------------------- /Il2Native.Logic/CLangKeywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/CLangKeywords.cs -------------------------------------------------------------------------------- /Il2Native.Logic/CodeAnalysisHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/CodeAnalysisHelpers.cs -------------------------------------------------------------------------------- /Il2Native.Logic/Cs2CGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Cs2CGenerator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM/CCodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM/CCodeBase.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM/CCodeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM/CCodeClass.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM/CCodeDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM/CCodeDeclaration.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM/CCodeDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM/CCodeDefinition.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM/CCodeUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM/CCodeUnit.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM/Helpers.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Access.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Access.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ArgList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ArgList.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ArgListOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ArgListOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ArrayAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ArrayAccess.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ArrayCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ArrayCreation.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ArrayLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ArrayLength.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/AsOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/AsOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Base.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/BaseReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/BaseReference.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/BinaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/BinaryOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Block.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/BlockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/BlockStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/BreakStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/BreakStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Call.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Call.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Cast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Cast.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/CatchBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/CatchBlock.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ConditionalGoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ConditionalGoto.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Conversion.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/DefaultOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/DefaultOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/DoStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/DoStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Expression.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/FieldAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/FieldAccess.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ForStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ForStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/GotoStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/GotoStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/IfStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/IfStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/IsOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/IsOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/IteratorScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/IteratorScope.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Kinds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Kinds.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Label.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/LabelStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/LabelStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/LambdaCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/LambdaCall.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/LambdaExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/LambdaExpression.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Literal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Literal.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Local.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Local.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/MakeRefOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/MakeRefOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/MethodBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/MethodBody.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/MethodGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/MethodGroup.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/MethodPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/MethodPointer.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/NoOpStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/NoOpStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Parameter.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Parenthesis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Parenthesis.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/RefTypeOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/RefTypeOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/RefValueOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/RefValueOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ReturnStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ReturnStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/SizeOfOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/SizeOfOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/Statement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/SwitchLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/SwitchLabel.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/SwitchSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/SwitchSection.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/SwitchStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/SwitchStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ThisReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ThisReference.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ThrowExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ThrowExpression.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/ThrowStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/ThrowStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/TryStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/TryStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/TypeDefStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/TypeDefStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/TypeExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/TypeExpression.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/TypeOfOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/TypeOfOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/UnaryOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/UnaryOperator.cs -------------------------------------------------------------------------------- /Il2Native.Logic/DOM2/WhileStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/DOM2/WhileStatement.cs -------------------------------------------------------------------------------- /Il2Native.Logic/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Helpers.cs -------------------------------------------------------------------------------- /Il2Native.Logic/Il2Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Il2Converter.cs -------------------------------------------------------------------------------- /Il2Native.Logic/Il2Native.Logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Il2Native.Logic.csproj -------------------------------------------------------------------------------- /Il2Native.Logic/Project/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Project/Helpers.cs -------------------------------------------------------------------------------- /Il2Native.Logic/Project/ProjectLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Project/ProjectLoader.cs -------------------------------------------------------------------------------- /Il2Native.Logic/Project/Tasks/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Project/Tasks/Task.cs -------------------------------------------------------------------------------- /Il2Native.Logic/Resources/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Resources/Android.mk -------------------------------------------------------------------------------- /Il2Native.Logic/Resources/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Resources/Application.mk -------------------------------------------------------------------------------- /Il2Native.Logic/Resources/c_include.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Resources/c_include.c -------------------------------------------------------------------------------- /Il2Native.Logic/Resources/decimals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Resources/decimals.cpp -------------------------------------------------------------------------------- /Il2Native.Logic/Resources/intrin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Resources/intrin.cpp -------------------------------------------------------------------------------- /Il2Native.Logic/Resources/overflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Resources/overflow.h -------------------------------------------------------------------------------- /Il2Native.Logic/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/Settings.StyleCop -------------------------------------------------------------------------------- /Il2Native.Logic/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/StyleCop.Cache -------------------------------------------------------------------------------- /Il2Native.Logic/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.Logic/packages.config -------------------------------------------------------------------------------- /Il2Native.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.sln -------------------------------------------------------------------------------- /Il2Native.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native.suo -------------------------------------------------------------------------------- /Il2Native/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native/App.config -------------------------------------------------------------------------------- /Il2Native/Il2Native.CmdLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native/Il2Native.CmdLine.csproj -------------------------------------------------------------------------------- /Il2Native/Il2Native.CmdLine.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native/Il2Native.CmdLine.csproj.user -------------------------------------------------------------------------------- /Il2Native/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native/Program.cs -------------------------------------------------------------------------------- /Il2Native/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Il2Native/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native/Settings.StyleCop -------------------------------------------------------------------------------- /Il2Native/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Il2Native/packages.config -------------------------------------------------------------------------------- /Ll2NativeTests/CompilerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/CompilerHelper.cs -------------------------------------------------------------------------------- /Ll2NativeTests/CoreCLRTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/CoreCLRTests.cs -------------------------------------------------------------------------------- /Ll2NativeTests/Ll2NativeTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/Ll2NativeTests.csproj -------------------------------------------------------------------------------- /Ll2NativeTests/MSTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/MSTests.cs -------------------------------------------------------------------------------- /Ll2NativeTests/MonoLibTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/MonoLibTests.cs -------------------------------------------------------------------------------- /Ll2NativeTests/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/Settings.StyleCop -------------------------------------------------------------------------------- /Ll2NativeTests/SscliLibTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/SscliLibTests.cs -------------------------------------------------------------------------------- /Ll2NativeTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/app.config -------------------------------------------------------------------------------- /Ll2NativeTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Ll2NativeTests/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/README.md -------------------------------------------------------------------------------- /Shared/DesktopShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/Shared/DesktopShim.cs -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ASDAlexander77/cs2cpp/HEAD/packages/repositories.config --------------------------------------------------------------------------------