C
C#β€’9mo ago
PatrickG

❔ Cast is not valid when casting interface to comcrete impl

this is my concrete imp: public class TempFile : IBrowserFile { public TempFile(string uuid, string name, long size, string contentType) { Uuid = uuid; Name = name; Size = size; ContentType = contentType; } public TempFile() { } public string Uuid { get; set; } = ""; public string ContentType { get; set; } = ""; public string Name { get; set; } = ""; public long Size { get; set; } public DateTimeOffset LastModified => throw new NotImplementedException(); public Stream OpenReadStream(long maxAllowedSize = 512000, CancellationToken cancellationToken = default) { throw new NotImplementedException(); } } ========================= this is where im trying to cast ibrowserFile as TempFile and getting invalid Cast. private async Task UploadFileAsync(IBrowserFile file) { if (file == null) return; if (EditModel == null) { throw new Exception("No edit model"); } if (EditModel.Id == 0) { var result = await this.EmployeeComptesDepensesService.UploadTemporaryAttachmentFileAsync(file); if (!result.ApiCallSuccess) { this.serverResponseValidator?.DisplayErrors(result.ServerErrors, result.ApiCallResultErrorMessage); } else { try { TempFile tf = (TempFile)file; tf.Uuid = result.ResultModel?.Result!; EditModel.TempFiles.Add(tf);
} catch (Exception ex) {
this.serverResponseValidator?.DisplayErrors(null, $"cast error {ex.Message}"); } } } What's going on???
8 Replies
Azrael
Azraelβ€’9mo ago
$code
MODiX
MODiXβ€’9mo ago
To post C# code type the following: ```cs // code here ``` Get an example by typing $codegif in chat If your code is too long, post it to: https://paste.mod.gg/
Hazel πŸŒŠπŸ’ƒ
While you know a cat is an animal, how do you know that an animal is a cat?
MODiX
MODiXβ€’9mo ago
Hazel | γΈγ„γœγ‚‹
REPL Result: Failure
public class Animal { public int Id { get; set; } }
public class Cat : Animal { public string Name { get; set; } }

var thomas = new Cat { Id = 0, Name = "Thomas" };
var thomasTheAnimal = new Animal { Id = 0 };
var thomasTheCat = (Cat)thomasTheAnimal;
Console.WriteLine(thomasTheCat.Id);
public class Animal { public int Id { get; set; } }
public class Cat : Animal { public string Name { get; set; } }

var thomas = new Cat { Id = 0, Name = "Thomas" };
var thomasTheAnimal = new Animal { Id = 0 };
var thomasTheCat = (Cat)thomasTheAnimal;
Console.WriteLine(thomasTheCat.Id);
Exception: InvalidCastException
- Unable to cast object of type 'Animal' to type 'Cat'.
- Unable to cast object of type 'Animal' to type 'Cat'.
Compile: 653.168ms | Execution: 53.051ms | React with ❌ to remove this embed.
Hazel πŸŒŠπŸ’ƒ
This doesn't work because an animal is not a cat, even though a cat is an animal.
PatrickG
PatrickGβ€’9mo ago
hmm i thought i could cast both directions and it would just fill the minimum fields that are part of the animal interface
cap5lut
cap5lutβ€’9mo ago
nope, u would have to write such a mapping urself it could be done with implementing custom casts, but in this case it feels like a ToTempFile() method or similar has better semantics/intention is clearer
Accord
Accordβ€’9mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.
Want results from more Discord servers?
Add your server
More Posts