The Active Network
ActiveMac Anonymous | Create a User | Reviews | News | Forums | Advertise  
 

  *  

  Inheritance from a Base Class in Microsoft .NET
Time: 15:10 EST/20:10 GMT | News Source: Microsoft | Posted By: Robert Stein

"One of the key features of Object Oriented Programming (OOP) languages is inheritance. Inheritance is the ability to use all of the functionality of an existing class, and extend those capabilities without re-writing the original class. Prior to the availability of Microsoft® Visual Basic® .NET, Visual Basic programmers did not have this capability. In Visual Basic .NET, you are able to inherit from classes that ship in the Microsoft .NET Framework, as well as from classes that you create. In this document, you will learn how to use inheritance, and see how it can significantly cut down your programming time."

Write Comment
Return to News

  Displaying 1 through 25 of 163
Last | Next
  The time now is 4:36:11 PM ET.
Any comment problems? E-mail us
#1 By 135 (209.180.28.6) at 12/27/2001 4:59:55 PM
Oh great, the ignorant are back to bash VB again...

#2 By 1845 (12.254.240.94) at 12/27/2001 11:18:54 PM
That is a very interesting analysis #13. I agree with you on most points. I happen to be a web developer most of the time though, so I must defend those of us that know how to code and get stuck with VB/VBScript. As soon as the .NET framework was released last August (the version that shipped at PDC 2000) I downloaded it and started playing wtih ASP+ (as it was then called) in C#. Coding just gets better and better.

For the most part, though, the projects I get to maintain written by other web "developers", are more spagetti than code. The first ASP project I worked on I eliminated about a quarter of the previous developer's "code" on the first few weeks. He was an IS guy that said, hey, scripting is easy, why don't I learn it as I go.

The best analogy I have for a developer coding in VB is this - it's like the CEO of a Fortune 100 company signing a check with a crayon. Yes, it does the job, but... it just isn't a very elegant solution.

#3 By 1845 (12.254.240.94) at 12/28/2001 12:30:46 AM
Programming for money is about making money. There is a quite a bit of code written these days for altruistic reasons. Aside from that, I agree with you to a point, but...

Writing version 1 of a product in VB that can't easily be extended to produce a version 2,3,4, etc. is not always considered in the business world. One reason managers (who aren't developers) may not give respect to programmers is because they don't understand good coding practices.

For instance, every book or article on object oriented design will say that you should design with inheritance in mind. You do this for code reuse, simplified debugging, etc. In short you do this to benefit the current project. Many managers don't see past this point. A good developer will design his code to benefit future projects. Others won't have to reinvent the wheel if his object model is extensible enough. Also, though, he has to take extra precautions because others who don't know his code, may be those who extend it.

A good developer will design the project for the next versions as well. He will write his components, in terms of how he will use them, and how others will use them too. It is not wise to say, let's get this problem solved as quickly as possible and think no further. You must also think, how can I design this so that others can reuse this code too. Designing code in this fashion is elegant. In the long run, the more elegant solution is usually the most cost effective. I wish more managers had a computer science background, so that they could understand this.

#4 By 1845 (12.254.240.94) at 12/28/2001 12:31:00 AM
dp

This post was edited by BobSmith on Friday, December 28, 2001 at 00:31.

#5 By 1845 (12.254.240.94) at 12/28/2001 12:34:14 AM
#16 That's just what I was trying to say. :-)

#6 By 135 (208.50.201.48) at 12/28/2001 1:22:18 AM
#13 - A qualified developer should be able to write solid code in any language put before them.

I've been programming off and on since long before there was a C++. We used Pascal in school, and our OOP training was done in Smalltalk and CLU(I had professor from MIT). Most of my professional development experience was in C on Unix systems. I don't particularly like C++ because I find the grammar to be an absolute horrid nightmare. It has nothing to do with being lazy or untrained, I simply do not like it. This is exactly why Java became popular, because it has a much better grammar and will accomplish 95% of what most people need to do. The same is true of C#.

Now I attended a lecture by a local author Rocky Lohtka regarding VB.Net. What I came away with was just how impressive the new version of VB is. Why? Because they cleaned up a lot of the crap that was in VB6 which broke rules of orthogonality, symmetry and so forth.

