AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Suchfunktion Ergebnis der Suchanfrage

Ergebnis der Suchanfrage


Datum des Suchindex: Heute, 23:02

Parameter dieser Suchanfrage:

Suche in Thema: from C# to delphi
Suche alle Beiträge, die von "sdean" geschrieben wurden
• Suchmethode: "Suche nach allen Begriffen"
• Nach Datum (firstpost) sortiert
• Zeige Treffer als Beiträge
Zeige 6 von insges. 6 Treffern
Suche benötigte 0.000s

Es liegen Ergebnisse in folgenden Bereichen vor:

  • Forum: Object-Pascal / Delphi-Language

    AW: from C# to delphi

      Delphi
      by sdean, 6. Jan 2023
    so many thanks for all your great help ,
    What about this please :

    internal static IObject ReadObject(uint constructorNb = 0)
    {
    var myDef = type.GetCustomAttribute<MYDefAttribute>();
    var obj = Activator.CreateInstance(type, true);
    IEnumerable<FieldInfo> fields = type.GetFields(BindingFlags.Instance | BindingFlags.Public);
    if (myDef.inheritBefore) fields = fields.GroupBy(f =>...
  • Forum: Object-Pascal / Delphi-Language

    AW: from C# to delphi

      Delphi
      by sdean, 1. Jan 2023
    So many thanks for all your great help end valuable time .
    :wink: i still need your help to port this code :

    internal static void PrintValue(object value, Type valueType)
    {
    if (value == null)
    {
    Console.WriteLine(valueType);
    return;
    }
  • Forum: Object-Pascal / Delphi-Language

    AW: from C# to delphi

      Delphi
      by sdean, 23. Dez 2022
    Can this great delphi implementation help :
    http://rvelthuis.de/programs/bigintegers.html
  • Forum: Object-Pascal / Delphi-Language

    AW: from C# to delphi

      Delphi
      by sdean, 22. Dez 2022
    So many thanks , and what about this please :
    public static bool IsProbablePrime(this BigInteger n)
    {
    var n_minus_one = n - BigInteger.One;
    if (n_minus_one.Sign <= 0) return false;

    int s;
    var d = n_minus_one;
    for (s = 0; d.IsEven; s++) d >>= 1;
  • Forum: Object-Pascal / Delphi-Language

    AW: from C# to delphi

      Delphi
      by sdean, 22. Dez 2022
    so many thanks for such a great effort .
  • Forum: Object-Pascal / Delphi-Language

    from C# to delphi

      Delphi
      by sdean, 22. Dez 2022
    Hello can someone help me porting this C# code into Delphi :

    internal static ulong PQFactorize(ulong pq)
    {
    if (pq < 2) return 1;
    var random = new Random();
    ulong g = 0;
    for (int i = 0, iter = 0; i < 3 || iter < 1000; i++)
    {
    ulong q = (ulong)random.Next(17, 32) % (pq - 1);


URL zu dieser Suchanfrage:

https://www.delphipraxis.net/dp_search.php?do=usersearch&search_username=sdean&search_exact_username=1&search_sortby=dateline&search_resulttype=post&search_matchmode=0&searchthreadid=212129
Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 23:05 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz