473,385 Members | 1,445 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

website in DLL, need to access the code

Hello:

I am taking over someone else's code and my users are experiencing tons of
problems but when I try to go into the source code to edit and try to fix
these problems, I realize that all the old programmer's code is in DLLs so I
cannot access the source from anywhere. It's really becoming a problem.
So..my question is twofold, is there a way to extract the code from the DLL
(probably not), if not, what are some other options I have????

Visual Studio 2005
Asp.net 2.0
C#

Thank you, Karina
Aug 1 '06 #1
12 1870
Generally one builds a .dll from code (it is also quite common to only
deploy a .dll for varying reasons)... do you not have the source?

You could do something along the lines of using reflector to reverse
engineer the dll (there is a plugin the generate files) but you would be
missing alot of important information such as comments etc.

The best option would be to get the source code.

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:6A**********************************@microsof t.com...
Hello:

I am taking over someone else's code and my users are experiencing tons of
problems but when I try to go into the source code to edit and try to fix
these problems, I realize that all the old programmer's code is in DLLs so
I
cannot access the source from anywhere. It's really becoming a problem.
So..my question is twofold, is there a way to extract the code from the
DLL
(probably not), if not, what are some other options I have????

Visual Studio 2005
Asp.net 2.0
C#

Thank you, Karina

Aug 1 '06 #2
Hello Greg,

The old programmer left and he deleted the source code and left the DLLs.
Getting the source code, unfortunately is NOT an option.

What is "reflector"? Where can I get more information on that option?

Thank YOU, Karina

"Greg Young" wrote:
Generally one builds a .dll from code (it is also quite common to only
deploy a .dll for varying reasons)... do you not have the source?

You could do something along the lines of using reflector to reverse
engineer the dll (there is a plugin the generate files) but you would be
missing alot of important information such as comments etc.

The best option would be to get the source code.

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:6A**********************************@microsof t.com...
Hello:

I am taking over someone else's code and my users are experiencing tons of
problems but when I try to go into the source code to edit and try to fix
these problems, I realize that all the old programmer's code is in DLLs so
I
cannot access the source from anywhere. It's really becoming a problem.
So..my question is twofold, is there a way to extract the code from the
DLL
(probably not), if not, what are some other options I have????

Visual Studio 2005
Asp.net 2.0
C#

Thank you, Karina


Aug 1 '06 #3
Before working on anything I would get the company to put in some sort of
process to keep this from happenning.

reflector http://www.aisto.com/roeder/dotnet/

The plugin you will want to use is ..
http://www.denisbauer.com/NETTools/F...assembler.aspx

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:EC**********************************@microsof t.com...
Hello Greg,

The old programmer left and he deleted the source code and left the DLLs.
Getting the source code, unfortunately is NOT an option.

What is "reflector"? Where can I get more information on that option?

Thank YOU, Karina

"Greg Young" wrote:
>Generally one builds a .dll from code (it is also quite common to only
deploy a .dll for varying reasons)... do you not have the source?

You could do something along the lines of using reflector to reverse
engineer the dll (there is a plugin the generate files) but you would be
missing alot of important information such as comments etc.

The best option would be to get the source code.

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:6A**********************************@microso ft.com...
Hello:

I am taking over someone else's code and my users are experiencing tons
of
problems but when I try to go into the source code to edit and try to
fix
these problems, I realize that all the old programmer's code is in DLLs
so
I
cannot access the source from anywhere. It's really becoming a
problem.
So..my question is twofold, is there a way to extract the code from the
DLL
(probably not), if not, what are some other options I have????

Visual Studio 2005
Asp.net 2.0
C#

Thank you, Karina



Aug 1 '06 #4
Thank you Greg. I will try this tomorrow and let you know the results.

Thakns again, Karina

"Greg Young" wrote:
Before working on anything I would get the company to put in some sort of
process to keep this from happenning.

reflector http://www.aisto.com/roeder/dotnet/

The plugin you will want to use is ..
http://www.denisbauer.com/NETTools/F...assembler.aspx

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:EC**********************************@microsof t.com...
Hello Greg,

The old programmer left and he deleted the source code and left the DLLs.
Getting the source code, unfortunately is NOT an option.

What is "reflector"? Where can I get more information on that option?

Thank YOU, Karina