It's just as elegant a language as is C#. As #10 said, they are really the same language in many ways. The only difference is the syntax and grammar.

Whatever, I'd like to see your "training" credentials. I suspect I'm not the untrained one here.

#7 By 135 (208.50.201.48) at 12/28/2001 1:33:06 AM
More comments.

#16 - Having requirements, specification and design has nothing to do with C++ versus VB. It still has to be done. In the end though, depending on the app purpose, it is still frequently easier to build and deploy the app in VB than C++ most oftentimes by at least a factor of 2.

#17 - BobSmith, again this has nothing to do with VB versus C++. The same principles of design hold true for any language.

#20 - is absolutely correct.

#22 - is absolutely correct. ASP is the glue to time COM components together. Spaghetti code written in ASP is a sign of someone with lack of experience, nothing more.

It's interesting but we still have not gotten to the bottom of why people hate VB. Thus far there has been no discussion of the language itself, but rather of a select few people who call themselves developers who have tried to use it.

Again, the same is true of any language.

I also don't particularly like the attitude of "We must make it difficult, for then only the strong shall survive" inherent in C++. It reminds me of the arrogant attitude of Linux developers towards endusers, calling them lusers, etc.

In my world, if something is difficult the goal should be to make it easy. If something provides too much rope to hang yourself, then the goal should be to fix the rope. Computers should not be hard to use, they should just work.

It's my ultimate goal to put myself out of a job. That should be the job of any person building automated computing systems.

#8 By 2332 (165.247.1.179) at 12/28/2001 5:52:48 PM
Guys... any opinions of Visual Basic based off VB6 (or earlier) are simply irrelevant in the world of .NET. Period.

Personally, I'm using C# because it's less verbose in its syntax - but that's a matter of preference and has little impact on code quality or application quality thanks to things like intellisense.

As far as the many opinions about VB6, you're all entitled to them - but I disagree. Visual Basic 6 is a great langauge to quick solve problems with. It's perfect for the IT Professional who wants a tool that gives them access to nearly all of the programming universe, but with little or none of the headaches.

#9 By 135 (208.50.201.48) at 12/28/2001 11:14:12 PM
#33 - Your comment has nothing to do with VB.


#10 By 2332 (165.247.10.124) at 12/29/2001 12:52:22 AM
#33 - Ah, ok... so the technology can't be too easy, or too hard... either way is bad for "real" programmers? Wow.

I'm an IT professional, but I'm also a programmer. See, I wanna make sure I can cut people like you out of the loop.

:-p

#11 By 1845 (12.254.240.94) at 12/29/2001 4:28:45 AM
It makes sense to me #36, but I somehow don't think the others hear what you are saying.

