Jasonnn
Jasonnn
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
it's clearer now thanks!!!
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
yeah it threw 1 percent out there it's probably 0.01% idk
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
ok cool
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
or is it more complicated than that
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
so that's like the 1% where nongeneric interfaces are useful?
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
covariance doesn't apply to value types
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
No description
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
pretty sure you can't cast a List<int> to that?
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
since you don't need to copy you can just cast
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
I sort of agree with the authors for type unification purposes it feels very practical
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
public static int Count (IEnumerable e)
{
int count = 0;
foreach (object element in e)
{
var subCollection = element as IEnumerable;
if (subCollection != null)
count += Count (subCollection);
else
count++;
}
return count;
}
public static int Count (IEnumerable e)
{
int count = 0;
foreach (object element in e)
{
var subCollection = element as IEnumerable;
if (subCollection != null)
count += Count (subCollection);
else
count++;
}
return count;
}
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
Can you implement that without non generics?
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
So I was wondering why there was a difference
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
Yeah of course, they just say 1% of the time you use the non generic IEnumerable and 0% for the non generic List/Queue/Stack/Dict for example
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
Which is what the authors were hinting at maybe?
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
You have to use IEnumerable?
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
Ah so you can't use ArrayList for type unification?
41 replies
CC#
Created by Jasonnn on 3/18/2025 in #help
Nongeneric interfaces and collection classes
isn't ArrayList the non generic List type?
41 replies
CC#
Created by Jasonnn on 11/12/2024 in #help
Threading and Microsoft.Data.Sqlite
I’ll look for the documentation of SqliteConnection
25 replies
CC#
Created by Jasonnn on 11/12/2024 in #help
Threading and Microsoft.Data.Sqlite
it doesn’t crash.
25 replies