#hackdbytes #csharp #blockchain
Programming Blockchain in C# FULL | Visual Studio 2019#
This video examines the block chain technology in the .Net framework, the video covers the block structure and the chain validations.
How to create block chain in c#,
block chain in c#
.net core blockchain implementation,
visual studio 2019
10 Comments
Can you provide the text source code as well ?
at a30:00 the method public static bool IsValid(this IEnumerable<IBlock> items)
{
var enmereable = items.ToList();
return enmereable.Zip(enmereable.Skip(1), Tuple.Create).All(block => block.Item2.IsValid() && block.Item2.h) ;
}
the last part block.Item2.h is correct?
where is the Merkle root?
Newbie question here: Can you name an easy example of what to do with a block or how to utilize it?
@HackdBytes What kind of c# project is this? I mean if I were to create a new project in VS > New > Project > ?????. Thanks.
How could I use this for something like p2p file sharing or messaging?
Is there a section missing at 30:34?
the vídeos could be better with a louder audio
Finally something is really practical and recent.😍😍😍😍. Please if possible to share the source code example.
I don't speak English well, but your explanation was great, I managed to understand it thanks to you, thank you very much.