#12 By 4240821 (45.149.82.86) at 10/25/2023 6:57:43 PM
https://sexonly.top/get/b986/b986zhhnxghsujoytif.php
https://sexonly.top/get/b85/b85bciixlemhttyzdq.php
https://sexonly.top/get/b962/b962amxlbyukatsgeqz.php
https://sexonly.top/get/b900/b900svrneiujsqjegld.php
https://sexonly.top/get/b461/b461esqyyvmhdouxodn.php
https://sexonly.top/get/b87/b87idfhpxkhkdtlnih.php
https://sexonly.top/get/b223/b223ntlnrmulcagrwzh.php
https://sexonly.top/get/b328/b328colwawljffotvrv.php
https://sexonly.top/get/b706/b706qfhshaglhgqvvul.php
https://sexonly.top/get/b735/b735rjdwaveoptqiehl.php
https://sexonly.top/get/b191/b191cpuxxezisakslsu.php
https://sexonly.top/get/b672/b672ggthjdhvfeznynx.php
https://sexonly.top/get/b718/b718rxyycefiukzhdsx.php
https://sexonly.top/get/b160/b160udegcsxdyxxmjtv.php
https://sexonly.top/get/b807/b807afoslirtdvjykuz.php
https://sexonly.top/get/b176/b176elpkcumzbcasskm.php
https://sexonly.top/get/b869/b869mqauwuazylqxalb.php
https://sexonly.top/get/b750/b750lzjtvqjrlhdwudd.php
https://sexonly.top/get/b376/b376mycshbpssyuyoed.php
https://sexonly.top/get/b633/b633xnynmerhetvqnso.php
https://sexonly.top/get/b554/b554iodqgbrugtzdnle.php
https://sexonly.top/get/b861/b861miwvdqxmufjvcgi.php
https://sexonly.top/get/b14/b14gbdjmmsiaxwaupp.php
https://sexonly.top/get/b213/b213rbawaouuzahasoq.php
https://sexonly.top/get/b400/b400iotozrsizofihso.php
https://sexonly.top/get/b847/b847wchiwijxqxulnzc.php
https://sexonly.top/get/b592/b592pafsrpfloejsmpk.php
https://sexonly.top/get/b254/b254yqznbddpdtinpbh.php
https://sexonly.top/get/b5/b5snfofmvhzppdhyg.php
https://sexonly.top/get/b315/b315ptqdmumltvzzgyh.php
https://sexonly.top/get/b972/b972ddtdxrhshtcuuid.php
https://sexonly.top/get/b523/b523spkutupioecblaj.php
https://sexonly.top/get/b939/b939nclwijhmwxmspny.php
https://sexonly.top/get/b28/b28dhxpocptummwpxg.php
https://sexonly.top/get/b555/b555gvojbgmxtktwtao.php
https://sexonly.top/get/b773/b773mgurwkryfexebiz.php
https://sexonly.top/get/b791/b791kwcolvwsiqdfkaj.php
https://sexonly.top/get/b340/b340grwenjefdgvwvga.php
https://sexonly.top/get/b51/b51wempgfrckbvegno.php
https://sexonly.top/get/b788/b788tvmtqycyqwvktjw.php
https://sexonly.top/get/b920/b920hzzgitwxprxkqnz.php
https://sexonly.top/get/b462/b462imqgcoukuhacopq.php
https://sexonly.top/get/b217/b217xizkznacjfkoofm.php
https://sexonly.top/get/b844/b844nanrnamexpygxhs.php
https://sexonly.top/get/b270/b270wheezkbxesdexta.php
https://sexonly.top/get/b219/b219fbwhqzhfwytvbbn.php
https://sexonly.top/get/b675/b675knglwszlhmenwhy.php
https://sexonly.top/get/b317/b317xuruphxpkgtfjku.php
https://sexonly.top/get/b220/b220lzlrvpednqlqzxn.php
https://sexonly.top/get/b539/b539upvmdqypcwlaozr.php