"Greg Young" wrote:
Generally one builds a .dll from code (it is also quite common to only
deploy a .dll for varying reasons)... do you not have the source?

You could do something along the lines of using reflector to reverse
engineer the dll (there is a plugin the generate files) but you would be
missing alot of important information such as comments etc.

The best option would be to get the source code.

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:6A**********************************@microsof t.com...
Hello:

I am taking over someone else's code and my users are experiencing tons
of
problems but when I try to go into the source code to edit and try to
fix
these problems, I realize that all the old programmer's code is in DLLs
so
I
cannot access the source from anywhere. It's really becoming a
problem.
So..my question is twofold, is there a way to extract the code from the
DLL
(probably not), if not, what are some other options I have????

Visual Studio 2005
Asp.net 2.0
C#

Thank you, Karina


Aug 1 '06 #5
Greg,

Thank you for the help. I downloaded the DLL and the reflector program. I
am not sure what to do with the DLL where do I put it? Sorry I am quite new
to Asp.net and C#.
Thank YOU,
Karina

"Greg Young" wrote:
Before working on anything I would get the company to put in some sort of
process to keep this from happenning.

reflector http://www.aisto.com/roeder/dotnet/

The plugin you will want to use is ..
http://www.denisbauer.com/NETTools/F...assembler.aspx

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:EC**********************************@microsof t.com...
Hello Greg,

The old programmer left and he deleted the source code and left the DLLs.
Getting the source code, unfortunately is NOT an option.

What is "reflector"? Where can I get more information on that option?

Thank YOU, Karina

"Greg Young" wrote:
Generally one builds a .dll from code (it is also quite common to only
deploy a .dll for varying reasons)... do you not have the source?

You could do something along the lines of using reflector to reverse
engineer the dll (there is a plugin the generate files) but you would be
missing alot of important information such as comments etc.

The best option would be to get the source code.

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:6A**********************************@microsof t.com...
Hello:

I am taking over someone else's code and my users are experiencing tons
of
problems but when I try to go into the source code to edit and try to
fix
these problems, I realize that all the old programmer's code is in DLLs
so
I
cannot access the source from anywhere. It's really becoming a
problem.
So..my question is twofold, is there a way to extract the code from the
DLL
(probably not), if not, what are some other options I have????

Visual Studio 2005
Asp.net 2.0
C#

Thank you, Karina


Aug 2 '06 #6
That program is a decompiler ... The plugin allows it to create file
representing your .dll.

First run reflector ... then go to tools->add ins .. click add and browse to
the other .dll.

After doing this you will have a new item in the tools menu (File
Disaassembler). You can use this to disassemble the .dll to a set of files.

Cheers,

Greg

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:67**********************************@microsof t.com...
Greg,

Thank you for the help. I downloaded the DLL and the reflector program.
I
am not sure what to do with the DLL where do I put it? Sorry I am quite
new
to Asp.net and C#.
Thank YOU,
Karina

"Greg Young" wrote:
>Before working on anything I would get the company to put in some sort of
process to keep this from happenning.

reflector http://www.aisto.com/roeder/dotnet/

The plugin you will want to use is ..
http://www.denisbauer.com/NETTools/F...assembler.aspx

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:EC**********************************@microso ft.com...
Hello Greg,

The old programmer left and he deleted the source code and left the
DLLs.
Getting the source code, unfortunately is NOT an option.

What is "reflector"? Where can I get more information on that option?

Thank YOU, Karina

"Greg Young" wrote:

Generally one builds a .dll from code (it is also quite common to only
deploy a .dll for varying reasons)... do you not have the source?

You could do something along the lines of using reflector to reverse
engineer the dll (there is a plugin the generate files) but you would
be
missing alot of important information such as comments etc.

The best option would be to get the source code.

Cheers,

Greg Young
MVP - C#
http://codebetter.com/blogs/gregyoung

"Karina" <Ka****@discussions.microsoft.comwrote in message
news:6A**********************************@microso ft.com...
Hello:

I am taking over someone else's code and my users are experiencing
tons
of
problems but when I try to go into the source code to edit and try
to
fix
these problems, I realize that all the old programmer's code is in
DLLs
so
I
cannot access the source from anywhere. It's really becoming a
problem.
So..my question is twofold, is there a way to extract the code from
the
DLL
(probably not), if not, what are some other options I have????

