I can not find the practical use of System.Runtime.CompilerServices.DiscardableAttribute, even for a prototype compiler. Any insight? Thanks.
What is DiscardableAttribute used for?
259 Views Asked by aracntido At
1
There are 1 best solutions below
Related Questions in C#
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in .NET
- Does compiler optimize operation on const variable and literal const number?
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- What is this namespace ITypeOfObjectsBoundToListBox ? Couldn't find it
- .net rest service with JSON string and consumed with java client
- What is best way to check if any of the property of object is null or empty?
- Telerik's WPF RadColorPicker NoColorText property not working
- Possible consequences of duplicate ProgId for different classes
- How are multiple requests to Task.Run handled from a resource management standpoint?
- Optimizing C++ call from C#
- Make a per-web-application object available to Web API and SignalR controllers
- System.ComponentModel.DataAnnotations.Schema namespace conflict
- LINQ Except/Distinct based on few columns only, to not add duplicates
- Not displaying content by its URL string - absolute urls
Related Questions in COMPILER-CONSTRUCTION
- Is the compiler Xcode uses to produce Assembly code a bad compiler?
- How do compilers store hundreds of variables in only a few registers?
- Where to patch back the information gathered during program analysis
- Assignment Insertion in ROSE compiler after AssignOp
- memory layout of a multiple-inherited object in C++
- How to use my written compiler to read files on web?
- a LEX program to identify keywords and convert it into uppercase
- Identifier terminal except certain keywords
- Calling Scala compiler's AST from Java
- Computing the FOLLOW() set of a grammar
- JavaCC and Unicode issue. Why \u696d cannot be managed in JavaCC although it belong to the range "\u4e00"-"\u9fff"
- Three-address code and symbol tables
- Delegate caching behavior changes in Roslyn
- Get delimiter in Irony
- Compiler Errors including initializer before '<' token
Related Questions in CLR
- Windows Error Reporting doesn't generate mini dump for a .NET 4 application sometimes
- Where exactly is .NET Runtime (CLR), JIT Compiler located?
- SQL CLR Exception when trying to convert PDF
- Obtain non-explicit field offset
- Test if a given object reference is valid
- msclr is not being used
- Mixed mode assembly is built against version xxxx
- “CLR detected an Invalid Program” when compiling a constructor for List<T>
- Set only second argument type in generic method
- Where would the code produced by the JIT would reside
- .NET Framework compatibility issue
- Using the new source provided by microsoft would it be possible to create a variant of the CLR?
- Deadlocked in w3wp for a WCF website. Unable to find source of Issue
- At what point in time does an instance of a C# class with a generic Type parameter lose awareness of its "generic"-ness?
- Type '<Module>' from assembly ... contains more methods than the current implementation allows
Related Questions in ROTOR
- Rotor SSCLI 2.0 - Error in building PAL
- What is DiscardableAttribute used for?
- Heading Rotor not reading invisible headings
- Is there a version of Rotor for .NET 3.5? If so, where?
- What is the difference between SSCLI 2.0 (ROTOR) and .NET?
- How to get certain UITextview to be included in the header accessibility rotor?
- How to delete uiAccessibility voice over custom rotors
- iOS 13 Voiceover issue, rotor action not working with embedded links
- Create a custom VoiceOver Rotor to navigate MKAnnotationViews?
- iOS Voice Over rotor notifications?
- raku What is a better way to do rotor from the end?
- Interchange the Y and Z axis in 3D- isosurface plot
- How to implement rotor with auto-text for my custom input method in VoiceOver?
- Accessibility Rotor changed behavior under iOS 16
- Extra line drawn in Flotchart using TickRotor plugin
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
To give a more specific example than what the documentation says - you could have a language that supports inlining of static method calls that are marked using some special modifier (from a static class):
If you have a class like this, it isn't really referenced by any other piece of your code. When you write:
The compiler compiles it as:
You need to keep the definition of
Barin the compiled code, because if you reference the assembly from some other project, you want to see it (and when you then call theFoomethod, the compiler will just take compiled IL from that assembly).However, the class
Barwould never be used at runtime (it is there just to keep the code, but not to actually execute it). I imagine you could mark it asDiscardableand the JIT could possibly skip it when generating native code for your assembly (because the class will never be used).