indexer
Visual Basic Default Property vs C# Property
I\'m converting Visual Basic.Net code to C# in my project. But I have some doubts on how to convert Visual Basic default property to C#. The first option that comes to me are the indexers. Lets imagin[详细]
2023-03-12 10:35 分类:问答Create Indexer in VB.NET which can be used from C#
Can I create a class in VB.NET which can be used from C# like that: myObject.Objects[index].Prop = 1234;[详细]
2023-03-06 04:14 分类:问答alphabetic indexer in android
I have a list view populated from the database, I have my scroll view with FastScroll enabled, the scroll bar is showing the widget but the indexing is not worki开发者_运维问答ng[详细]
2023-02-20 18:37 分类:问答Implementing Indexer in F#
I am trying to convert this C# code to F#: double[,] matrix; public Matrix(int rows, int cols) { this.matrix = new double[rows, cols];[详细]
2023-02-14 13:45 分类:问答How do you use indexers with array of objects?
How can we use indexers if we are using array of objects??? For a single object: static void Main(string[] args)[详细]
2023-02-11 20:40 分类:问答Hibernate Search 3.3.0 Final: Massindexer taking a long time to index
Hi I have the following class. User view ismaterialized view in oracle. public class UserView { @DocumentId[详细]
2023-02-07 04:47 分类:问答powershell and indexer property
If an indexer in C# is expressed as: index[1, 1]. How would you express this with powershell? To be more specific, I\'m trying to use EPPlus with Powershell to generate excel documents. However I\'m[详细]
2023-01-26 07:01 分类:问答Databinding to index property
I have a control bind to an index property of an object which implements INotifyPropertyChanged. The problem is, I don\'t know how to notify the property changed signal for that particular index stri[详细]
2023-01-24 11:57 分类:问答Calling indexer from within the same (generic) class
public class MyClass<T> { public T this[int index] { get { ... } set { ... } } public void MyMethod<T>()[详细]
2023-01-15 22:33 分类:问答When should you use C# indexers?
I\'d like to use indexers more, but I\'m not sure when to use them. All I\'ve found online are examples that use classes like MyClass and IndexerClass.[详细]
2023-01-08 06:49 分类:问答