Visual Studio 2005
Asp.net 2.0
C#

Thank you, Karina



Aug 2 '06 #7
Run reflector; View -Add-Ins... -Add...

Drag you web-site dll into reflector; select it;

Tools -File Disassembler

Good luck (and note: don't expect any comments etc... and pray it isn't
highly obfuscated)

Marc
Aug 2 '06 #8
Thank you all! That worked great, I was able to see the source code of
genLog.cs, I changed what was wrong (a static IP address, we moved servers
and it was hard coded in the dll file). Now I must re-DLL the file. I tried
using csc.exe but it tried to make an EXE and not a DLL plus it gave an error
about missing a main in the .cs file.

How do I get it back to a DLL. When I un-DLLed the file, there were 3 files
in total, a CS file, a proj file and a assemblyInfo.cs file. There is
another small issue. The project was written in asp1.1 so when I try to open
it in visual studio 2005, it asks to convert, the site is in 1.1 so I cannot
convert as it might break something else.

I talked to my manager about getting some kind of procedure so that this
does not happen again.

Thank you again for all the help, I am still learning.
Karina
"Marc Gravell" wrote:
Run reflector; View -Add-Ins... -Add...

Drag you web-site dll into reflector; select it;

Tools -File Disassembler

Good luck (and note: don't expect any comments etc... and pray it isn't
highly obfuscated)

Marc
Aug 2 '06 #9
To get it back you would have to put the code into a project and compile it.
Since it is 1.x you would need to do this in 1.x. You can also build from
the command line (csc or nant etc).

Cheers,

Greg
"Karina" <Ka****@discussions.microsoft.comwrote in message
news:14**********************************@microsof t.com...
Thank you all! That worked great, I was able to see the source code of
genLog.cs, I changed what was wrong (a static IP address, we moved servers
and it was hard coded in the dll file). Now I must re-DLL the file. I
tried
using csc.exe but it tried to make an EXE and not a DLL plus it gave an
error
about missing a main in the .cs file.

How do I get it back to a DLL. When I un-DLLed the file, there were 3
files
in total, a CS file, a proj file and a assemblyInfo.cs file. There is
another small issue. The project was written in asp1.1 so when I try to
open
it in visual studio 2005, it asks to convert, the site is in 1.1 so I
cannot
convert as it might break something else.

I talked to my manager about getting some kind of procedure so that this
does not happen again.

Thank you again for all the help, I am still learning.
Karina
"Marc Gravell" wrote:
>Run reflector; View -Add-Ins... -Add...

Drag you web-site dll into reflector; select it;

Tools -File Disassembler

Good luck (and note: don't expect any comments etc... and pray it isn't
highly obfuscated)

Marc

Aug 2 '06 #10
Greg,

I want to use the command-line compiler so I did this:

C:\>cd c:\WINDOWS\Microsoft.NET\framework\v1.1.4322

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>csc
c:\empAdmin\bin\genLog.aspx_Sou
rce\genLog.cs

and recieved this error:

error CS5001: Program
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\genL og.exe'
does not have an entry point defined

I am using the 1.1 compiler instead of the 2.0 but when I use the 2.0 i
basically get the same error.

Thank you for any help you can provide, Karina


"Greg Young" wrote:
To get it back you would have to put the code into a project and compile it.
Since it is 1.x you would need to do this in 1.x. You can also build from
the command line (csc or nant etc).

Cheers,

Greg
"Karina" <Ka****@discussions.microsoft.comwrote in message
news:14**********************************@microsof t.com...
Thank you all! That worked great, I was able to see the source code of
genLog.cs, I changed what was wrong (a static IP address, we moved servers
and it was hard coded in the dll file). Now I must re-DLL the file. I
tried
using csc.exe but it tried to make an EXE and not a DLL plus it gave an
error
about missing a main in the .cs file.

How do I get it back to a DLL. When I un-DLLed the file, there were 3
files
in total, a CS file, a proj file and a assemblyInfo.cs file. There is
another small issue. The project was written in asp1.1 so when I try to
open
it in visual studio 2005, it asks to convert, the site is in 1.1 so I
cannot
convert as it might break something else.

I talked to my manager about getting some kind of procedure so that this
does not happen again.

