function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sanjeet Kumar 41Sanjeet Kumar 41 

How to create ListView button from apex code and add automatic on listView

How to create ListView button  from apex code and add automatic on listView  for any object  (Metadata Api ) 
Isabel JasonIsabel Jason
The list has a collection of ordered elements. It means, each and every element’s place is fixed or we can tell where an element will be, by using index number.

Collection - List 
  • The list is an ordered collection of elements that are distinguished by indices.
  • The index position of the first element in the list is always zero.
  • It can store primitive data types (integer, string), SObjects.
  • It can have duplicate values.
For more info.... (https://mindmajix.com/salesforce-collection-list)