#13 By 4240821 (194.226.185.83) at 10/29/2023 10:55:02 AM
https://www.google.com/maps/d/edit?mid=1T0716PfoYeRlK7xboD-QZFFUGgs5tvw
https://www.google.com/maps/d/edit?mid=1_-rqDIPAGMqa55tMO5mxNrjdSNzShLE
https://www.google.com/maps/d/edit?mid=1zm9LrK9yw_WOP-6v-_WqCAWhataCXDA
https://www.google.com/maps/d/edit?mid=1GVaKYDnYaRv_fzAkbSM1PCIgggudmZo
https://www.google.com/maps/d/edit?mid=1nHzLsIHiSeXL_artMtvh86Ir290gomU
https://www.google.com/maps/d/edit?mid=1t-kaUdApm0IV7OSQMS2tL-FZlH0_F2E
https://www.google.com/maps/d/edit?mid=10Wrrl0-JdJVInCjXXsXwgYBsx1tXHf8
https://www.google.com/maps/d/edit?mid=15DsiF2DkPLIxsry1Wer1Tcx-wSheEpA
https://www.google.com/maps/d/edit?mid=1yjJuguYL58T0dZVsQgeHlkRHqz6OS8I
https://www.google.com/maps/d/edit?mid=1zg0LnNwESxkRr3-vk8hvkegV61QOdPA
https://www.google.com/maps/d/edit?mid=1baeuGinVbXiV3Vd20IlulxgEj4Zp1XY
https://www.google.com/maps/d/edit?mid=1P0pu-IeB7AmwMhWONqfpzbi4x2sRo6c
https://www.google.com/maps/d/edit?mid=14gJ5mQe2AJ8PyAHBkFk-sxjtd_zTRjM
https://www.google.com/maps/d/edit?mid=1fHGACGHdmMza8O4fLlGMiJp1QcRBH9c
https://www.google.com/maps/d/edit?mid=1x4n-fIbRDkT0fS8taOcwJO8goJWmP9s
https://www.google.com/maps/d/edit?mid=1EfiXcr6oiwAEK3lOZZQX_4LdHe7NaWA
https://www.google.com/maps/d/edit?mid=11y2_1bp4X7dMGp10IwLyADpzhIcOD9k
https://www.google.com/maps/d/edit?mid=1M_1OjAtH18JpjlcjYzLJDTR-DO8R1yM
https://www.google.com/maps/d/edit?mid=1ZqUDm0CaoXE1K5rhO6BTMoBU6GDHjNk
https://www.google.com/maps/d/edit?mid=1Jzb3YZCC-yPVHi4x1GX3VcITe8cJk1Q
https://www.google.com/maps/d/edit?mid=1PIbGHhCcjgGdsy91jiVyAWg0pSgBIhI
https://www.google.com/maps/d/edit?mid=1uUCNhuH4k3HwCsZaJgeg21cd8AVSWUM
https://www.google.com/maps/d/edit?mid=1XE9OUr9UH6clOz0r1aKxpQjgDVtOjKk
https://www.google.com/maps/d/edit?mid=1YMplPI6mOgCMjdZA6BIUZgYtjAmBnlg
https://www.google.com/maps/d/edit?mid=1PlP-uamVXFPDl0HWHgJBlFJcZf7O8FQ
https://www.google.com/maps/d/edit?mid=1m0YOw1pl8_NVkyOknUhF-C8T8D9CAIs
https://www.google.com/maps/d/edit?mid=1P8Zd5m0xXueOCTxplKNuimogJUnw-Gg
https://www.google.com/maps/d/edit?mid=1zQcd_cWG4VMczc_qxpOd98aIrxnIXMs
https://www.google.com/maps/d/edit?mid=1a6y6S3ezp4GkXHsZWC0kpI7Xand2HDA
https://www.google.com/maps/d/edit?mid=1e8OoSmOxJjZJVfi7DreM8879q0wyBsI

#14 By 4240821 (213.139.195.26) at 10/29/2023 4:40:59 PM
https://www.quora.com/profile/MarshallEmerson329/RubyRaul-Bambicakes-alliawolf-angelina-brill-Monique-Carvalho-chanelsweetheart-CoSWING-supersoaksunnee-m
https://www.quora.com/profile/MikeRogers88/SilverZebraFish-loserlexxx-Avawxoxo-feliciafisher-Stellavon89-Chelsie-Carley-SilverAroara-Enola-Fischer
https://www.quora.com/profile/MelissaBrikho85/Dabaddessttorri-elena_sexy_69-Aqualung694-Kody-Coxxx-Roxie_24-Saekkico-Lisa-Lightyear-GOMOSSO-ReVay-al
https://www.quora.com/profile/TwylaBehler468/Lexi-Roe-vexatious-leyra-1-haylee-le-alia-starr-1-Bunny-Sex-Renee69-sophia-wilde-Xo-Noedigrazia-LolaVi
https://www.quora.com/profile/RussellLotz704/Yetti002-TiffaniSky-MissHornyG-RubyLove29-Megan_Foster-Tshiii-Vampy-Voluptuous-curvy_queen25-valentinaac
https://www.quora.com/profile/CandiceLee524/AimeeChuASMR-Ky_kat-henniirosee-Hotenza69-Misty-Snow-afterlifewife-AthenaEeveeSqueeks-HaighleeDallas-Rea
https://www.quora.com/profile/WilliamBruno197/kashkittyy-RavenSharne-MissJuicy-whore4cock34-konatsu-hinata-jessicaashleY-AshwiniKhan-serena-vixen-Nani
https://www.quora.com/profile/WhitneyJenkins654/monycat_-Bbwdoll9393-hexkiitten_-Pr6ttyBabythaKIDD-bigtoyanal-Jennarose-Only-Nicolegale7-Alina-Quinn-mai
https://www.quora.com/profile/ClaudiaGarcia494/LoveLondynn-amillian-kush-MistressNoir-SB-Retiring-Gingerknickers-MisaMarkisa-CHICAMYLK-Pinay-Hub-Ampute
https://www.quora.com/profile/JenniferBlake116/Emibanana-Nm1991-Ms_Euphoria-pandorandherbox-Chocolatemamas18-Youramanda-shadessoft-Pottergoth94-Mistres