Thank you again for all the help, I am still learning.
Karina
"Marc Gravell" wrote:
Run reflector; View -Add-Ins... -Add...

Drag you web-site dll into reflector; select it;

Tools -File Disassembler

Good luck (and note: don't expect any comments etc... and pray it isn't
highly obfuscated)

Marc


Aug 2 '06 #11
Add /target:library to csc ... by default it will try to compile as a
windows .exe which requires a Main() entry point.

Cheers,

Greg Young
"Karina" <Ka****@discussions.microsoft.comwrote in message
news:0A**********************************@microsof t.com...
Greg,

I want to use the command-line compiler so I did this:

C:\>cd c:\WINDOWS\Microsoft.NET\framework\v1.1.4322

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>csc
c:\empAdmin\bin\genLog.aspx_Sou
rce\genLog.cs

and recieved this error:

error CS5001: Program
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\genL og.exe'
does not have an entry point defined

I am using the 1.1 compiler instead of the 2.0 but when I use the 2.0 i
basically get the same error.

Thank you for any help you can provide, Karina


"Greg Young" wrote:
>To get it back you would have to put the code into a project and compile
it.
Since it is 1.x you would need to do this in 1.x. You can also build from
the command line (csc or nant etc).

Cheers,

Greg
"Karina" <Ka****@discussions.microsoft.comwrote in message
news:14**********************************@microso ft.com...
Thank you all! That worked great, I was able to see the source code of
genLog.cs, I changed what was wrong (a static IP address, we moved
servers
and it was hard coded in the dll file). Now I must re-DLL the file. I
tried
using csc.exe but it tried to make an EXE and not a DLL plus it gave an
error
about missing a main in the .cs file.

How do I get it back to a DLL. When I un-DLLed the file, there were 3
files
in total, a CS file, a proj file and a assemblyInfo.cs file. There is
another small issue. The project was written in asp1.1 so when I try
to
open
it in visual studio 2005, it asks to convert, the site is in 1.1 so I
cannot
convert as it might break something else.

I talked to my manager about getting some kind of procedure so that
this
does not happen again.

Thank you again for all the help, I am still learning.
Karina
"Marc Gravell" wrote:

Run reflector; View -Add-Ins... -Add...

Drag you web-site dll into reflector; select it;

Tools -File Disassembler

Good luck (and note: don't expect any comments etc... and pray it
isn't
highly obfuscated)

Marc



Aug 2 '06 #12
Greg,

Thanks again, that worked like a charm but I got a tough one for you but I
have faith you'll know a solution.

Again, I am not very familiar with the entire c#/class/DLL structure but
here is what the broken site has:

a bin folder with "genLog.aspx.DLL" in it

an employment folder that has the html for the application that's breaking

and a "genLog" folder that contains the genLog.aspx file (that uses that
bin/genLog.aspx.DLL file).

When I un-DLLed the DLL file, it gave me 3 files including a genLog.cs so
when I re-DLL-ed it, it named it genLog.dll instead of
genLog.aspx.dll........So when I run the application in the web browser I get
this error:

Server Error in '/' Application.
Configuration Error
Description: An error occurred during the processing of a configuration file
required to service this request. Please review the specific error details
below and modify your configuration file appropriately.

Parser Error Message: The located assembly's manifest definition with name
'genLog.aspx' does not match the assembly reference.

Source Error:
Line 256: <add assembly="System.EnterpriseServices,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 257: <add assembly="System.Web.Mobile,
Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
Line 258: <add assembly="*"/>
Line 259: </assemblies>
Line 260:

Source File:
c:\windows\microsoft.net\framework\v1.1.4322\Confi g\machine.config Line:
258

Assembly Load Trace: The following information can be helpful to determine
why the assembly 'genLog.aspx' could not be loaded.

=== Pre-bind state information ===
LOG: DisplayName = genLog.aspx
(Partial)
LOG: Appbase = file:///E:/Inetpub/oprs/web
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===

LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: genLog.aspx
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/945bae20/d6dbc064/genLog.aspx.DLL.
LOG: Attempting download of new URL
file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/root/945bae20/d6dbc064/genLog.aspx/genLog.aspx.DLL.
LOG: Attempting download of new URL
file:///E:/Inetpub/oprs/web/bin/genLog.aspx.DLL.
WRN: Comparing the assembly name resulted in the mismatch: NAME

