invoke a precedent - translation to αραβικά
Diclib.com
Λεξικό ChatGPT
Εισάγετε μια λέξη ή φράση σε οποιαδήποτε γλώσσα 👆
Γλώσσα:

Μετάφραση και ανάλυση λέξεων από την τεχνητή νοημοσύνη ChatGPT

Σε αυτήν τη σελίδα μπορείτε να λάβετε μια λεπτομερή ανάλυση μιας λέξης ή μιας φράσης, η οποία δημιουργήθηκε χρησιμοποιώντας το ChatGPT, την καλύτερη τεχνολογία τεχνητής νοημοσύνης μέχρι σήμερα:

  • πώς χρησιμοποιείται η λέξη
  • συχνότητα χρήσης
  • χρησιμοποιείται πιο συχνά στον προφορικό ή γραπτό λόγο
  • επιλογές μετάφρασης λέξεων
  • παραδείγματα χρήσης (πολλές φράσεις με μετάφραση)
  • ετυμολογία

invoke a precedent - translation to αραβικά

FEATURE OF COMMON LANGUAGE INFRASTRUCTURE IMPLEMENTATIONS THAT ENABLES MANAGED CODE TO CALL NATIVE CODE
PInvoke; Pinvoke; P/invoke; P/Invoke; DllImport; Platform/Invoke

invoke a precedent      
استند إلى سابقة ، استشهد بسابقة
Precedent         
PRINCIPLE OR RULE ESTABLISHED IN A PREVIOUS LEGAL CASE THAT IS EITHER BINDING ON OR PERSUASIVE FOR A COURT
Stare decisis; Stare decesis; Legal precedent; Decisional law; Precedents; Case of first impression; Binding authority; Persuasive authority; Prima impressionis; Starry Decisis; Stari Decisis; Stare Decisis; Legal cases; Precedential law; Stari decisis; Stare dicisis; Doctrine of precedence; Persuasive precedent; Binding precedent; Judge made law; Judicial precedent; Doctrine of precedent; Question of first impression; Precendents; Binding Precedent; Judge-made law; System of precedent; Non-binding authority; Legal precedence; Precedential; First impression (law); Legal Cases; Case Rules; Law made by judges; Judicial law making; Horizontal stare decisis; Precedent (law); Wrongly decided; Primae impressionis; Established precedents; Superprecedent; Matter of first impression; Vertical precedent; Horizontal precedent
سابقة
PRECEDENT         
PRINCIPLE OR RULE ESTABLISHED IN A PREVIOUS LEGAL CASE THAT IS EITHER BINDING ON OR PERSUASIVE FOR A COURT
Stare decisis; Stare decesis; Legal precedent; Decisional law; Precedents; Case of first impression; Binding authority; Persuasive authority; Prima impressionis; Starry Decisis; Stari Decisis; Stare Decisis; Legal cases; Precedential law; Stari decisis; Stare dicisis; Doctrine of precedence; Persuasive precedent; Binding precedent; Judge made law; Judicial precedent; Doctrine of precedent; Question of first impression; Precendents; Binding Precedent; Judge-made law; System of precedent; Non-binding authority; Legal precedence; Precedential; First impression (law); Legal Cases; Case Rules; Law made by judges; Judicial law making; Horizontal stare decisis; Precedent (law); Wrongly decided; Primae impressionis; Established precedents; Superprecedent; Matter of first impression; Vertical precedent; Horizontal precedent

ألاسم

أَسْبَق ; سابِق ; سابِقَة ; سالِف ; مُتَقَدِّم

Ορισμός

precedent
(precedents)
If there is a precedent for an action or event, it has happened before, and this can be regarded as an argument for doing it again. (FORMAL)
The trial could set an important precedent for dealing with large numbers of similar cases...
N-VAR: oft N for n

Βικιπαίδεια

Platform Invocation Services

Platform Invocation Services, commonly referred to as P/Invoke, is a feature of Common Language Infrastructure implementations, like Microsoft's Common Language Runtime, that enables managed code to call native code.

Managed code, such as C# or VB.NET, provides native access to classes, methods, and types defined within the libraries that make up the .NET Framework. While the .NET Framework provides an extensive set of functionality, it may lack access to many lower level operating system libraries normally written in unmanaged code or third party libraries also written in unmanaged code. P/Invoke is the technique a programmer can use to access functions in these libraries. Calls to functions within these libraries occur by declaring the signature of the unmanaged function within managed code, which serves as the actual function that can be called like any other managed method. The declaration references the library's file path and defines the function parameters and return in managed types that are most likely to be implicitly marshaled to and from the unmanaged types by the common language run-time (CLR). When the unmanaged data types become too complex for a simple implicit conversion from and to managed types, the framework allows the user to define attributes on the function, return, and/or the parameters to explicitly refine how the data should be marshaled so as not to lead to exceptions in trying to do so implicitly.

There are many abstractions of lower-level programming concepts available to managed code programmers as compared to programming in unmanaged languages. As a result, a programmer with only managed code experience will need to brush up on programming concepts such as pointers, structures, and passing by reference to overcome some of the obstacles in using P/Invoke.