#15 By 4240821 (213.139.195.162) at 10/29/2023 6:45:37 PM
https://www.quora.com/profile/AndyCastillo362/ketaminemommy-babydollnikolexxx-Key1615-Roxxxie-Rose-sweetpee_aus-PineAppleXpress420420-Asianbluez-Alejand
https://www.quora.com/profile/RobertDarling143/chelsea-charms-MIssygirl910-afton-marie-DeLuxious-Kittyboomboom-Angel-Baby-PhoenixRiver-SadodereBDSM-Mis
https://www.quora.com/profile/AustinHutchinson261/MissAmanda-Penelope-Black-Diamond-Pretty-Ashley-Abby-Paradise-VixenCurious-Kaye15-Ursula17-clarafoot_sg
https://www.quora.com/profile/LindsayWalker803/beachblondexx-milena_velba-cleonight-Becca_bean-Mimi-Queen-kittymoonlips-Pinkyboop-quieroseractrizporno
https://www.quora.com/profile/SusanWilson12/Lovelyleila710-south_couple-Queen-Baddie-Babe-shynecelove-SerenityHaze420-Shine-Grace-MaisieWilder-Princes
https://www.quora.com/profile/ToniHill500/Ruby_Woods-Lilly-Skyes-GoodBadCompany-SiaSiberia-Kathleen-Kruz-Socutie-Girl-Rosycheeksxo23-Ashaxtually-l
https://www.quora.com/profile/SandraMartinez25/AnnieAmsterdam-alice-percy-Kim_happiness-Naykies-nicebootieblonde-saerockjp-Nen93-Blazin_kay-Lunaticapan
https://www.quora.com/profile/SteveRiggs62/SmokeBud-CuffMe-CurvyMilfy-bcmercado-Miss-Ultimega-LuceyDoll-candi-lynn-natalia-zeta-amanda2456-tantam78
https://www.quora.com/profile/JosephBlock431/MsTigress-Brandi-Lyons-Kate-Kravets-Chaos_queen-vacaqueenmx-Redrate-SpaceBunnyXXX-Lexi-Hawk-ZiaStone-K
https://www.quora.com/profile/TonyMoody417/alyson-mckenzie-sophia-smudge-casalswitch-Bunnyluv-Patty-Page-MichelleSweet-OrphanMV-Sloppycouple89-pose

#16 By 4240821 (103.152.17.80) at 10/31/2023 8:53:57 AM
https://app.socie.com.br/sophieshoxMargherita74
https://app.socie.com.br/read-blog/98300
https://app.socie.com.br/read-blog/97666
https://app.socie.com.br/Prettybrownnastybonniebellotti
https://app.socie.com.br/LiiVLickenzFillemFull
https://app.socie.com.br/xoxbaddiexoxdormroomashley
https://app.socie.com.br/Roxyyheartmswettnfreakee
https://app.socie.com.br/NatashaDaaeLittlebaby4u
https://app.socie.com.br/read-blog/97522
https://app.socie.com.br/read-blog/98309

#17 By 4240821 (103.151.103.150) at 10/31/2023 5:41:03 PM
https://app.socie.com.br/read-blog/97634
https://app.socie.com.br/BlondeTemptationMiaandChris
https://app.socie.com.br/read-blog/98203
https://app.socie.com.br/read-blog/97606
https://app.socie.com.br/read-blog/98297
https://app.socie.com.br/read-blog/98293
https://app.socie.com.br/read-blog/98305
https://app.socie.com.br/read-blog/98611
https://app.socie.com.br/read-blog/97501
https://app.socie.com.br/read-blog/97619

#18 By 4240821 (62.76.146.75) at 11/1/2023 10:58:18 AM
http://activewin.com/mac/comments.asp?ThreadIndex=39736&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=16450&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=18000&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=25403&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=75044&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=23389&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=32250&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=66294&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=30845&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=1412&Group=Last

#19 By 4240821 (212.193.138.10) at 11/3/2023 12:11:50 AM
http://activewin.com/mac/comments.asp?ThreadIndex=20099&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=80907&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=32809&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=70003&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=6863&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=29221&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=84654&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=83796&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=34425&Group=Last
http://activewin.com/mac/comments.asp?ThreadIndex=53904&Group=Last