It says something like NAME mismatch....i'm assuming it's the name of the
DLL. I changed it manually (just 'rename') but of course that didn't work.

Any sugestions? Solutions? Thank you again

Karina


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET
Version:1.1.4322.2300

"Greg Young" wrote:
Add /target:library to csc ... by default it will try to compile as a
windows .exe which requires a Main() entry point.

Cheers,

Greg Young
"Karina" <Ka****@discussions.microsoft.comwrote in message
news:0A**********************************@microsof t.com...
Greg,

I want to use the command-line compiler so I did this:

C:\>cd c:\WINDOWS\Microsoft.NET\framework\v1.1.4322

C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322>csc
c:\empAdmin\bin\genLog.aspx_Sou
rce\genLog.cs

and recieved this error:

error CS5001: Program
'c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\genL og.exe'
does not have an entry point defined

I am using the 1.1 compiler instead of the 2.0 but when I use the 2.0 i
basically get the same error.

Thank you for any help you can provide, Karina


"Greg Young" wrote:
To get it back you would have to put the code into a project and compile
it.
Since it is 1.x you would need to do this in 1.x. You can also build from
the command line (csc or nant etc).

Cheers,

Greg
"Karina" <Ka****@discussions.microsoft.comwrote in message
news:14**********************************@microsof t.com...
Thank you all! That worked great, I was able to see the source code of
genLog.cs, I changed what was wrong (a static IP address, we moved
servers
and it was hard coded in the dll file). Now I must re-DLL the file. I
tried
using csc.exe but it tried to make an EXE and not a DLL plus it gave an
error
about missing a main in the .cs file.

How do I get it back to a DLL. When I un-DLLed the file, there were 3
files
in total, a CS file, a proj file and a assemblyInfo.cs file. There is
another small issue. The project was written in asp1.1 so when I try
to
open
it in visual studio 2005, it asks to convert, the site is in 1.1 so I
cannot
convert as it might break something else.

I talked to my manager about getting some kind of procedure so that
this
does not happen again.

Thank you again for all the help, I am still learning.
Karina
"Marc Gravell" wrote:

Run reflector; View -Add-Ins... -Add...

Drag you web-site dll into reflector; select it;

Tools -File Disassembler

Good luck (and note: don't expect any comments etc... and pray it
isn't
highly obfuscated)

Marc



Aug 2 '06 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Bozo Schmozo | last post by:
Greetings! I've searched groups.google.com already to see if I can determine if using PHP/MySQL (if needed) for a web site I wish to develop. As the subject indicated, it will be a content...
7
by: Colman | last post by:
I couldn't think of a concise way to describe this in the Subject! Anyways... I am creating a PHP/MySQL driven website. I would like to provide other users a sort of customized front-end PHP...
7
by: wrytat | last post by:
Hi! I'm very new to ASP.NET and really need some good advice from experts here. I'm creating a web application for my company now. This application has 2 parts. 1 part for the customers to...
11
by: TomCat | last post by:
Hello, can anyone send me a link or even some sample of script that counts visits to a website ? Thanks, TomCat
4
by: who be dat? | last post by:
I feel stupid for asking this but I can't figure this out. I've got some text files I want my website to read. The text files are located in a subdirectory of my application. Physically, the...
6
by: ivanL | last post by:
I am currently using the Default Website but want to add the following: 1. A local development WEBSITE (port 81) 2. A new WEBSITE (points to another host header www.newebsite.com) VS.NET works...
10
by: JP Bless | last post by:
Hi all, I have a database Access/MSDE and would like to have a website so users can search the data and update some records/fields through the website.... And I have high speed internet...
1
by: qwende | last post by:
I just tried to manage individual pages using the website administration tool, but instead of seeing the individual pages I only see individual folders when looking at my website via the tool. How...
2
by: Rob Dob | last post by:
Hi, How do I go about installing another Web Site Project inside my existing VS2005 website project. I currently have both a forum WSP and my main WSP application within the same solution. Both...
7
by: clintonG | last post by:
I'm puzzled and don't think this is possible but if an application that is running on websiteA generates a file can FTP be used from websiteA to transfer that file to websiteB which would be...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.