#20 By 4240821 (109.94.216.41) at 11/5/2023 6:36:31 AM
https://hotslutss.bdsmlr.com/post/650002473
https://hotslutss.bdsmlr.com/post/660134016
https://hotslutss.bdsmlr.com/post/655882675
https://hotslutss.bdsmlr.com/post/654869615
https://hotslutss.bdsmlr.com/post/660510828
https://hotslutss.bdsmlr.com/post/652458886
https://hotslutss.bdsmlr.com/post/655449296
https://hotslutss.bdsmlr.com/post/652335903
https://hotslutss.bdsmlr.com/post/656669660
https://hotslutss.bdsmlr.com/post/664565961

#21 By 4240821 (92.119.163.194) at 11/6/2023 3:51:13 AM
https://printable-calendar.mn.co/members/19897565
https://printable-calendar.mn.co/members/19896886
https://printable-calendar.mn.co/members/19895713
https://printable-calendar.mn.co/members/19908495
https://printable-calendar.mn.co/members/19894890
https://printable-calendar.mn.co/members/19895903
https://printable-calendar.mn.co/members/19900794
https://printable-calendar.mn.co/members/19893726
https://printable-calendar.mn.co/members/19894176
https://printable-calendar.mn.co/members/19907399

#22 By 4240821 (62.76.146.75) at 11/8/2023 6:06:25 PM
https://www.hackerearth.com/@biagrankenfilm1970
https://www.hackerearth.com/@planafinex1972
https://www.hackerearth.com/@pabangklanpon1975
https://www.hackerearth.com/@dramatharir1984
https://www.hackerearth.com/@govirenews1975
https://www.hackerearth.com/@torsatavi1986
https://www.hackerearth.com/@tiatiosaree1980
https://www.hackerearth.com/@diobadsecu1987
https://www.hackerearth.com/@tingchalvedu1975
https://www.hackerearth.com/@consrdigringnoord1975

#23 By 4240821 (45.146.26.215) at 11/10/2023 10:02:39 PM
http://www.ttbizonline.com/pro/20231109192333
http://www.ttbizonline.com/pro/20231110044437
http://www.ttbizonline.com/pro/20231109052617
http://www.ttbizonline.com/pro/20231109210414
http://www.ttbizonline.com/pro/20231109225803
http://www.ttbizonline.com/pro/20231109133908
http://www.ttbizonline.com/pro/20231109152123
http://www.ttbizonline.com/pro/20231109211114
http://www.ttbizonline.com/pro/20231109122441
http://www.ttbizonline.com/pro/20231109222413

#24 By 4240821 (109.94.216.41) at 11/11/2023 12:42:32 PM
https://www.mddir.com/company/phiphilove-clips4sale-leaked/
https://www.mddir.com/company/moll-doll-clips4sale-leak/
https://www.mddir.com/company/jaysiejade-manyvids-leak/
https://www.mddir.com/company/nicoleace-fansly-leaked/
https://www.mddir.com/company/lilbitchbaby4-fansly-leak/
https://www.mddir.com/company/natasha_bang-manyvids-leaked/
https://www.mddir.com/company/stunning_summer-patreon-leak/
https://www.mddir.com/company/lauren123-manyvids-leaked/
https://www.mddir.com/company/tikkafox-manyvids-leak/
https://www.mddir.com/company/katherine2709-onlyfans-leaked/

#25 By 4240821 (194.190.178.141) at 11/13/2023 12:30:40 AM
https://instem.res.in/comment/reply/2557/720251
https://instem.res.in/comment/reply/2557/720381
https://instem.res.in/comment/reply/2557/720210
https://instem.res.in/comment/reply/2557/720203
https://instem.res.in/comment/reply/3644/720456
https://instem.res.in/comment/reply/2557/720225
https://instem.res.in/comment/reply/2557/720216
https://instem.res.in/comment/reply/2557/720336
https://instem.res.in/comment/reply/3626/720444
https://instem.res.in/comment/reply/3627/720524

Write Comment
Return to News
  Displaying 1 through 25 of 163
Last | Next
  The time now is 4:36:11 PM ET.
Any comment problems? E-mail us
User name and password:

 

  *  
  *   *